... the structure. FWH then returns the error: Error description: Error ADSCDX/5095 Error 5095: The date specified is not valid. Date won't convert to julian. when trying to load the contents of the record into the buffer. It is called from: Called from: => FIELDGET( 0 ) Called from: C:\Projects\MLS2015\Source\database.prg ...
... move the view to the matching record. Instead we get the following message: ADSCDX / 5095 The date specified in not valid. Date won't convert to Julian This error results from a call to Database.prg line 958 ( seek ). Is anyone else trying to do a search in a browse, using a database object, ...
Julian There is a wealth of information contained in the \samples folder .. some good xBrowse examples are : any sample that starts with "xb" TestXbrw.prg TestXbr3.prg You can compile any of the above using Build.bat ...
Julian, I was wrong. The SELECT ... clause is only available for TWBrowse (the initial FIveWin browse) and not for XBrowse. If you just want to show some records from the DBF, you may use SET SCOPE TO ... or SET FILTER on ...
Julian, You can implement a filter on a browse based on a current index in use: #xcommand @ <nRow>, <nCol> [ COLUMN ] XBROWSE <oBrw> ; [ [ FIELDS ] <Flds,...>] ...
Julian, FIveWin originally implemented a Class TWBrowse, that you can use this way: @ 1, 1 LISTBOX oLbx FIELDS Clientes->Nombre, AllTrim( Clientes->Direccion ),; ...