Click here to Skip to main content
15,896,453 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionImage not loading in Crystal Report Pin
Ovais Memon31-May-09 19:52
Ovais Memon31-May-09 19:52 
AnswerRe: Image not loading in Crystal Report Pin
Kschuler1-Jun-09 8:12
Kschuler1-Jun-09 8:12 
QuestionHow do I track in which line the error exactly occurs ? Pin
tiagu31-May-09 4:55
tiagu31-May-09 4:55 
AnswerRe: How do I track in which line the error exactly occurs ? Pin
Dave Kreskowiak31-May-09 5:45
mveDave Kreskowiak31-May-09 5:45 
GeneralRe: How do I track in which line the error exactly occurs ? Pin
tiagu31-May-09 21:28
tiagu31-May-09 21:28 
GeneralRe: How do I track in which line the error exactly occurs ? Pin
Dave Kreskowiak1-Jun-09 1:47
mveDave Kreskowiak1-Jun-09 1:47 
AnswerRe: How do I track in which line the error exactly occurs ? Pin
dan!sh 31-May-09 5:49
professional dan!sh 31-May-09 5:49 
AnswerRe: How do I track in which line the error exactly occurs ? Pin
Christian Graus31-May-09 12:27
protectorChristian Graus31-May-09 12:27 
If you don't want to step through the debugger, do something like this:

Dim sb as StringBuilder = new StringBuilder()

// first line of insert
sb.AppendLine("Inserted one")
// second insert
sb.AppendLine("Inserted two")

etc

Put this in a try/catch and put a breakpoint in the catch. Then, you can look at your string builder to see which line blew up. Then you can focus on that one line ( and repeat, I would not be surprised if you fix one line and then find another has the same issue, if the code does the same thing, you're likely to have repeated your bug more than once.

Christian Graus

Driven to the arms of OSX by Vista.

Please read this[^] if you don't like the answer I gave to your question.

QuestionHow do you populate an array with dataset values Pin
directred31-May-09 1:12
directred31-May-09 1:12 
AnswerRe: How do you populate an array with dataset values Pin
0x3c031-May-09 1:23
0x3c031-May-09 1:23 
AnswerRe: How do you populate an array with dataset values Pin
Johan Hakkesteegt31-May-09 19:56
Johan Hakkesteegt31-May-09 19:56 
QuestionHow to save and retrieve an image in Access using vb.net Pin
mirzamujib31-May-09 0:39
mirzamujib31-May-09 0:39 
AnswerRe: How to save and retrieve an image in Access using vb.net Pin
0x3c031-May-09 1:30
0x3c031-May-09 1:30 
AnswerRe: How to save and retrieve an image in Access using vb.net Pin
Dave Kreskowiak31-May-09 3:28
mveDave Kreskowiak31-May-09 3:28 
QuestionAbout Auto detecting immage face Pin
ashika198630-May-09 23:29
ashika198630-May-09 23:29 
AnswerRe: About Auto detecting immage face Pin
Dalek Dave31-May-09 1:52
professionalDalek Dave31-May-09 1:52 
GeneralRe: About Auto detecting immage face Pin
Dave Kreskowiak31-May-09 3:21
mveDave Kreskowiak31-May-09 3:21 
AnswerRe: About Auto detecting immage face Pin
Dave Kreskowiak31-May-09 3:25
mveDave Kreskowiak31-May-09 3:25 
GeneralRe: About Auto detecting immage face Pin
Dalek Dave31-May-09 4:09
professionalDalek Dave31-May-09 4:09 
GeneralRe: About Auto detecting immage face Pin
TheMrProgrammer31-May-09 20:56
TheMrProgrammer31-May-09 20:56 
GeneralRe: About Auto detecting immage face Pin
Dalek Dave31-May-09 21:31
professionalDalek Dave31-May-09 21:31 
GeneralRe: About Auto detecting immage face Pin
Christian Graus31-May-09 21:53
protectorChristian Graus31-May-09 21:53 
GeneralRe: About Auto detecting immage face Pin
Dave Kreskowiak1-Jun-09 2:08
mveDave Kreskowiak1-Jun-09 2:08 
AnswerRe: About Auto detecting immage face Pin
Christian Graus31-May-09 19:32
protectorChristian Graus31-May-09 19:32 
GeneralRe: About Auto detecting immage face Pin
Dalek Dave31-May-09 21:33
professionalDalek Dave31-May-09 21:33 

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.