Click here to Skip to main content
16,005,141 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionBoolean in Subroutines. Pin
Veldrain13-Mar-08 0:48
Veldrain13-Mar-08 0:48 
GeneralRe: Boolean in Subroutines. Pin
ESTAN13-Mar-08 2:19
ESTAN13-Mar-08 2:19 
QuestionListBox DrawItem Horizontal scrollbar Pin
penguin500013-Mar-08 0:10
penguin500013-Mar-08 0:10 
GeneralRe: ListBox DrawItem Horizontal scrollbar Pin
Paul Conrad21-Mar-08 9:38
professionalPaul Conrad21-Mar-08 9:38 
GeneralDocking / drag&drop [modified] Pin
Yustme12-Mar-08 23:37
Yustme12-Mar-08 23:37 
QuestionHow do i break nested loops in VB.NET Pin
www.Developerof.NET12-Mar-08 23:05
www.Developerof.NET12-Mar-08 23:05 
AnswerPls Ignore Pin
www.Developerof.NET12-Mar-08 23:30
www.Developerof.NET12-Mar-08 23:30 
AnswerRe: How do i break nested loops in VB.NET Pin
AshokPatra12-Mar-08 23:30
AshokPatra12-Mar-08 23:30 
Dear,

I am trying to give you some sample. If you take one FOR and While loop it works fine.
You can test this sample.

Dim a(,) As Integer = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}
Dim s As String = ""

For i As Integer = 0 To a.GetUpperBound(0)
Dim j As Integer = 0
While j <= a.GetUpperBound(1)
If a(i, j) = 2 Then
Exit While
End If
s &= a(i, j) & " "
j += 1
End While
s &= vbCrLf
Next
MsgBox(s)

If it solves the problem, then confirm. We can't do anything if we use same types of loops.

Thanks and Regards,
Ashok
GeneralRe: How do i break nested loops in VB.NET Pin
ChandraRam13-Mar-08 0:34
ChandraRam13-Mar-08 0:34 
GeneralRe: How do i break nested loops in VB.NET Pin
AshokPatra13-Mar-08 0:40
AshokPatra13-Mar-08 0:40 
GeneralRe: How do i break nested loops in VB.NET Pin
ChandraRam13-Mar-08 0:44
ChandraRam13-Mar-08 0:44 
GeneralRe: How do i break nested loops in VB.NET Pin
AshokPatra13-Mar-08 0:53
AshokPatra13-Mar-08 0:53 
QuestionHow to Package the DLLs Pin
AshokPatra12-Mar-08 22:39
AshokPatra12-Mar-08 22:39 
GeneralRe: How to Package the DLLs Pin
Christian Graus12-Mar-08 22:42
protectorChristian Graus12-Mar-08 22:42 
GeneralRe: How to Package the DLLs Pin
AshokPatra12-Mar-08 23:09
AshokPatra12-Mar-08 23:09 
GeneralRe: How to Package the DLLs Pin
Christian Graus13-Mar-08 0:13
protectorChristian Graus13-Mar-08 0:13 
GeneralRe: How to Package the DLLs Pin
AshokPatra13-Mar-08 2:21
AshokPatra13-Mar-08 2:21 
GeneralRe: How to Package the DLLs Pin
herag13-Mar-08 15:37
herag13-Mar-08 15:37 
GeneralRe: How to Package the DLLs Pin
AshokPatra13-Mar-08 22:21
AshokPatra13-Mar-08 22:21 
GeneralRe: How to Package the DLLs Pin
AshokPatra14-Mar-08 4:56
AshokPatra14-Mar-08 4:56 
GeneralUse of Dll Pin
helelark12312-Mar-08 22:29
helelark12312-Mar-08 22:29 
GeneralRe: Use of Dll Pin
Christian Graus12-Mar-08 22:41
protectorChristian Graus12-Mar-08 22:41 
GeneralRe: Use of Dll Pin
helelark12312-Mar-08 23:23
helelark12312-Mar-08 23:23 
GeneralRe: Use of Dll Pin
Christian Graus13-Mar-08 0:25
protectorChristian Graus13-Mar-08 0:25 
GeneralRe: Use of Dll Pin
helelark12313-Mar-08 1:14
helelark12313-Mar-08 1:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.