Click here to Skip to main content
15,914,111 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to receive WindowMessages without visible Window? Pin
Dave Kreskowiak23-Nov-07 4:19
mveDave Kreskowiak23-Nov-07 4:19 
Questionon error goto handling - is this possible (VBS) Pin
stephan_00722-Nov-07 5:37
stephan_00722-Nov-07 5:37 
AnswerRe: on error goto handling - is this possible (VBS) Pin
Michael Sync22-Nov-07 16:01
Michael Sync22-Nov-07 16:01 
GeneralRe: on error goto handling - is this possible (VBS) Pin
ChandraRam22-Nov-07 23:40
ChandraRam22-Nov-07 23:40 
GeneralRe: on error goto handling - is this possible (VBS) Pin
Michael Sync23-Nov-07 0:33
Michael Sync23-Nov-07 0:33 
GeneralRe: on error goto handling - is this possible (VBS) Pin
ChandraRam23-Nov-07 0:40
ChandraRam23-Nov-07 0:40 
GeneralRe: on error goto handling - is this possible (VBS) Pin
Michael Sync23-Nov-07 1:38
Michael Sync23-Nov-07 1:38 
GeneralRe: on error goto handling - is this possible (VBS) Pin
stephan_00725-Nov-07 23:02
stephan_00725-Nov-07 23:02 
yup, thats exactly what i want to do. if an error occurs in one of the operations, then its of no sense to do all the others or even try them because they might fail as well.
lets say its a database operation, which copies from different tables to a new one which collects all together. so either everything is successful then we do have a comit and all data is stored in the new table and could be deleted in the old ones, or it is not, then we do have a "rollback" and no deleting. the comit and delete operation is done in the last few operations so thats why the operations have to be skipped. to summarize its something like

on error goto on_error
copy operation db1 to dbfinal
copy operation db2 to dbfinal
.....
copy operation dbn to dbfinal
try commit and delete db entries in db1 to dbn
on_error:
continue with the next entry

but as i said in my first posting the compiler throws an error message at the "goto label" statement.

so you think it should have worked this way? but why does the compiler throw an error message "unknown symbol at line xx position yy". this position is where the labelname starts.

does anyone of you have an idea? or has anyone of you tried anything similar? because it still doesn't work here.

thanks.
stephan.
Questionset multiple checkboxes to true in datagridview Pin
eyes200722-Nov-07 5:25
eyes200722-Nov-07 5:25 
AnswerRe: set multiple checkboxes to true in datagridview Pin
Mycroft Holmes22-Nov-07 19:53
professionalMycroft Holmes22-Nov-07 19:53 
QuestionDisable or hide address bar [modified] Pin
Sinchan Nikam22-Nov-07 3:50
Sinchan Nikam22-Nov-07 3:50 
AnswerRe: Disable or hide address bar Pin
Michael Sync22-Nov-07 15:58
Michael Sync22-Nov-07 15:58 
QuestionCharts in Visual Basic 6.0 Pin
leaveu22-Nov-07 3:04
leaveu22-Nov-07 3:04 
AnswerMSGraph Pin
CPallini22-Nov-07 3:21
mveCPallini22-Nov-07 3:21 
AnswerRe: Charts in Visual Basic 6.0 Pin
leaveu27-Nov-07 3:19
leaveu27-Nov-07 3:19 
QuestionGetting List of IP'Address Pin
ShuklaGirish22-Nov-07 1:42
ShuklaGirish22-Nov-07 1:42 
AnswerRe: Getting List of IP'Address Pin
Dave Kreskowiak23-Nov-07 4:14
mveDave Kreskowiak23-Nov-07 4:14 
GeneralRe: Getting List of IP'Address Pin
ShuklaGirish25-Nov-07 18:49
ShuklaGirish25-Nov-07 18:49 
QuestionLogin Control Pin
Rock Star.22-Nov-07 1:35
Rock Star.22-Nov-07 1:35 
AnswerCross post. Please ignore this thread. Pin
Pete O'Hanlon22-Nov-07 2:33
mvePete O'Hanlon22-Nov-07 2:33 
QuestionVB.Net 1.1 Setup and Deployment Pin
Salman Sheikh22-Nov-07 0:29
Salman Sheikh22-Nov-07 0:29 
AnswerRe: VB.Net 1.1 Setup and Deployment Pin
Dave Kreskowiak23-Nov-07 4:12
mveDave Kreskowiak23-Nov-07 4:12 
QuestionQuestions related to WebBrowser control Pin
Abhishek Joshi21-Nov-07 20:32
Abhishek Joshi21-Nov-07 20:32 
QuestionHow to convert into date Pin
VB 8.021-Nov-07 17:53
VB 8.021-Nov-07 17:53 
AnswerRe: How to convert into date Pin
Christian Graus21-Nov-07 18:49
protectorChristian Graus21-Nov-07 18:49 

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.