Click here to Skip to main content
15,880,608 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: System.Diagnosis.process Pin
Sonia Gupta16-May-07 2:10
Sonia Gupta16-May-07 2:10 
AnswerRe: System.Diagnosis.process Pin
Dave Kreskowiak16-May-07 3:34
mveDave Kreskowiak16-May-07 3:34 
Questionsubclassing only in runmode Pin
lee2315-May-07 19:15
lee2315-May-07 19:15 
QuestionRe: subclassing only in runmode Pin
CPallini15-May-07 20:48
mveCPallini15-May-07 20:48 
AnswerRe: subclassing only in runmode Pin
lee2315-May-07 22:05
lee2315-May-07 22:05 
QuestionRe: subclassing only in runmode Pin
CPallini15-May-07 22:10
mveCPallini15-May-07 22:10 
GeneralRe: subclassing only in runmode Pin
Dave Kreskowiak16-May-07 3:32
mveDave Kreskowiak16-May-07 3:32 
AnswerRe: subclassing only in runmode Pin
Richard_Wolf16-May-07 5:43
Richard_Wolf16-May-07 5:43 
' code from Brad Buchanan
Public IsIDE As Boolean
Private Sub Form_Load()
IsIDE = False
'This line is only executed if
'running in the IDE and then
'returns True
Debug.Assert CheckIDE
'Use the IsIDE flag anywhere
If IsIDE Then
MsgBox ("Running under IDE")
Else
MsgBox ("Running as EXE")
End If
End Sub

Private Function CheckIDE() As Boolean
'This function will never be executed in an EXE
IsIDE = True 'set global flag
'Set CheckIDE or the Debug.Assert will Break
CheckIDE = True
End Function
GeneralRe: subclassing only in runmode Pin
lee2316-May-07 18:13
lee2316-May-07 18:13 
GeneralRe: subclassing only in runmode [modified] Pin
Richard_Wolf17-May-07 12:57
Richard_Wolf17-May-07 12:57 
Questionhi......... Pin
navyasri15-May-07 18:58
navyasri15-May-07 18:58 
AnswerRe: hi......... Pin
Christian Graus15-May-07 19:24
protectorChristian Graus15-May-07 19:24 
AnswerRe: hi......... Pin
Vivek Narayanan15-May-07 19:32
Vivek Narayanan15-May-07 19:32 
GeneralRe: hi......... Pin
Dave Kreskowiak16-May-07 3:25
mveDave Kreskowiak16-May-07 3:25 
Questionfinalize [modified] Pin
Sonia Gupta15-May-07 18:48
Sonia Gupta15-May-07 18:48 
AnswerRe: finalize Pin
Christian Graus15-May-07 19:25
protectorChristian Graus15-May-07 19:25 
GeneralRe: finalize Pin
Sonia Gupta15-May-07 19:27
Sonia Gupta15-May-07 19:27 
GeneralRe: finalize Pin
Christian Graus15-May-07 20:01
protectorChristian Graus15-May-07 20:01 
QuestionRe: finalize [modified] Pin
Sonia Gupta15-May-07 20:09
Sonia Gupta15-May-07 20:09 
GeneralRe: finalize Pin
Dave Kreskowiak16-May-07 3:23
mveDave Kreskowiak16-May-07 3:23 
Questionimage in report.rdlc Pin
dhanaid15-May-07 18:42
dhanaid15-May-07 18:42 
AnswerRe: image in report.rdlc Pin
Dave Kreskowiak16-May-07 3:21
mveDave Kreskowiak16-May-07 3:21 
Questiondataset Pin
Sonia Gupta15-May-07 18:37
Sonia Gupta15-May-07 18:37 
AnswerRe: dataset Pin
Christian Graus15-May-07 19:26
protectorChristian Graus15-May-07 19:26 
QuestionRe: dataset Pin
Sonia Gupta15-May-07 19:28
Sonia Gupta15-May-07 19:28 

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.