String Variable in Visual Studio 2008 Expression Expected -
dim html string html = '<head> ' $_ '<title>send sms</title>' $_ '</head>'
i having error @ line 2 expression needed.
use double quotes enclose strings. use ampersands concatenation. so:
dim html string html = "<head> " & _ "<title>send sms</title>" & _ "</head>"
Comments
Post a Comment