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

Visual Basic

 
GeneralRe: Background image in VB.net Pin
Brizee17-May-07 5:57
Brizee17-May-07 5:57 
GeneralRe: Background image in VB.net Pin
Dave Kreskowiak17-May-07 6:16
mveDave Kreskowiak17-May-07 6:16 
GeneralRe: Background image in VB.net Pin
Brizee17-May-07 12:49
Brizee17-May-07 12:49 
GeneralRe: Background image in VB.net Pin
Dave Kreskowiak17-May-07 15:21
mveDave Kreskowiak17-May-07 15:21 
GeneralRe: Background image in VB.net Pin
Brizee17-May-07 22:27
Brizee17-May-07 22:27 
GeneralRe: Background image in VB.net Pin
Dave Kreskowiak18-May-07 12:47
mveDave Kreskowiak18-May-07 12:47 
QuestionEnumChildWindows Pin
Knoen17-May-07 3:33
Knoen17-May-07 3:33 
AnswerRe: EnumChildWindows Pin
Duncan Edwards Jones17-May-07 4:07
professionalDuncan Edwards Jones17-May-07 4:07 
Your delegate declaration is awry - the lParam parameter should be an Int32

Also - in VB.net a 32 bit number is not a Long - replace all instances of Long with Int32.
<br />
Public Delegate Function EnumFuncDeleg(ByVal hwnd As Int32, ByVal lParam As Int32) As int32<br />
<br />
Declare Function EnumChildWindows Lib "user32" (ByVal hWndParent As Int32, ByVal lpEnumFunc As EnumFuncDeleg, ByVal lParam As int32) As int32<br />
<br />
'<br />
'<br />
' Inside function<br />
EnumChildWindows(ProcessInfo.Handle, AddressOf EnumChildWindow, Nothing)


'--8<------------------------
Ex Datis:
Duncan Jones
Merrion Computing Ltd

GeneralRe: EnumChildWindows Pin
Knoen17-May-07 4:18
Knoen17-May-07 4:18 
QuestionCountdown Timer Pin
Brizee17-May-07 3:01
Brizee17-May-07 3:01 
AnswerRe: Countdown Timer Pin
Tarakeshwar Reddy17-May-07 3:48
professionalTarakeshwar Reddy17-May-07 3:48 
GeneralRe: Countdown Timer Pin
Brizee17-May-07 4:17
Brizee17-May-07 4:17 
GeneralRe: Countdown Timer Pin
jchigg200017-May-07 10:28
jchigg200017-May-07 10:28 
GeneralRe: Countdown Timer Pin
Brizee17-May-07 13:05
Brizee17-May-07 13:05 
GeneralRe: Countdown Timer Pin
Brizee17-May-07 23:25
Brizee17-May-07 23:25 
QuestionCoCreateGuid API .vb.net Pin
bony_baba17-May-07 2:39
bony_baba17-May-07 2:39 
AnswerRe: CoCreateGuid API .vb.net Pin
Dave Kreskowiak17-May-07 4:58
mveDave Kreskowiak17-May-07 4:58 
GeneralRe: CoCreateGuid API .vb.net [modified] Pin
bony_baba18-May-07 0:13
bony_baba18-May-07 0:13 
GeneralRe: CoCreateGuid API .vb.net Pin
Dave Kreskowiak18-May-07 12:50
mveDave Kreskowiak18-May-07 12:50 
QuestionProblem occour when registering dll on win xp Pin
koolprasad200317-May-07 1:37
professionalkoolprasad200317-May-07 1:37 
AnswerRe: Problem occour when registering dll on win xp Pin
Christian Graus17-May-07 2:16
protectorChristian Graus17-May-07 2:16 
QuestionGet all window handles Pin
Burillo17-May-07 1:04
Burillo17-May-07 1:04 
AnswerRe: Get all window handles Pin
Dave Kreskowiak17-May-07 4:54
mveDave Kreskowiak17-May-07 4:54 
GeneralRe: Get all window handles Pin
Burillo17-May-07 6:17
Burillo17-May-07 6:17 
GeneralRe: Get all window handles Pin
Dave Kreskowiak17-May-07 6:24
mveDave Kreskowiak17-May-07 6:24 

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.