1
vote
4
votes
3
votes
Which language should I pick up: VB.Net or C#
If possible, both :)
If just one, then I'd go with C# myself. If you use the feature that Visual Studio 2008 added to be able to download the source for reference, you'll notice that it is …
2
votes
VB WebBrowser.DocumentText Isn’t Changing!
Try the following:
browser.Navigate("about:blank")
HtmlDocument doc = this.webBrowser1.Document
doc.Write(String.Empty)
browser.DocumentText = _emailHTML
I've foun …
1
vote
How to declare an array inline in VB.NET
Dim strings As String() = New String() {"abc", "def", "ghi"}
…
