Click here to Skip to main content
15,916,378 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionVB 6.0 Pin
D.N.31-Jan-06 1:21
D.N.31-Jan-06 1:21 
AnswerRe: VB 6.0 Pin
Rana Muhammad Javed Khan31-Jan-06 1:54
Rana Muhammad Javed Khan31-Jan-06 1:54 
QuestionChanging DLL source file paths!!! Pin
Devraj Raut31-Jan-06 0:35
Devraj Raut31-Jan-06 0:35 
AnswerRe: Changing DLL source file paths!!! Pin
Dave Kreskowiak31-Jan-06 4:37
mveDave Kreskowiak31-Jan-06 4:37 
GeneralRe: Changing DLL source file paths!!! Pin
Devraj Raut31-Jan-06 4:40
Devraj Raut31-Jan-06 4:40 
GeneralRe: Changing DLL source file paths!!! Pin
Dave Kreskowiak31-Jan-06 6:48
mveDave Kreskowiak31-Jan-06 6:48 
QuestionError handling query Pin
directred31-Jan-06 0:26
directred31-Jan-06 0:26 
AnswerRe: Error handling query Pin
Dave Kreskowiak31-Jan-06 4:32
mveDave Kreskowiak31-Jan-06 4:32 
This doesn't work because you trying to combine two different (and totally incompatible) error handling technologies. The ON ERROR GOTO, Err, and Resume... garbage is old stuff from VB6 and beyond. You can't combine it with the new Try/Catch blocks and expect it to work. I highly suggest abandoning the old stuff entirely and just use Try/Catch blocks.
Try
    ' Code here...
Catch ex As FileNotFoundException
    ' Code to handle File Not Found errors...
Finally
    ' Code to clean up the Try block code.
    ' This section runs no matter what happens
    ' in the Try and Catch blocks
End Try



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

QuestionRemoteData en VB6.0 Pin
hhafid30-Jan-06 21:17
hhafid30-Jan-06 21:17 
QuestionHow to image from image box Pin
Murtuza Husain Miyan Patel30-Jan-06 20:59
professionalMurtuza Husain Miyan Patel30-Jan-06 20:59 
AnswerRe: How to image from image box Pin
Joshua Quick30-Jan-06 21:07
Joshua Quick30-Jan-06 21:07 
AnswerRe: How to image from image box Pin
jasonpb31-Jan-06 15:43
jasonpb31-Jan-06 15:43 
Question[VB.NET] XML serialization of arraylist Pin
fuel2run30-Jan-06 20:26
fuel2run30-Jan-06 20:26 
Questionhow to create menu icons in VB.6 Pin
Anne-IT30-Jan-06 20:18
Anne-IT30-Jan-06 20:18 
AnswerRe: how to create menu icons in VB.6 Pin
Joshua Quick30-Jan-06 21:00
Joshua Quick30-Jan-06 21:00 
QuestionHow can i create this system :( Pin
tillandran30-Jan-06 19:05
tillandran30-Jan-06 19:05 
AnswerRe: How can i create this system :( Pin
Christian Graus30-Jan-06 19:43
protectorChristian Graus30-Jan-06 19:43 
GeneralRe: How can i create this system :( Pin
Colin Angus Mackay31-Jan-06 0:15
Colin Angus Mackay31-Jan-06 0:15 
GeneralRe: How can i create this system :( Pin
Dave Kreskowiak31-Jan-06 4:13
mveDave Kreskowiak31-Jan-06 4:13 
AnswerRe: How can i create this system :( Pin
Dave Kreskowiak31-Jan-06 4:23
mveDave Kreskowiak31-Jan-06 4:23 
QuestionHow to Check Whether Client System has internet Connection or not Pin
LV Prasad Y30-Jan-06 17:01
LV Prasad Y30-Jan-06 17:01 
AnswerRe: How to Check Whether Client System has internet Connection or not Pin
Owner drawn30-Jan-06 18:16
Owner drawn30-Jan-06 18:16 
GeneralRe: How to Check Whether Client System has internet Connection or not Pin
LV Prasad Y30-Jan-06 23:32
LV Prasad Y30-Jan-06 23:32 
GeneralRe: How to Check Whether Client System has internet Connection or not Pin
Owner drawn30-Jan-06 23:34
Owner drawn30-Jan-06 23:34 
Questioniexplore.exe - Application Error Pin
Julianne_juju30-Jan-06 15:39
Julianne_juju30-Jan-06 15:39 

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.