Click here to Skip to main content
15,922,007 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Retrieving colours from form Pin
Roy Heil15-Dec-05 4:50
professionalRoy Heil15-Dec-05 4:50 
GeneralRe: Retrieving colours from form Pin
Deemo15-Dec-05 9:11
Deemo15-Dec-05 9:11 
Questiongetting data with winsock Pin
Rohithie14-Dec-05 19:07
Rohithie14-Dec-05 19:07 
AnswerRe: getting data with winsock Pin
Dave Kreskowiak15-Dec-05 5:27
mveDave Kreskowiak15-Dec-05 5:27 
QuestionHi...need help for windows process name Pin
BK Heng14-Dec-05 15:40
BK Heng14-Dec-05 15:40 
AnswerRe: Hi...need help for windows process name Pin
Dave Kreskowiak15-Dec-05 5:22
mveDave Kreskowiak15-Dec-05 5:22 
GeneralRe: Hi...need help for windows process name Pin
BK Heng15-Dec-05 13:19
BK Heng15-Dec-05 13:19 
QuestionWndDebugger and ProcessExplorer Pin
devvvy14-Dec-05 15:08
devvvy14-Dec-05 15:08 
Hi, trying to learn how to interpret information from WinDbg and ProcessExplorer (from www.sysinternals.com). So, I wrote a simple Win32 console app in VB.NET (could have been anything else really):

Imports TestDebugger

Module Module1
Sub Main()
Functions.SubA(1000, 100)
Functions.SubB(1000, 100)
Functions.SubC(1000, 100)
Return
End Sub
End Module

Imports System.Threading

Public Class Functions
Public Shared Sub SubA(ByVal max As Int32, ByVal sleep As Int32)
For i As Int32 = 1 To max Step 1
Thread.CurrentThread.Sleep(sleep)
Console.WriteLine("SubA: " + CStr(i))
Next i

Return
End Sub

Public Shared Sub SubB(ByVal max As Int32, ByVal sleep As Int32)
For i As Int32 = 1 To max Step 1
Thread.CurrentThread.Sleep(sleep)
Console.WriteLine("SubB: " + CStr(i))
Next i

Return
End Sub

Public Shared Sub SubC(ByVal max As Int32, ByVal sleep As Int32)
For i As Int32 = 1 To max Step 1
Thread.CurrentThread.Sleep(sleep)
Console.WriteLine("SubC: " + CStr(i))
Next i

Return
End Sub
End Class


Now comes the questions:
1. WndDbg - how can I set breakpoint in WndDbg to break at TestDebugger.exe calls to Functions.SubA?

2. ProcessExplorer: Hey I located "TestDebugger.exe", double click and page to "Threads" tab and I couldn't see any calls to .NET Functions.SubA??? how come? Thanks in advance.

I captured the screenshots of information I got running WndDbg and ProcessExplorer.



Norman Fung
QuestionReminder for client Pin
linardi14-Dec-05 15:02
linardi14-Dec-05 15:02 
QuestionAdd Serial Number while making Installer in VB.net Pin
Rachel Lam14-Dec-05 14:53
Rachel Lam14-Dec-05 14:53 
AnswerRe: Add Serial Number while making Installer in VB.net Pin
rwestgraham17-Dec-05 19:50
rwestgraham17-Dec-05 19:50 
GeneralRe: Add Serial Number while making Installer in VB.net Pin
Rachel Lam18-Dec-05 14:03
Rachel Lam18-Dec-05 14:03 
Questioncreate database for pocket pc Pin
eileenpp14-Dec-05 14:37
eileenpp14-Dec-05 14:37 
QuestionDraw RTF string from RTB to GDI+ Pin
surahman7514-Dec-05 14:14
surahman7514-Dec-05 14:14 
QuestionHow to find the paper trays configured on your printers Pin
Rommelke14-Dec-05 13:51
Rommelke14-Dec-05 13:51 
QuestionStatus bar with Labels Pin
lcannon14-Dec-05 10:30
lcannon14-Dec-05 10:30 
AnswerRe: Status bar with Labels Pin
Roy Heil14-Dec-05 17:31
professionalRoy Heil14-Dec-05 17:31 
Question.net express Pin
ddpn4214-Dec-05 10:20
ddpn4214-Dec-05 10:20 
AnswerRe: .net express Pin
enjoycrack14-Dec-05 10:30
enjoycrack14-Dec-05 10:30 
AnswerRe: .net express Pin
Mazitan14-Dec-05 10:32
Mazitan14-Dec-05 10:32 
GeneralRe: .net express Pin
ddpn4214-Dec-05 10:48
ddpn4214-Dec-05 10:48 
QuestionNEED: .NET multi-table master-detail type... Pin
ScottForgot14-Dec-05 8:23
ScottForgot14-Dec-05 8:23 
QuestionA Better ComboBox Pin
dptalt14-Dec-05 7:06
dptalt14-Dec-05 7:06 
AnswerRe: A Better ComboBox Pin
Robert Rohde14-Dec-05 10:55
Robert Rohde14-Dec-05 10:55 
QuestionDatagrid Pin
Nirali Pare14-Dec-05 6:26
Nirali Pare14-Dec-05 6:26 

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.