P
Pawel
I have this class below in my project,
public class cmbKeyExt: TestGlobalsCS.cmbKey
{
public cmbKeyExt():base() {}
public bool fClearWithSync()
{
if (this.fClear()==true)
{
this.v_iItems=0;
this.sTmpCode="";
this.Items.Clear();
return true;
}
return false;
}
I will add to this calss WM_LBUTTONDONW message and processing this message
Regards,
Pawel
public class cmbKeyExt: TestGlobalsCS.cmbKey
{
public cmbKeyExt():base() {}
public bool fClearWithSync()
{
if (this.fClear()==true)
{
this.v_iItems=0;
this.sTmpCode="";
this.Items.Clear();
return true;
}
return false;
}
I will add to this calss WM_LBUTTONDONW message and processing this message
Regards,
Pawel