It appears my first post didn't work so I am reposting
I am trying to convert a VB6 app to Visual Studio 2008 (C#).
The Init event is the one I am having a problem with.
The code in the VB6 app for the dll is:
Set Q = CreateObject("MAS90.Queue")
Q.Init "Import"
Q.Start
When I try to use it in VS 2008 it expects 3 parms and I am not sure what to use.
void Init(ref string summary, ref bool CancelEnabled, ref short priority)
Member of MAS90._Queue
I am trying to convert a VB6 app to Visual Studio 2008 (C#).
The Init event is the one I am having a problem with.
The code in the VB6 app for the dll is:
Set Q = CreateObject("MAS90.Queue")
Q.Init "Import"
Q.Start
When I try to use it in VS 2008 it expects 3 parms and I am not sure what to use.
void Init(ref string summary, ref bool CancelEnabled, ref short priority)
Member of MAS90._Queue