topic
stringlengths
1
63
text
stringlengths
1
577k
xBrowse
Colega ambas cosas son posible, pero un poco de codigo como tienes definido el xbrowse y lo usas te aseguro que ayudara a que entre todos consigamos el detalle y podamos ayudarte... saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
xBrowse
Estoy preparando un ejemplo para poder ver el problema, pero con el ejemplo no me pasa. Estoy trabajando con SQLRDD y xHarbour Comercial 1.2, podria ser un problema ? Voy a necesitar un poco de tiempo. Gracias.
xBrowse
Aquí dejo el código para que me puedan echar una mano para resolver-lo. Confirmado el problema es SQLRDD También, añado otra pregunta, el parámetro lAllWidth de la classe FOLDER funciona ? por defecto esta en .T. y las pestañas de los tabs son del tamaño del texto. [code=fw:1u10vlqh]<div class="fw" id="{CB}" style=...
xBrowse
Hola, Alguien me puede ayudar con el xbrowse con SQLRDD. He dejado el ejemplo anterior. Con archivos DBF funciona bien. Gracias. Pere
xBrowse
Alguna ayuda para empezar a mirar algo ? no se por donde empezar ... Por favor!! Pere
xBrowse
Hola, Como solicitó [b:3csfarwz]joseluisysturiz[/b:3csfarwz] puse el codigo de ejemplo. Por favor, [b:3csfarwz]Antonio[/b:3csfarwz] o el mismo [b:3csfarwz]joseluisysturiz[/b:3csfarwz], si me pueden echar una mano se lo agradecería muchísimo. Gracias. Pere Cordonet
xBrowse
We have not tested XBrowse with SQLRDD. But you may please try this suggestion. For SQLRDD, after creating XBROWSE, please add the following lines of code: [code=fw:2x2ekmnv]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">bKeyNo</span> := oBrw:<span style="color: #0000...
xBrowse
Gracias, por responder. Por fin un poco de ayuda. He probado las lineas de código que me ofreció y no funciona, sigue haciendo lo mismo. De todos modos muchas gracias por su respuesta, si quiere que me mire algún tipo de dato, solo tiene que comentarlo. Muchas gracias de nuevo. Pere
xBrowse
Buenos dia, de nuevo. Ya que nadie me puede echar una mano, seria posible que me respondiera alguien que esté utilizando SQLRDD ? Y si se puede confirmar la compatibilidad de SQLRDD con xBrowse Gracias.
xBrowse
Is possible select multiple Row ? and get a Array of nRow selected, or it is only to listbox ? thanks.
xBrowse
Lailton [code=fw:vszoogoj]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">nMarqueeStyle</span> = MARQSTYLE_HIGHLROWMS</div>[/code:vszoogoj]
xBrowse
Guys: How can I filter an xBrowse so I can include records matching a criteria ? Thanks
xBrowse
Hunter Filters, scopes, or conditional indexes. James
xBrowse
James: How do I implement a filter ? Thank you.
xBrowse
Hunter, SET FILTER TO ... Or, better: (cAlias)->(dbsetfilter( bCondition, cCondition )) Be advised that filters can be very slow for large databases. Indexes with scopes are very fast. James
xBrowse
Thank you James. I thought that xBrowse has a data for filters.
xBrowse
Hi all, Using a DBF with no index... Which is the rigth way to programatically delete the current record from a Browse??? oBrw:Delete() does not seem to doit for me...
xBrowse
Do you have SET DELETED ON in your code? Best regards, Otto
xBrowse
[code=fw:13jti5q7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">cAlias</span> <span style="color: #000000;">&#41;</span>-><span style="color: #000000;">&#40;</span> DbDelete<span style="color: #000000;">&#40;</span><span style="co...
xBrowse
[quote="Otto":3cdaozwy]Do you have SET DELETED ON in your code? [/quote:3cdaozwy] Thanks Otto, Yes It's ON [quote:3cdaozwy][code=fw:3cdaozwy]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">&#40;</span> oBrw:<span style="color: #000000;">cAlias</span> <span style="color: #000000...
xBrowse
After deleting a random row, I get this visual problem now: [img:2w1fg00z]http&#58;//www&#46;mayapos&#46;com/FiveWin/xbrowse3&#46;png[/img:2w1fg00z] I achieve the effect using :bClrStd Is there a way to refresh the colors of the browse??? .OR. I tried to avoid this not turning SET DELETED ON, but the row does not ap...
xBrowse
Bayron, [quote:10zx2t5s]I achieve the effect using :bClrStd[/quote:10zx2t5s] Please post the code you use for bClrStd, thanks
xBrowse
[code=fw:2pwbuheq]<div class="fw" id="{CB}" style="font-family: monospace;">:<span style="color: #000000;">bClrStd</span> &nbsp;:= <span style="color: #000000;">&#123;</span> || <span style="color: #00C800;">If</span><span style="color: #000000;">&#40;</span> Eval<span style="color: #000000;">&#40;</span> ListVen:<span...
xBrowse
oBrw:KeyNo() returns the OrdKeyNo() as returned by the RDD. Less known is the fact that OrdKeyNo() returns correct serial number only when FILTER is set on ".NOT. DELETED()" when SET DELETED is ON. So, USE <dbf> SET DELETED ON !DELETED() GO TOP Then browse as usual.
xBrowse
[code=fw:1x1kacdp]<div class="fw" id="{CB}" style="font-family: monospace;">SET DELETED <span style="color: #0000ff;">ON</span> !DELETED<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span></div>[/code:1x1kacdp] Does not work on FWH10.2 and xHarbour 1.21... I also tried: [code=fw:1x1kacdp...
xBrowse
Bayron, Use that FOR ... condition to create the index: INDEX ON ... FOR ! Deleted() ... example: [code=fw:yaplcoi3]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">INDEX</span> <span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">Name</spa...
xBrowse
Thanks for taking the time to answer my post, but the problem is not about the Deleted Records, but is that when I delete a record, the color of that row is lost and I get two consecutive rows with the same color....As you can see the above picture...
xBrowse
Here is a working sample: Please adopt this logic to your case. [code=fw:39zfz4lx]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.Ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"or...
xBrowse
[quote:3idn3qpj]FiveWin, One line of code and it's done... [/quote:3idn3qpj] Well Said !!!!
xBrowse
[quote:m2rnt9fa]Is there a way to paint the Browse Client Area when the Database is Empty??? Right now is ALL WHITE... [/quote:m2rnt9fa] As of now, no. You may try having one blank record to get the effect you want.
xBrowse
Thanks for your answer, I do use basicly the same logic, but as I said before [quote:38pzpnjd]The problem is not about the Deleted Records, but is that when I delete a record, the color of that row is lost and I get two consecutive rows with the same color....As you can see the above picture...[/quote:38pzpnjd] I thi...
xBrowse
A note on "SET FILTER TO !DELETED()". This does not slow down the navigation, if proper care is taken. (Applies to DBFCDX and ADSCDX). On the contrary this will greatly improve the speed in case the DBF contains lots of deleted records. Important: Create one tag compulsorily on all medium and large tables on DELETED(...
xBrowse
[quote="Bayron":3kfmrtya]Thanks for your answer, I do use basicly the same logic, but as I said before [quote:3kfmrtya]The problem is not about the Deleted Records, but is that when I delete a record, the color of that row is lost and I get two consecutive rows with the same color....As you can see the above picture.....
xBrowse
That should be my problem... I am not using Indexes... I'm sorry, for the misunderstanding, I only mentionated it on the first post!!! I'll try with indexes...
xBrowse
Mr. Rao, I Tested your Sample, and It work's as expected... I am testing to see how I can apply this to my case, because I am using the browse to add items that do not need sorting, because it's a receipt... If I use a blank field to index, should the Index leave the order as is????
xBrowse
The sample I give works perfectly whether there is any index or not. But does not work with DBFNTX. Now I understand that you must be using DBFNTX. If you use DBFCDX, it works as expected, with or without index/ If for some reason you have to use DBFNTX, please keep in mind that you may not be able to avail certain ...
xBrowse
Mr. Rao, Yes, I Confirm it now, It works with and without Indexes as long as the VIA "DBFCDX" is included when openning the database even if no index is created and used...and the other commands are included: [code=fw:1sd9wjk0]<div class="fw" id="{CB}" style="font-family: monospace;">REQUEST DBFCDX<br />....<br />SET...
xBrowse
to color lines in a browser, try: [code=fw:36y72gs5]<div class="fw" id="{CB}" style="font-family: monospace;"><br />    <span style="color: #B900B9;">// Setup alternating row flag </span><br />   lClrFlag:=.f. <br />   olbx1:<span style="color: #000000;">bSkip</span>:=<span style="color: #000000;">&#123;</span>| nRecs ...
xBrowse
Yes, Mr. Stefano's solution works in all cases.
xBrowse
Dear Mr. Rao, I will remember that you have worked on a xBrowse version with flexible row high. What is the status of this project. Best regards, Otto
xBrowse
Mr Otto Not ready yet.
xBrowse
Working on this proposal.
xBrowse and bLClickHeader
Hello RAO I have an xbrowse with AutoSort: = .t. and bLClickHeader on some columns. Is it possible not to execute setorder on columns that have bLClickHeader? Regards Maurizio
xBrowse and bLClickHeader
Dear Maurizio, try with [code=fw:2ycquypv]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;WITH OBJECT :<span style="color: #000000;">oCol</span><span style="color: #000000;">&#40;</span> <span style="color: #000000;">3</span> <span style="color: #000000;">&#41;</...
xBrowse and bLClickHeader
It works Thanks Navorro
xBrowse - no funciona el bEditBlock ??
Hola a Todos: Tengo un problema con el xBrowse , no se si estoy haciendo algo mal o es un error de la clase. Lo que sucede es que no se ejecuta el codeblock del edit [b:6hh6730l]( bEditBlock ) [/b:6hh6730l], al estar editando directamente en la grilla del browse. Les adjunto una parte del código. [code:6hh67...
xBrowse - no funciona el bEditBlock ??
Juan, El dato bEditBlock es para otro uso: bEditBlock // codeblock to evaluate for the "..." button; Quizás lo que buscas es bEditValid
xBrowse - no funciona el bEditBlock ??
GRACIAS Antonio, Tienes razón es bEditValid lo que buscaba, requería que al terminar de digitar, se valide una función. Saludos,
xBrowse < LINESTYLE > question
Hello,Because i use defined colors and pen-size for lines, are some settings of LINESTYLE not needed anymore ?( i can use them as predefined settings if needed )INSET and RAISED works perfect with defined lines and colors.[img:1hb6zee0]http&#58;//www&#46;pflegeplus&#46;com/pictures/xbrtools22&#46;jpg[/img:1hb6zee0]Inse...
xBrowse < LINESTYLE > question
Uwe,It seems that a user defined pen has priority over a predefined built-in line style
xBrowse < LINESTYLE > question
Antonio,i will keep both selections.Because the style-color-part belongs to pen-color-selection,i will shift the color-style-part to the pen-color-part. ( predefined internal used ).RegardsUwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
xBrowse FWH 13.07 problem with cSortOrder
Hello with FWH 13.07 this doesn't works , with FWH 13.03 it works ADD COLUMN oCol TO oBrw DATA FieldWBlock('DESCRIZ',Select( cAlias)) oCol:cSortOrder := "INU_DE" I know that I could use ADD COLUMN oCol TO oBrw DATA FieldWBlock('DESCRIZ',Select( cAlias)) ORDER "INU_DE" but this break compatibil...
xBrowse FWH 13.07 problem with cSortOrder
In case you did not create XBROWSE with AUTOSORT clause, please set oBrw:lAutoSort := .t.
xBrowse FWH 13.07 problem with cSortOrder
Thanks
xBrowse SetEditType FONT
How can I change the font in edit modus. Thanks in advance Otto [img:23um8vb7]http&#58;//www&#46;atzwanger-software&#46;com/fw/xbrwfont&#46;jpg[/img:23um8vb7]
xBrowse SetEditType FONT
Otto, The edit font defaults to the same font as the display font so assuming you have changed the display font, then this should work: oBrw:oEditFont := oFont James
xBrowse SetEditType FONT
Thank you, James. It is working. Best regards, Otto
xBrowse SetEditType FONT
James, do you also know how to change EDIT_LISTBOX FONT. Thanks in advance Otto
xBrowse SetEditType FONT
Otto, You can't specify the listbox font. The listbox is defined in this methd: [code=fw:3gfcut3x]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> ShowBtnList<span style="color: #000000;">&#40;</span> nKey <span style="color: #000000;">&#41;</span> <span style="col...
xBrowse ascending order
xBrowse I can’t remember how to fix XBrowse on ascending order when clicking on Header. Thanks in advance Otto
xBrowse ascending order
When we click on header of an unsorted column, it will be sorted in Ascending Order. If we click again on the header of a sorted column, the order keeps toggling between ascending and descending.
xBrowse ascending order
oCol := obrow1:AddCol() oCol:bStrData := {||odb1:startdate} oCol:cHeader := "????" oCol:cOrder := "A" oCol:nHeadBmpNo := 1 oCol:bLClickHeader := {|r,c,f,o| ::bas1205( r,c,o) } ... method bas1205(nrow,ncol,oCol) class bas12class local aCols,cOrder,nFor,nLen local nat,id1 aCols := oCol:o...
xBrowse ascending order
Thank you for your help. Mr. Rao is it possible to switch off toggling. Thanks in advance Otto
xBrowse ascending order
Mr Otto We have not provided for disabling toggling. Do you want to disable toggling globally for the entire project or for selected browses only?
xBrowse ascending order
Otto I believe you can just omit AUTOSORT when you create your browse ... if I recall that disables the header click to sort. Rick Lipkin
xBrowse ascending order
Mr Rick He wants autosort. What he does not want is descending sort. I shall help when he explains to me whether he wants to suppress Descending sort globally or for selected browses. i shall think of introducing a switch for that purpose.
xBrowse ascending order
Dear Mr. Rao, to suppress toggling for a single browser would be fine for me. Thanks in advance Otto
xBrowse ascending order
Mr Otto Please introduce new DATA by adding this line in the class declaration section of xbrowse.prg [code=fw:2wjaz8pq]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">DATA</span> lSortDescend AS LOGICAL <span style="color: #0000ff;">INIT</span> .t.<br />&nbsp;</div>[/code:2wja...
xBrowse database locking problem
If I use for example ::oBrw:Paste( "test" ) ::oBrw:Name:VarPut(( "test" ) the record is locked but not unlocked. How can we unlock this record again. Thanks in advance Otto [code=fw:3bzgwr2n]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> Paste<span style="co...
xBrowse database locking problem
Hello Antonio, Do you think this fix is save? Best regards, Otto [code=fw:3a1ndqq8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00C800;">static</span> <span style="color: #00C800;">FUNCTION</span> SetColFromRDD<span style="color: #000000;">&#40;</span> oCol, nFld, cAlias,...
xBrowse database locking problem
Otto, Yes, it seems fine to me. Is it working fine ?
xBrowse database locking problem
Fixed in version 13.01
xBrowse one dimensional array
Does xBrowse work on a one dimensional array.Regards,Otto
xBrowse one dimensional array
No <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->Wish it works. Right ?
xBrowse one dimensional array
Hello NageswaraRao,Thank you.I tested the printer code from Richard and wanted to show the result in a Xbrowse.<!-- m --><a class="postlink" href="http://forums.fivetechsoft.com/viewtopic.php?t=11640">http://forums.fivetechsoft.com/viewtopic.php?t=11640</a><!-- m -->But it didn’t work. I added a extra field and then al...
xBrowse one dimensional array
Mr OttoI am extremely sorry for my hasty comment. Single dimentional arrays can be browsed like this.[code:31t5a6df] #include "fivewin&#46;ch" #include "xbrowse&#46;ch" function Main&#40;&#41; local oWnd, oBrw local aList &#58;= &#123; "One&#46;&#46;", "Two&#46;&#46;", "Three", "Four&#46;", "Five&#46;" &#125; ...
xBrowse one dimensional array
Hello NageswaraRao,thank you for your help.The dBase syntax is working perfectly but trying the other two ways you suggested I get an error.ADDCOL no method ( I am not sure but I think I am still on FW 8.02) And the first test errors out with argument error Len from errorsys, line 0.Would you please be so kind to help ...
xBrowse one dimensional array
Mr Otto>oCol := oBrw:AddCol() oCol:bStrData := { || ADEVICES[ oBrw:nArrayAt ] }>This syntax should work even with the oldest version of XBrowse. I can't think of any reason why it should not work for you. Will you please try again ?I personally suggest you to use the latest version 8.05. Do you have any techinical pro...
xBrowse one dimensional array
Mr OttoI checked up the source code of xbrowse in 8.02.If you are using this version, please make the following change in the orginal XBrowse.Prg[code:2iphobnu] METHOD SetArray&#40; &#46;&#46;&#46;&#46;&#46;&#46;&#46;&#46;&#46;&#46;&#46; &#41; << FWH code >> &#58;&#58;aCols &#58;= &#123;&#125; // after this is...
xBrowse one dimensional array
Thank you very much for your help.Regards,Otto
xBrowse one dimensional array
FWH 8.06 handles single dimensional arrays ( even with mixed type values ) easily:Example[code:1ensbc4h] #include 'fivewin&#46;ch' #include 'xbrowse&#46;ch' function main&#40;&#41; local oDlg, oBrw local aData &#58;= &#123; 'one ', 'two ', 'three', 20, DATE&#40;&#41; &#125; DEFINE DIALOG oDlg SIZE 200,200...
xBrowse & Column Widths
All, I have an xbrowse with six data lines. I set the length of each line to 25 chars and set all columns to be the same width. The problem is some of the datalines do not fit within the column width and require more room horizontally. This causes the other data lines to wrap and they are not visible unless the use...
xBrowse & Edit Cell
Hi! It's necessary for me, that cell editing in some xBrowse cells started with the end of value of a cell. (User input the address. He selects street from the another browse, then the pointer in a cell has to go on the end of streets name, and then the user input house and apartment numbers) I tried : [code=fw:5rollw...
xBrowse & Edit Cell
So... I made it by changing this string in the end of method Edit(nKey) in class TXBrwColumn: Instead [code=fw:31vy2wbj]<div class="fw" id="{CB}" style="font-family: monospace;">        <span style="color: #00C800;">if</span> nKey != <span style="color: #00C800;">nil</span><br />          PostMessage<span style="color:...
xBrowse & Excel
Hi: I have a customer that is using MS Office 2010. When I call ToExcel in xbrowse they get an error message stating "spreadsheet software not installed". It works fine with Office 2003 and 2007. Can anyone tell me what the problem might be? Using FWH 10.9 and xHarbour 1.2.1. Thanks, Randal
xBrowse & Excel
Please see this topic <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=18483&p=96817&hilit=office#p96817">viewtopic.php?f=3&t=18483&p=96817&hilit=office#p96817</a><!-- l --> Is this of any help?
xBrowse & Excel
[quote="nageswaragunupudi":apo4pp5b]Please see this topic <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=18483&p=96817&hilit=office#p96817">viewtopic.php?f=3&t=18483&p=96817&hilit=office#p96817</a><!-- l --> Is this of any help?[/quote:apo4pp5b] Thanks for your reply. ...
xBrowse & Recordset related errors in FWH 9.06
I am using FWH 9.06. I have found the following errors in Xbrowse when associated with Recordsets. 1) In line no.5971, Method ToCalc() is trying to make a call to CopyFromRecordSet(). I understand that OpenOffice Calc does not support this function. This function is only supported by Excel and there is no equivalent ...
xBrowse & Recordset related errors in FWH 9.06
Mr Anser [quote:1xz5j86s]This function is only supported by Excel and there is no equivalent function in OpenOffice Calc. XBrowse errors out at this line.[/quote:1xz5j86s] You are right. This seems to be an inadvertent copy of ToExcel code to ToCalc method when the ToCalc method was introduced. This line should be remo...
xBrowse & Recordset related errors in FWH 9.06
Dear Mr.Rao, Thank you for the effort. You are right. [b:1g1bz8ec]This did the trick[/b:1g1bz8ec] [code=fw:1g1bz8ec]<div class="fw" id="{CB}" style="font-family: monospace;">oCol:<span style="color: #000000;">bEditValue</span> := <span style="color: #000000;">&#123;</span> || oRs:<span style="color: #000000;">Fields<...
xBrowse & Recordset related errors in FWH 9.06
I would advise you to use the command syntax suggested by me above. You will notice that 3 or 4 lines of code is equivalent to 100s of lines of code written in the oops way. In addition the xbrowse internally generates well tested codeblocks and does lot more work than we can do. For example the above single line code ...
xBrowse & SELECT parameter
I am working in conversion of old FW & Clipper systems. I just discovered that the SELECT clause in REDEFINE XBROWSE is accepted but not processed. (I tested with several FWH versions) Discovered also that oBrw:SetFilter("field", <field>) does not exist in xBrowse. In this case, there are NTX index files. (cannot use o...
xBrowse & SELECT parameter
This feature is not available in XBrowse.
xBrowse & SELECT parameter
Hi, sorry for hearing that... In this case, I suggest to elininate the line: [code=fw:2xkzz6t0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #000000;">&#91;</span> <span style="color: #0000ff;">SELECT</span> <cField> <span style="color: #00C800;">FOR</span> <uValue1> <span style="c...
xBrowse & SELECT parameter
It is your choice to use xbrowse or wbrowse. We did not implement in xbrowse because now ORDSCOPE() works for DBFNTX also and this is a lot better than implementation inside browse logic. ORDSCOPE( 0, "B" ) ORDSCOPE( 1, "D" ) GO TOP and XBrowse. This is quite efficient
xBrowse & SELECT parameter
You should consider moving to CDXs--they all exist in one file and you can globally set them to open automatically whenever you open the DBF. Better yet, you should consider moving to database objects--no more using aliases or work areas. You can eliminate lots of code this way. This provides easier to read code with ...
xBrowse & SELECT parameter
[quote="James Bott":2sdg79ri]You should consider moving to CDXs--they all exist in one file and you can globally set them to open automatically whenever you open the DBF. Better yet, you should consider moving to database objects--no more using aliases or work areas. You can eliminate lots of code this way. This provi...
xBrowse & SELECT parameter
Thanks Mr.Rao. I was not aware about using ORDSCOPE with DBFNTX. But let me insist... in XBROWSE.CH, in the statement #xcommand: #xcommand @ <nRow>, <nCol> [ COLUMN ] XBROWSE <oBrw> ; ... the line: [ SELECT <cField> FOR <uValue1> [ TO <uValue2> ] ] ; should be deleted Your thougths please... Regards, Euclides
xBrowse & SELECT parameter
Hi James, thanks for the info... As I stated in the beggining, I am converting an old FiveWin-Clipper app. I used (until today in smal systems) to load the DBF into an Array and after the dialog, load it back to DBF (scatter & gather functions). Would be a lot of work rewrite it to use TDatabase In the newest systems, ...
xBrowse & SELECT parameter
For your information, class TDataRow is created to be used in the place of scatter/gather logic, but this class is robust and safer. We can also address the fieldnames as oRec:fieldname. TDataRow works with DBF, TDatabase, ADO Recordset, TRecSet, DolphinQry exactly the same way.