avsomeren
Hi there,
I'm trying to get the status messages that appear in the logfile into a textbox. I added the eventhandler for the OnStatus event method :
The problem is that it appears that the events are not fired at all.
Do i miss something here ?
Regards,
Arie van Someren
I'm trying to get the status messages that appear in the logfile into a textbox. I added the eventhandler for the OnStatus event method :
this.ftp.OnStatus += new IFTPConnectionEvents_OnStatusEventHandler(this.ftp_OnSourceStatus);
private void ftp_OnSourceStatus(enumStatusEventType t, string szText)
{
this.Add_Log(szText);
}
The problem is that it appears that the events are not fired at all.
Do i miss something here ?
Regards,
Arie van Someren