Click here to Skip to main content
15,884,388 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Visual Basic 2010 : Creating a list and searching it efficiently using a binary file Pin
Eddy Vluggen3-May-12 23:58
professionalEddy Vluggen3-May-12 23:58 
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 
Imports System.Runtime.InteropServices
Public Class Form1
Public Const MAXPNAMELEN = 32 ' max product name length (including NULL)
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Ansi)> _
Structure MIDIINCAPS 'Structure def copied from win32api.txt
Dim wMid As Int16
Dim wPid As Int16
Dim vVersion As Integer
<MarshalAs(UnmanagedType.ByValTStr, SizeConst:=MAXPNAMELEN)> _
Dim szPname As String 'win32api.txt def is String*MAXPNAMELEN
End Structure
Declare Function midiInGetNumDevs Lib "winmm.dll" () As Long
Declare Function midiInGetDevCaps Lib "winmm.dll" Alias "midiInGetDevCapsA" _
(ByVal uDeviceID As Int32, ByVal lpCaps As MIDIINCAPS, ByVal uSize As Int32) As Int32
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim retval As Int32
Dim NumMidiInDevices As Int32
Dim DevCounter As Int32
Dim devicecaps As New MIDIINCAPS
NumMidiInDevices = midiInGetNumDevs()
For DevCounter = 0 To NumMidiInDevices - 1
retval = midiInGetDevCaps(DevCounter, devicecaps, Len(devicecaps)) ' Runtime error msg here
'=======================================================================
'A call to PInvoke function 'MidiInCapTest!MidiInCapTest.Form1::midiInGetDevCaps' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match the target unmanaged signature.
'========================================================================
Next DevCounter
End Sub
'============================================================================
'I have tried <VBFixedString(MAXPNAMELEN)> instead of Marshall as, in the sructure plus countless tries at int16, int32 etc for the other parameters in the API call,in a fruitless attempt to outwit the known inconsistencies between winapi32.txt data types & .NET but to no avail.

'Can anyone help

End Class
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 
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 

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.