Please be gentle! I'm a newbie to VB. I have VB4 Professional and am trying to pass the required arguments, especially the data array, to the function. Any b0ody willing to lend a hand to an ...
Printable View
Please be gentle! I'm a newbie to VB. I have VB4 Professional and am trying to pass the required arguments, especially the data array, to the function. Any b0ody willing to lend a hand to an ...
what exactly are you trying to do?
As in, what are you trying to pass to what function?
Please explian and sho a little code for better understanding and someone will be able to help.
To be more specific I'm trying to write a binary value into a registry key. I'm using the sub function SaveSettingByte written by John Percival. It requires the following parameters:
Public Sub SaveSettingByte(ByVal hkey As Long, ByVal _
strPath As String, ByVal strValueName As String, byData() As Byte).
I have no problem with the strings but the array throws me.
Old Man