I almost finished converting the module from VB6 to VB.NET, but I am having problems with the following two quotes, and I am wondering if there is a way to do this:
Structure AUDINPUTARRAY
bytes(5000) As Byte
End Structure
I am trying to change this byte string to: Dim bytes (5000) as Byte but this does not allow me to determine the size in the structure.
Here's the second one:
Private i As Integer, j As Integer, msg As String * 200, hWaveIn As integer
I have no clue on how to convert: msg As String * 200
source
share