GetItem method (wodFtpDLX / wodFtpDLX.NET)
Can't get to work GetItem method. VC++ code is:
IDirItem DirItem;
VARIANT var;
var.vt = VT_INT;
var.intVal = 0;
DirItem = DirItems.GetItem(var);
It course COleDispatchException with empty discription information.
But if I use:
VARIANT var;
var.vt = VT_BSTR;
var.bstrVal = _T( testfile );
DirItem = DirItems.GetItem(var);
It is working. What can be the problem?
Complete thread:
- GetItem method - Oleg, 2007-08-22, 03:38
- Re: GetItem method - wodSupport, 2007-08-22, 10:10
- Re: GetItem method - Oleg, 2007-08-22, 10:42
- Re: GetItem method - wodSupport, 2007-08-22, 10:10