2016-08-18 8 views
0

私はVBAをコード化して、HTML形式の自動メールを作成しています。私はhtmlコーディングで渡す必要があるvbaの変数値をいくつか持っています。かいつまん:.html本文のVBA変数を渡す

FullName = strfullname ' value for strfullname will be passed from another function 

With objmail 
    .bodyformat = olformathtml 
    .htmlbody = "This is my fullname: (display the value of fullname) " 
end with 

答えて

0
FullName = strfullname ' value for strfullname will be passed from another function 

With objmail 
    .bodyformat = olformathtml 
    .htmlbody = "This is my fullname: " & FullName 
end with 
+0

はありがとうございました!それは私が望むすべてです。 – user3323922

関連する問題