Click here to Skip to main content
15,915,603 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: String obfuscation and function names Pin
Atara23-Aug-10 3:40
Atara23-Aug-10 3:40 
AnswerRe: String obfuscation and function names Pin
Former employee23-Aug-10 23:17
Former employee23-Aug-10 23:17 
GeneralRe: String obfuscation and function names Pin
Atara23-Aug-10 23:42
Atara23-Aug-10 23:42 
GeneralRe: String obfuscation and function names Pin
Mike Marynowski24-Aug-10 19:55
professionalMike Marynowski24-Aug-10 19:55 
GeneralRe: String obfuscation and function names Pin
Atara24-Aug-10 20:01
Atara24-Aug-10 20:01 
GeneralRe: String obfuscation and function names Pin
Mike Marynowski24-Aug-10 20:05
professionalMike Marynowski24-Aug-10 20:05 
AnswerRe: String obfuscation and function names Pin
LogicNP21-Sep-11 1:12
LogicNP21-Sep-11 1:12 
QuestionNullReferenceException on Me.Invoke Pin
Dominick Marciano22-Aug-10 14:09
professionalDominick Marciano22-Aug-10 14:09 
My program has a class to do some analysis that is run on a separate thread. When the work is done, it raises an event called AnalysisDone which the main form then handles. Below is my code to handle the event.

Private Sub AnalysisDone() Handles DustWipeAnalysis.AnalysisDone
       If Me.InvokeRequired Then
           Me.Invoke(New AnalysisDoneDelegate(AddressOf Me.AnalysisDone))
       Else
           GenerateSummarySheet()
       End If
   End Sub


Now this function was working, but all of a sudden it is throwing a NullReferenceException at the Me.Invoke line. I don't understand why it was working and then just stopped when nothing was changed with the function, or the function that raises the event in DustWipeAnalysis class. Almost forgot, the AnalysisDoneDelegate is defined at the top of the main form as Delegate Sub AnalysisDoneDelegate()
AnswerRe: NullReferenceException on Me.Invoke Pin
Dominick Marciano22-Aug-10 15:19
professionalDominick Marciano22-Aug-10 15:19 
QuestionConversion of BIFF7 to BIFF8 files Pin
Dominick Marciano22-Aug-10 10:58
professionalDominick Marciano22-Aug-10 10:58 
AnswerRe: Conversion of BIFF7 to BIFF8 files Pin
Luc Pattyn22-Aug-10 11:23
sitebuilderLuc Pattyn22-Aug-10 11:23 
GeneralRe: Conversion of BIFF7 to BIFF8 files Pin
Dominick Marciano22-Aug-10 12:31
professionalDominick Marciano22-Aug-10 12:31 
QuestionRe: Conversion of BIFF7 to BIFF8 files Pin
timslhsu14-Jan-11 20:43
timslhsu14-Jan-11 20:43 
QuestionHow do I get a custom context menu to show up??? Pin
thebiostyle22-Aug-10 9:26
thebiostyle22-Aug-10 9:26 
AnswerRe: How do I get a custom context menu to show up??? Pin
Luc Pattyn22-Aug-10 11:31
sitebuilderLuc Pattyn22-Aug-10 11:31 
AnswerRe: How do I get a custom context menu to show up??? Pin
Tom Foswick24-Aug-10 22:25
Tom Foswick24-Aug-10 22:25 
GeneralRe: How do I get a custom context menu to show up??? Pin
thebiostyle25-Aug-10 9:41
thebiostyle25-Aug-10 9:41 
GeneralRe: How do I get a custom context menu to show up??? [modified] Pin
Tom Foswick25-Aug-10 9:56
Tom Foswick25-Aug-10 9:56 
GeneralRe: How do I get a custom context menu to show up??? Pin
thebiostyle28-Aug-10 13:33
thebiostyle28-Aug-10 13:33 
GeneralRe: How do I get a custom context menu to show up??? Pin
Tom Foswick30-Aug-10 5:51
Tom Foswick30-Aug-10 5:51 
GeneralRe: How do I get a custom context menu to show up??? Pin
thebiostyle30-Aug-10 13:36
thebiostyle30-Aug-10 13:36 
GeneralRe: How do I get a custom context menu to show up??? Pin
Tom Foswick30-Aug-10 14:30
Tom Foswick30-Aug-10 14:30 
GeneralRe: How do I get a custom context menu to show up??? [modified] Pin
thebiostyle4-Sep-10 7:29
thebiostyle4-Sep-10 7:29 
GeneralRe: How do I get a custom context menu to show up??? Pin
Tom Foswick4-Sep-10 7:50
Tom Foswick4-Sep-10 7:50 
GeneralRe: How do I get a custom context menu to show up??? Pin
thebiostyle4-Sep-10 7:53
thebiostyle4-Sep-10 7:53 

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.