Click here to Skip to main content
15,881,809 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Question[Solved] Run Application in 64-bit mode Pin
Brandon-X120002-May-12 13:43
Brandon-X120002-May-12 13:43 
AnswerRe: Run Application in 64-bit mode Pin
Peter_in_27802-May-12 13:59
professionalPeter_in_27802-May-12 13:59 
GeneralRe: Run Application in 64-bit mode Pin
Brandon-X120003-May-12 2:48
Brandon-X120003-May-12 2:48 
GeneralRe: Run Application in 64-bit mode Pin
Brandon-X120003-May-12 2:57
Brandon-X120003-May-12 2:57 
GeneralRe: Run Application in 64-bit mode Pin
Peter_in_27803-May-12 12:11
professionalPeter_in_27803-May-12 12:11 
GeneralRe: Run Application in 64-bit mode Pin
Brandon-X120004-May-12 9:18
Brandon-X120004-May-12 9:18 
QuestionProblem using a fixed length string in a structure used as a parameter to a Win32API call Pin
dmt19401-May-12 9:29
dmt19401-May-12 9:29 
AnswerRe: Problem using a fixed length string in a structure used as a parameter to a Win32API call Pin
Dave Doknjas1-May-12 14:13
Dave Doknjas1-May-12 14:13 
The main thing is that the 2nd parameter should be 'ByRef':
VB
Declare Function midiInGetDevCaps Lib "winmm.dll" Alias "midiInGetDevCapsA" (ByVal uDeviceID As Integer, ByRef lpCaps As MIDIINCAPS, ByVal uSize As Integer) As Integer

Public Structure MIDIINCAPS
    Dim ManufacturerID As Short
    Dim ProductID As Short
    Dim DriverVersion As Integer
    Dim Label As String
    Dim Support As Integer
End Structure

David Anton
Convert between VB, C#, C++, & Java
www.tangiblesoftwaresolutions.com

GeneralRe: Problem using a fixed length string in a structure used as a parameter to a Win32API call Pin
dmt19402-May-12 6:52
dmt19402-May-12 6:52 
AnswerRe: Problem using a fixed length string in a structure used as a parameter to a Win32API call Pin
Luc Pattyn1-May-12 14:20
sitebuilderLuc Pattyn1-May-12 14:20 
GeneralRe: Problem using a fixed length string in a structure used as a parameter to a Win32API call Pin
dmt19402-May-12 7:52
dmt19402-May-12 7:52 
QuestionNumber comparisons in VBScript Pin
vanikanc30-Apr-12 9:56
vanikanc30-Apr-12 9:56 
AnswerRe: Number comparisons in VBScript Pin
Dave Kreskowiak30-Apr-12 13:18
mveDave Kreskowiak30-Apr-12 13:18 
GeneralRe: Number comparisons in VBScript Pin
vanikanc30-Apr-12 14:33
vanikanc30-Apr-12 14:33 
AnswerRe: Number comparisons in VBScript Pin
Midnight Ahri30-Apr-12 15:38
Midnight Ahri30-Apr-12 15:38 
GeneralRe: Number comparisons in VBScript Pin
Dave Kreskowiak30-Apr-12 16:04
mveDave Kreskowiak30-Apr-12 16:04 
GeneralRe: Number comparisons in VBScript Pin
vanikanc1-May-12 2:34
vanikanc1-May-12 2:34 
GeneralRe: Number comparisons in VBScript Pin
Dave Kreskowiak1-May-12 4:03
mveDave Kreskowiak1-May-12 4:03 
GeneralRe: Number comparisons in VBScript Pin
vanikanc1-May-12 6:35
vanikanc1-May-12 6:35 
Questionwhy I lose data after chnage the code or add code Pin
romo2228-Apr-12 13:44
romo2228-Apr-12 13:44 
AnswerRe: why I lose data after chnage the code or add code Pin
Wes Aday28-Apr-12 14:33
professionalWes Aday28-Apr-12 14:33 
JokeRe: why I lose data after chnage the code or add code Pin
Richard MacCutchan28-Apr-12 21:37
mveRichard MacCutchan28-Apr-12 21:37 
GeneralRe: why I lose data after chnage the code or add code Pin
Wes Aday29-Apr-12 2:19
professionalWes Aday29-Apr-12 2:19 
GeneralRe: why I lose data after chnage the code or add code Pin
romo2229-Apr-12 0:06
romo2229-Apr-12 0:06 
GeneralRe: why I lose data after chnage the code or add code Pin
Wes Aday29-Apr-12 2:16
professionalWes Aday29-Apr-12 2:16 

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.