I have to fill 3 String Arrays in an VB.NET Function, which is called by Gupta TD 6.2.
VB.NET:
Code: Select all
Function f_GetPrograms(ByRef programid As String(), ByRef programname As String(), ByRef category As String()) As Integer
Code: Select all
Set n_Count = myobject.f_GetPrograms ( program_id, program_name, program_category )
When i call this, always the error "Der Wert darf nicht NULL sein. Parametername: types" occures.
But: there is no Parameter called "types".
I also made an testprogram in VB, that calls this function ... no Problem.
Does anyone have an idea, how to handle this?