Click here to Skip to main content
15,913,773 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionAudio and Image at the same time? Pin
musiccode55618-Jan-06 17:43
musiccode55618-Jan-06 17:43 
AnswerRe: Audio and Image at the same time? Pin
Christian Graus18-Jan-06 17:53
protectorChristian Graus18-Jan-06 17:53 
Questionhow can i bind checkbox to sqldatabase Pin
thepityone18-Jan-06 17:37
thepityone18-Jan-06 17:37 
QuestionHow to get hwnd in .NET? Pin
bskirkman18-Jan-06 16:38
bskirkman18-Jan-06 16:38 
AnswerRe: How to get hwnd in .NET? Pin
Christian Graus18-Jan-06 17:55
protectorChristian Graus18-Jan-06 17:55 
GeneralRe: How to get hwnd in .NET? Pin
bskirkman18-Jan-06 18:20
bskirkman18-Jan-06 18:20 
GeneralRe: How to get hwnd in .NET? Pin
bskirkman18-Jan-06 18:21
bskirkman18-Jan-06 18:21 
AnswerRe: How to get hwnd in .NET? Pin
Dave Kreskowiak19-Jan-06 5:54
mveDave Kreskowiak19-Jan-06 5:54 
Why are you expecting a return type of Long?? Long is 64 bits on a 32 bit proc and 128 bits wide on a 64 bit proc.

Any function that returns a handle returns a value the same as the data width for the processor it's running on. The proper return type for FindWindow is IntPtr since IntPtr is the width of the proc it's on.
Private Declare Auto FindWindow Lib "user32" ( _
    ByVal lpClassName As String, _
    ByVal lpWindowName As String ) _
        As IntPtr



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: How to get hwnd in .NET? Pin
Christian Graus19-Jan-06 8:52
protectorChristian Graus19-Jan-06 8:52 
GeneralRe: How to get hwnd in .NET? Pin
Dave Kreskowiak19-Jan-06 9:08
mveDave Kreskowiak19-Jan-06 9:08 
GeneralRe: How to get hwnd in .NET? Pin
Christian Graus19-Jan-06 9:10
protectorChristian Graus19-Jan-06 9:10 
GeneralRe: How to get hwnd in .NET? Pin
Dave Kreskowiak19-Jan-06 9:26
mveDave Kreskowiak19-Jan-06 9:26 
GeneralRe: How to get hwnd in .NET? Pin
Christian Graus19-Jan-06 9:29
protectorChristian Graus19-Jan-06 9:29 
GeneralRe: How to get hwnd in .NET? Pin
bskirkman19-Jan-06 11:05
bskirkman19-Jan-06 11:05 
QuestionListbox style with checkbox? Pin
cylix200018-Jan-06 16:05
cylix200018-Jan-06 16:05 
AnswerRe: Listbox style with checkbox? Pin
Joshua Quick18-Jan-06 16:33
Joshua Quick18-Jan-06 16:33 
AnswerRe: Listbox style with checkbox? Pin
bskirkman18-Jan-06 16:41
bskirkman18-Jan-06 16:41 
QuestionHow can show the the message to StatusItem1 when I click the btnSave? Pin
cylix200018-Jan-06 15:08
cylix200018-Jan-06 15:08 
AnswerRe: How can show the the message to StatusItem1 when I click the btnSave? Pin
Muhammad Javed Khan18-Jan-06 18:54
Muhammad Javed Khan18-Jan-06 18:54 
QuestionSub Main() Pin
OldDog.Net18-Jan-06 14:31
OldDog.Net18-Jan-06 14:31 
AnswerRe: Sub Main() Pin
Joshua Quick18-Jan-06 15:41
Joshua Quick18-Jan-06 15:41 
QuestionDateTimePicker Pin
welbert18-Jan-06 13:56
welbert18-Jan-06 13:56 
AnswerRe: DateTimePicker Pin
Joshua Quick18-Jan-06 16:48
Joshua Quick18-Jan-06 16:48 
QuestionCan't see the horizontal scrollbar in listbox VB6 Pin
Joy Anne18-Jan-06 13:55
Joy Anne18-Jan-06 13:55 
AnswerRe: Can't see the horizontal scrollbar in listbox VB6 Pin
Joshua Quick18-Jan-06 16:00
Joshua Quick18-Jan-06 16:00 

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.