About 847,000 results
Open links in new tab
  1. VB.NET - How to move to next item a For Each Loop?

    VB.NET - How to move to next item a For Each Loop? Asked 16 years, 7 months ago Modified 4 years, 10 months ago Viewed 180k times

  2. Random integer in VB.NET - Stack Overflow

    Public Function GetRandom(ByVal Min As Integer, ByVal Max As Integer) As Integer Dim Generator As System.Random = New System.Random() Return Generator.Next(Min, Max) End Function The …

  3. vb.net - How can I properly use the for...next statement ... - Stack ...

    Apr 6, 2022 · 0 I'm new to vb.net and English is not my first language, Please note this :) I've try nested for...next loop but there's a problem which that value does not increase : ( Please help me!

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

    Feb 5, 2009 · I am trying to print a message on a web page in vb.net. I am trying to get the messages in new lines. I tried using the "\r\n" and the new line character. But this is getting printed in the page in...

  5. How to use \\n new line in VB msgbox() - Stack Overflow

    Mar 1, 2011 · Yes, that's a very good reason to use it. Considering that alternative implementations of the CLR (like Mono) support VB.NET, it's a good idea to write code with an eye towards platform …

  6. for loop - Breaking/exit nested for in vb.net - Stack Overflow

    Mar 15, 2011 · How do I get out of nested for or loop in vb.net? I tried using exit for but it jumped or breaked only one for loop only. How can I make it for the following: for each item in itemList for ...

  7. Single statement across multiple lines in VB.NET without the …

    Jan 19, 2016 · 6 Starting with VB.NET 10, implicit line continuation is supported for a number of syntax elements (see Statements in Visual Basic: Continuing a Statement over Multiple Lines). The …

  8. VB.net Round off Decimal number to the nearest integer

    Feb 18, 2022 · I'm new to VB.net coding i would like to know how to round of a decimal number to the nearest integer Eg. X= (5-2/2) = 1.5 but I need only as 1. Thank you.

  9. c# - How to move focus on next cell in a datagridview on Enter key ...

    Mar 12, 2012 · Friends, I'm working on windows application using C#. I'm using a datagridview to display records. The functionality I need is when I press "Enter" key the focus should go to the next cell …

  10. vb.net - Printing to Multiple Pages - Stack Overflow

    The code below that can nicely print image and text. The problem now is, how can I automatically move printing to next page when a page is filled. Will be nice to add a page number, too: Public ...