MessageBox.Show("Hello " & "World");
should be
MessageBox.Show("Hello " + "World");
Try stringbuilder also
Visual Studio .NET Tips and Tricks, VB.NET Code Samples, C# Code Snippets, ASP.NET Code Samples, .NET Tips and Tricks, C# Tips & Tricks, Visual Studio 2010, .NET Framework Code Samples, VB.NET Tips & Tricks
MessageBox.Show("Hello " & "World");
should be
MessageBox.Show("Hello " + "World");
Try stringbuilder also
Thanks
ReplyDeleteI was having trouble with a listbox, I was trying to add diferent variables to one line and this was the solution =)..