To All
Consider this code .. I want to concantonate the fname+", "+mname on one column .. here is the code :
The code breaks on the concantonation of fname+mname .. is there a way to combine both fields in one column ?
Thanks
Rick Lipkin
Consider this code .. I want to concantonate the fname+", "+mname on one column .. here is the code :
DEFINE DIALOG oDlg RESOURCE "DRVRSLCT" ;
COLOR "W+/W" ;
TITLE "DRIVER Select for Agency "+xAGENCY ;
REDEFINE xBROWSE oLBX ;
RECORDSET oRsDrvr ;
COLUMNS ;
'LNAME', ;
SUBSTR( ALLTRIM(oRsDrvr:Fields("FNAME"):Value)+", "+ALLTRIM(oRsDrvr:Fields("MNAME"):Value)+SPACE(30),1,30), ;
'ACTIVE' ;
COLSIZES 95,80, 40 ;
HEADERS "Lname", ;
"Fname", ;
"Act" ;
ID 111 of oDlg ;
AUTOSORT AUTOCOLS LINES CELLThe code breaks on the concantonation of fname+mname .. is there a way to combine both fields in one column ?
Thanks
Rick Lipkin