Please note that XBrowse command syntax is EXACTLY THE SAME whether you use Dolphin Query, TMySql Query, FWH RowSet, ADO RecordSet, DBF alias, TDatabase object, Array, Hash or anything,
If you have created XBrowse using command syntax for one, use the same syntax for any other datasource.
Difference between creating xbrowse from source / resource:
SOURCE:
@ row, col XBROWSE oBrw SIZE w,h PIXEL OF oDlg ;
DATASOURCE <oQry/oRs/Alias/Array/...... > ;
COLUMNS ..
...
RESOURCE:
REDEFINE XBROWSE oBrw ID <id> OF oDlg ;
DATASOURCE <oQry/oRs/Alias/Array/...... > ;
COLUMNS ..
...