I have a function that exports a string array, the function returns a long, I realize this is a VB question but perhaps someone may know the answer (I hope it's not a vbstring thing)...
So lets say pInfoData() is dimmed 1 to 5 as STRING, all 5 elements fill up with strings and vb calls it as such, and without even CALLING the function, just having an edit box on the form, I get a GPF in my DLL, the sample PB/DLL executable that calls this has ZERO problems...
-------------
Scott Turchin
So lets say pInfoData() is dimmed 1 to 5 as STRING, all 5 elements fill up with strings and vb calls it as such, and without even CALLING the function, just having an edit box on the form, I get a GPF in my DLL, the sample PB/DLL executable that calls this has ZERO problems...
Code:
VB: Public pInfoQty() As String Public pInfoProdName() As String Public pInfoAmt() As String Public ArrayCount As Long Global St As String Public Declare Function PARSEEMAILFILE Lib "MAILP.DLL" (FileSpec As String, _ pInfoQty() As String, _ pInfoProdName() As String, _ pInfoAmt() As String, ArrayCount As Long) As String
-------------
Scott Turchin
Comment