Hi There,
Can you provide c# code sample to identify the Field is hidden or password field.
Right now I am using following code to get FieldName
public string CopyFieldToString(UInt32 rc)
{
UInt32 ReceivedCode = rc;
byte[] databyte = new byte[20];
UInt16 f = (UInt16)FunctionCodes.CopyFieldToString; //Function 34
UInt32 l = 20;
HLLAPIWrapperMethod(out f, databyte, out l, out ReceivedCode);
//TODO if REceivedCode is zero then its success otherwise failed
string txt = string.Empty;
for (int i = 0; i < databyte.Length; i )
{
txt = Convert.ToString((char)databyte);
}
return txt;
}
With this i want to know if its password field stop capturing it.
#Rumba
#Rumba9.5




