I am having a dificult time understanding why this one folder with an xbrowse list box is showing up only three dots in the EmailTo column .. see code and screen shot .. The data is not that wide and it showed up perfectly under the standard FWH listbox twbrowse class ??
Varchar(max) seemed to work with twbrowse .. but it may be giving xbrowse a problem .. is there a way to substr(email_to) to give it a fixed width in xBrowse ?
Any Ideas ??
Rick Lipkin
- Code: Select all Expand view RUN
//----- email tab
REDEFINE xBROWSE oLbx2 ;
RECORDSET oRsMail ;
ID 111 of oFld1:aDialogs[3] ;
COLUMNS 'date_sent', ;
'email_from', ;
'email_to', ;
'subject' ;
COLSIZES 80,160,160,100 ;
HEADERS 'DateSent', ;
'EmailFrom', ;
'EmailTo', ;
'Subject' ;
AUTOSORT AUTOCOLS LINES CELL
olBx2:nRowHeight := 15
oLbx2:bLDblClick := { |nRow,nCol | _VIEWMAIL( "V", oRsMail:Fields("message"):Value ) }
[/url]