You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

C Example 1
BOOL fOK;
int  iSession;
 
fOK = LceSetFieldValueU(iSession, "TOWN", "宮代町");
 
C Example 2
BOOL fOK;
int  iSession;
 
fOK = LceSetFieldValueU(iSession, "TOWN", NULL);
 
C Example 3
strcpy(strField, "TOWN");
if !LceSetFieldValueU(iSession, strField, "Henty")
{
         / return error /
}
 
Note: You are not assigning strField = "12345". You are assigning the field "EMPNO", which happens to be stored in the variable strField, to the value of "12345".

  • No labels