About 78,400 results
Open links in new tab
  1. What are the differences between C#.net and Visual Basic.net?

    Feb 7, 2009 · Visual C# .NET may have a few more "power" features such as handling unmanaged code, and Visual Basic .NET may be skewed a little toward ease of use by …

  2. Wait .5 seconds before continuing code VB.net - Stack Overflow

    I'm using on a VB.NET winform application and this does not cause my program to crash. I am waiting for a SQL update to finish but like @Neolisk mentions, event handling is probably the …

  3. vb.net - List (of String) or Array or ArrayList - Stack Overflow

    Neither collection will let you add items that way. You can make an extension to make for examle List(Of String) have an Add method that can do that: Imports …

  4. How do I convert from a string to an integer in Visual Basic?

    Oct 10, 2011 · How do I convert from a string to an integer? Here's what I tried: Price = CInt(Int(txtPrice.Text)) I took out the Int and I still got an exception.

  5. vb.net - How to exit an application properly - Stack Overflow

    Nov 25, 2010 · In a console application, just return from the main program, in a UI-Application Close () all active Forms. Memory from managed objects will be handled by the .NET …

  6. vb.net - Deserializing JSON in Visual basic - Stack Overflow

    If you are importing Newtonsoft.Json, why are you using the built-in .NET System.Web.Script.Serialization.JavaScriptSerializer class?

  7. string - New line character in VB.Net? - Stack Overflow

    Feb 5, 2009 · 1 vbCrLf is a relic of Visual Basic 6 days. Though it works exactly the same as Environment.NewLine, it has only been kept to make the .NET api feel more familiar to VB6 …

  8. multiline comment in vb.net - Stack Overflow

    Feb 22, 2011 · Do we have a multi line comment in VB.net. I know in Java we have /* */ but that doesn't seem to work here.

  9. VB.NET on Linux - Stack Overflow

    May 20, 2011 · You can compile and run VB.NET code and applications (part of .NET framework, consider the successor of Visual Basic, with several language differences from Visual Basic 6.0).

  10. Display date in dd/mm/yyyy format in vb.net - Stack Overflow

    I want to display date in 09/07/2013 format instead of 09-jul-13. Dim dt As Date = Date.Today MsgBox(dt)