topic
stringlengths
1
63
text
stringlengths
1
577k
problem with SQL INSERT [solved]
Hi, With MSSQL i do this : csql:="INSERT INTO "+(cTabla)+ " (PATID,LASTNAME) VALUES (" cSql:=cSql+" 'C01', 'CONCEPTO PARA PRUEBAS'+" )" TRY oCon:Execute(cSql) CATCH oErr ShowAdoEr( oCon,csql ) END TRY Hope it will help ! Philippe
problem with SQL INSERT [solved]
Thank you. The advantage of such command is that it handles the sintax for every Database. So the same code will work under MSSQL, MySQL, Oracle...
problem with SQL INSERT [solved]
Maybe this could be: [code=fw:2uks5p29]<div class="fw" id="{CB}" style="font-family: monospace;">#xtranslate ADO_SQL <span style="color: #0000ff;">UPDATE</span> &nbsp;<span style="color: #000000;">&#91;</span>TABLE <tbl> <span style="color: #000000;">&#93;</span> SET <span style="color: #000000;">&#91;</span> <col1> =...
problem with SQL INSERT [solved]
[quote="MOISES":t7ydxwe3]Sorry, not working.[/quote:t7ydxwe3] [code=fw:t7ydxwe3]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #00C800;">local</span> cSql<br />   <span style="color: #00C800;">local</span> cName    := <span style="color: #ff0000;">"John"</span><br />   <span style="co...
problem with SQL INSERT [solved]
Hi, Hope you are doing well. There is a typo on calling TABLE. I fixed as follows: #xtranslate SQL INSERT INTO [TABLE <tbl> ] ( <cols,...> ) ARRAY <a> => ; "INSERT INTO " + <tbl> + " ( " + FW_QuotedColSQL( #<cols> ) + " ) " + " VALUES " + ; StrTran( StrTran( FW_ValToSql( AClone( <a> ) ), '( (', '(' ), ') )', ')' )...
problem with SQL INSERT [solved]
But we can not change because that breaks the existing code many users are already using.
problem with SQL INSERT [solved]
Thank you. I will create my own function with regular INSERT. How can I transform all the data in an array into VALUES with FW_ValToSQL?
problem with SQL INSERT [solved]
Please study the existing translates in the fwsqlcmd.ch
problem with SQL INSERT [solved]
Thank you. I used FW_AdoApplyParams. I would like to take this opportunity to thank you for the enormous usefulness of the ADO functions you have created, which make our work much easier. Congratulations once again.
problem with Scrollbar style - Resolved -
When I move the mouse on scroll I have a strange effect different with xbrowse scroll bars see the video [img:3h3h4475]https&#58;//i&#46;postimg&#46;cc/j5CKk3fD/scroll&#46;gif[/img:3h3h4475] I Try also with [code=fw:3h3h4475]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;"...
problem with Scrollbar style - Resolved -
Dear Silvio, Whats the problem with those scrollbars ? They look fine
problem with Scrollbar style - Resolved -
por que no usar un control trackbar? [img:2gnwjzj6]https&#58;//i&#46;imgur&#46;com/wiXpiTI&#46;png[/img:2gnwjzj6]
problem with Scrollbar style - Resolved -
[quote="carlos vargas":1ioundv1]por que no usar un control trackbar? [img:1ioundv1]https&#58;//i&#46;imgur&#46;com/wiXpiTI&#46;png[/img:1ioundv1][/quote:1ioundv1] can be an idea
problem with Scrollbar style - Resolved -
[quote="Antonio Linares":270i8vve]Dear Silvio, Whats the problem with those scrollbars ? They look fine[/quote:270i8vve] when i move the mouse into they blinking but only with xp look res
problem with Scrollbar style - Resolved -
Perhaps I found the problem sorry my mistake I used Windows10.Manifest this evening I return back on windowsxp.manifest and it run ok probable Windows10.Manifest not run ok with scrollbars
problem with XBROWSE with SELECT clause
I should list a few record via XBROWSE.I saw the clause SELECT, but it doesn't work rightly and i don't understand why. This is my code:[code:11vj9pno]local oBRW,oDLG use clienti index on importo to custntx DEFINE DIALOG oDLG RESOURCE "PROVA" redefine XBROWSE oBRW ID 101 of oDLG FIELDS clienti->ragsoc,clienti->impo...
problem with XBROWSE with SELECT clause
Why don't you just use scopes? If you don't know how, let me know.Regards,James
problem with XBROWSE with SELECT clause
James,how can i use scopes?I don't know how.Can you write me an example?Thank you.Max
problem with XBROWSE with SELECT clause
Using ScopesThe database must be indexed on the field to be scoped.Then to set the top scope:(cAlias)->( ordScope( 0, uTopScope) )To set the bottom scope:(cAlias)->( ordScope( 1, uBottomScope) )Then you should do a go top:(cAlias)->(dbgotop())You can use the same value for both the top and bottom scope.This works with ...
problem with XBROWSE with SELECT clause
Thank you James, all cleared!Max
problem with a calculation
on my application the total is 58.29 but if I make the calc the total is 58.28 why it los a 0,01 ? nTotDoc:= 63.65 nTotRitenute:= 5.37 nTotDovuto := nTotDoc-nTotRitenute [b:2gf9qx3h]how I can make to have the same result ?[/b:2gf9qx3h] [b:2gf9qx3h]my app[/b:2gf9qx3h] [img:2gf9qx3h]https&#58;//s7&#46;postimg&#4...
problem with a calculation
When you calculate Rit. d'acconto, round of the result to 2 decimal places. Eg Rit... := Round( <calculation>, 2 )
problem with a calculation
[code=fw:29xwfch8]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br />#xtranslate <span style="color: #0000ff;">round</span><span style="color: #000000;">&#40;</span><nVal>,<nDec><span style="color: #0...
problem with a calculation
[quote="karinha":386f2swt][code=fw:386f2swt]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br />#xtranslate <span style="color: #0000ff;">round</span><span style="color: #000000;">&#40;</span><nVal>,<n...
problem with a calculation
Hello Silvio, have you seen this line: #xtranslate round(<nVal>,<nDec>) => val(str(<nVal>,20,<nDec>)) ? Best regards, Otto
problem with a calculation
No need for such translates. Clipper, xHarbour and Harbour natively provide function ROUND( nvalue, nDecimals )
problem with a calculation
there is a bug on harbour not run round function but now I tried with #xtranslate round(<nVal>,<nDec>) => val(str(<nVal>,20,<nDec>)) and run ok
problem with a calculation
[quote:29ztupdc]there is a bug on harbour not run round function [/quote:29ztupdc] Is it? May I know what is the bug? Can you give some examples?
problem with a calculation
I wrong topic sorry
problem with a file. RES
Hello, everyone, I'm having a problem with a file. RES, was working with Pella, and my computer slowed down, but now I can not open the file. Res of an error message.Error reading from file 'dlg.res'Invalid or unknown file format.
problem with a file. RES
Hello Dorneles,Check, if you can open dlg.RC !!! with a normal Editor not RES !!!( RES is compiled ).RegardsUwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
problem with a file. RES
Hello ukoenig. I could not find the file dlg.RC
problem with a file. RES
Hello Dorneles,is it possible, to open the RES - file with Resource-workshop ?If it is possible, save the file in RC-format and reload it withYour resource-editor.I allways work with RC-files. If anything is wrong,I can repair it with a normal texteditor.RegardsUwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" ...
problem with circular bmp images in ribbonbar
I have some old programs with via-coral ribbonbar that i want to convert to fivewin ribbonbar. i have a problem with circular bmp images: in via-coral ribbonbar appears: [img:2veimgty]https&#58;//photos-3&#46;dropbox&#46;com/t/2/AADvoLBtotLI4zcn7h8fbByAQhIhcgR6Bs2nr-cuBrQV8g/12/170576012/jpeg/32x32/1/_/1/2/ribbon%20vi...
problem with circular bmp images in ribbonbar
I have some old programs with via-coral ribbonbar that i want to convert to fivewin ribbonbar. i have a problem with circular bmp images: in via-coral ribbonbar appears: [img:fivftxwv]http&#58;//www&#46;valli-italy&#46;net/download/marzio/ribbon_viacoral&#46;jpg[/img:fivftxwv] in fivewin ribbobar appears: [img:fivft...
problem with circular bmp images in ribbonbar
We will try. May we ask how do you find the display of the same bitmaps on buttonbar?
problem with circular bmp images in ribbonbar
thanks for your attention. here are seven bmp icons: <!-- m --><a class="postlink" href="http://www.valli-italy.net/download/marzio/bmp.zip">http://www.valli-italy.net/download/marzio/bmp.zip</a><!-- m --> marzio
problem with circular bmp images in ribbonbar
in buttonabar appears: [img:1145u7eh]http&#58;//www&#46;valli-italy&#46;net/download/marzio/buttonabr&#46;jpg[/img:1145u7eh]
problem with circular bmp images in ribbonbar
Thanks We are checking please.
problem with circular bmp images in ribbonbar
if this can help you to understand the problem, i have posted another button with alfabitmap image. (i have inserted the alfabitmap image 'downadd.jpg' in the same zip file mentioned above). in via-coral ribbonbar: [img:19s4ltg0]http&#58;//www&#46;valli-italy&#46;net/download/marzio/agg_via&#46;jpg[/img:19s4ltg0] in ...
problem with circular bmp images in ribbonbar
please send these two bitmaps also
problem with circular bmp images in ribbonbar
Using the images in the zip I notice the same thing. If I edit the .bmp with pixelformer and save them with Premultiplied alpha checked it looks ok. Here is original Cancella.bmp and Plus.bmp [img:uhw6q1an]http&#58;//www&#46;wwrowland&#46;com/image/original&#46;png[/img:uhw6q1an] Here is the option selected and then th...
problem with circular bmp images in ribbonbar
i have inserted the new alfabitmap in the same zip, download it again. [url:37tsif74]http&#58;//www&#46;valli-italy&#46;net/download/marzio/bmp&#46;zip[/url:37tsif74] i will try your suggestion with photoshop. thanks, marzio
problem with circular bmp images in ribbonbar
i have download pixelformer, in photoshop i don't see the check premultiplied, (i see only 32bit A8 R8 G8 B8) with pixelformer now all is ok. thanks very much, marzio
problem with circular bmp images in ribbonbar
Photoshop is great but it is not always the easiest on bitmaps. Here are a couple of options I read about doing this with Photoshop [quote:1lkjm1pe]One is to apply the alpha as transparency to a layer and use the Layer > Matting > Remove Black Matte function. Unfortunately this doesn't work when using a layer mask, th...
problem with circular bmp images in ribbonbar
many thanks for your details! i think that for alfabitmap i will use Pixelformer. i will try also IconWorks and PhotoImpact. marzio
problem with communication (RS232)
I need to do my permanent communication with the device. If in a query (WriteComm) do not get the response, I have to know. Otherwise, communication stops! [code=fw:3i1aysvy]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"...
problem with communication (RS232)
Try to call SysRefresh() between these two calls: FlushComm(nComRam,1) SysRefresh() WriteComm(nComRam, "$01"+"6"+chr(13))
problem with communication (RS232)
Thanks, but does not work ..
problem with communication (RS232)
WriteComm() returns the amount of written bytes, so you could check it: MsgInfo( WriteComm(nComRam, "$01"+"6"+chr(13)) ) Could you post the code for InitRam() ?
problem with communication (RS232)
[code=fw:ps6bq0q2]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> InitRam<span style="color: #000000;">&#40;</span>mPortRam,oBmpRam,oComUlz,nBitUlz<span style="color: #000000;">&#41;</span><br /><br />   <span style="col...
problem with communication (RS232)
Please notice that you have to do in 32 bits: SetCommState( nComm, cDcb ) instead of: SetCommState( cDcb ) Replace it in your app and try it again, thanks
problem with communication (RS232)
Unfortunately I am using 16 bit (Fivewin 1.92) because the 32 bit version can not be simultaneously open 4 ports if it is appropriate. And that is a big problem. Do you know if you have the latest versions to the same limit? The problem I have now solved by introducing timer that periodically checks nStatus but I'm no...
problem with communication at midnight
do my port through which communication with the controller (ADAM 4000). several times per second the controller sends a request (WRITECOMM (nCommIzl, "$ 02" + "6" + chr (13))) I get a response from him function BytesAtPort( nCommIzl ) local cBufIzl := Replicate(Chr(255),1024) ReadComm( nCommIzl, @cBuf...
problem with create application
when I create same application a got error I USED xHARBOUR /XCC /compercial ver 83 ans FWH ver 200906 Type: C >>>xlink.exe -NOEXPOBJ -MAP -FORCE:MULTIPLE -NOIMPLIB -subsystem:windows -UNMANGLE -LIBPATH:"D:\fwh\lib" -LIBPATH:"D:\xHB.83\lib" -LIBPATH:"D:\xHB.83\c_lib" -LIBPATH:"D:\xHB.83\c_lib\win" "t.obj" "D:\FWH\xhb...
problem with create application
kajot, Please review this thread: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=83275#p83275">viewtopic.php?p=83275#p83275</a><!-- l -->
problem with dbUseArea - resolved -
[b:37cf9syk] DbUseArea( .F. ,"DBFCDX", ::aIdx[ i, 1 ],, .F. ) // not work[/b:37cf9syk] [b:37cf9syk]Error[/b:37cf9syk] [code=fw:37cf9syk]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   Time <span style="color: #0000ff;">from</span> start: <span style="color: #000000;">0</span> hours <span style="co...
problem with dbUseArea - resolved -
any solution ?
problem with dbUseArea - resolved -
Dear Silvio, param i seems to be nil
problem with dbUseArea - resolved -
[quote="Antonio Linares":1qr66h2s]Dear Silvio, param i seems to be nil[/quote:1qr66h2s] ok but How I can resolve ? there is for i:= 1 to... If i>LEN( ::aIdx ) exit endif I not understood before it run ok , now suddenly I went to recompile and it doesn't work how is it possible ?
problem with dbUseArea - resolved -
hi Silvio, have you try a Macro ? [code=fw:1o4m0084]<div class="fw" id="{CB}" style="font-family: monospace;">   xName := ::<span style="color: #000000;">aIdx</span><span style="color: #000000;">&#91;</span> i, <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span><br />   DbUseArea<span sty...
problem with dbUseArea - resolved -
[quote="Jimmy":30dsxle0]hi Silvio, have you try a Macro ? [code=fw:30dsxle0]<div class="fw" id="{CB}" style="font-family: monospace;">   xName := ::<span style="color: #000000;">aIdx</span><span style="color: #000000;">&#91;</span> i, <span style="color: #000000;">1</span> <span style="color: #000000;">&#93;</span><br...
problem with dbUseArea - resolved -
Hi The error comes from :: aIdx -> Len (::aIdx) result 2 This code works <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [code=fw:352gmbuj]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="co...
problem with dbUseArea - resolved -
[code=fw:2y3x1bxg]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">'fivewin.ch'</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"constant.ch"</span><br /><span style="color: #00D7D7;"...
problem with dbUseArea - resolved -
thanks , where was the error ?
problem with dbUseArea - resolved -
Hi Last comma makes an blank line to array, and than aIdx(i,1) is empty for dbusearea where i=2 -works correct for i=1 but len(aIdx)=2 and then crash! ::aIdx := { ; { "CUSTOMER" , { { "Upper(First)" , "First" , "Customer" } ,; { "Upper(Last)" ...
problem with dbUseArea - resolved -
[quote="alerchster":100xs54t]Hi Last comma makes an blank line to array, and than aIdx(i,1) is empty for dbusearea where i=2 -works correct for i=1 but len(aIdx)=2 and then crash! ::aIdx := { ; { "CUSTOMER" , { { "Upper(First)" , "First" , "Customer" } ,; { "Up...
problem with dbsetfilter
I made SELECT AS AS->(DbSetOrder(1)) AS->(DbSetFilter( {|| AS->Giorno=date() }, )) AS->(DbGoTop()) and I wish show only the record have as->giorno = date() it run ok but sometimes it show also one record with another date [img:2pgpuxrs]http&#58;//www&#46;eoeo&#46;it/wp-content/uploads/20...
problem with dbsetfilter
Maybe trying INDEX ON giorno TAG ASS1 or AS->( OrdScope(0, { || dtoc(date()) }))
problem with dbsetfilter
DbSetFilter( <bFilter>, [<cFilter>] ) --> NIL Arguments <bFilter> A code block containing the filter expression. The expression must yield a logical value. <cFilter> The filter expression in form of a character string. Return The return value is always NIL. Description The DbFilter() function defines a filter cond...
problem with dbsetfilter
I recommend you use dtos() in your index, not dtoc() Then for scope you can use AS->( OrdScope(0, { || dtos(date()) })) AS->( OrdScope(1, { || dtos(date()) })
problem with dbsetfilter
Doesn t index sort correctly a date field ? Must we convert it to dtos ? The value type should match both index key and scope and should error if not.
problem with dbsetfilter
His index was using dtoc() which is not very good to sort/index with. If you are going to index on date converted to character string then dtos() is the correct function.
problem with dbsetfilter
[b:18h2g606]perhaps I found the problem[/b:18h2g606] after I open the database and make the filter I call the old record where the archive is stop if nRecNo < AS->(LastRec()) .AND. nRecno != 0 AS->(DbGoTo(nRecno)) <------------------------------------the error else AS->(DbGoTop()) end...
problem with dbsetfilter
but wich is the best ? ( between run ok) SELECT AS AS->(DbSetOrder(1)) AS->( OrdScope(0, { || dtos(date()) })) AS->( OrdScope(1, { || dtos(date()) }) ) AS->(DbGoTop()) or SELECT AS AS-...
problem with dbsetfilter
Silvio, DBSETFILETR is much slower in case there are many records, because the filter ckecks from start- to the end of file. A filter doesn't need a INDEX. That is the difference of the usage. With just a few records there will be no difference. best regards Uwe
problem with dbsetfilter
FOR EACH DAY PERHAPS 5/6 RECORDS THINK AFTER A MONTH PERHAPS 150/160 RECORDS
problem with focus in GET-class
Hello, I notice a problem with the focus in the GET-class which didn't happen in FW16. The code : REDEFINE GET oGET1 VAR FIELD1 PICTURE "XXX" .... REDEFINE GET oGET6 VAR FIELD6 PICTURE "999" VALID !EMPTY(FIELD7) .OR. ACTGEM() REDEFINE GET oGET7 VAR FIELD7 PICTURE "XXX" where : ACTGEM() is a function which opens a ...
problem with focus in GET-class
Michel OGET7:OJUMP := OGET7 OGET7:SETFOCUS(.T.) Hth Richard
problem with focus in GET-class
Richard, Thank you. I'll try it out. Michel
problem with focus in GET-class
[quote="Richard Chidiak":3bqk98t9]OGET7:SETFOCUS(.T.)[/quote:3bqk98t9] As far as I know, SetFocus() method doesn't take any parameters. EMG
problem with focus in GET-class
Enico You're right (as usual) I wrote the sentence a bit quickly... Best regards Richard
problem with fw_adoexporttodbf function
I think there is a bug in FW_AdoExportToDbf function. When it meets a SQL field type "varchar(MAX)", the output dbf is created with a character field (instead of "memo" field) length=0, and without content. To fix this problem, need to declare interactively the structure of dbf at runtime moving ".T." in the third para...
problem with fw_adoexporttodbf function
This is taken care of in later versions of FWH. Try making this modification in \fwh\source\function\adofuncs.prg Locate the function function FWAdoFieldStruct( oRs, n ) Add these lines towards the end of the function just before "return" [code=fw:1c4t52hs]<div class="fw" id="{CB}" style="font-family: monospace;"><br...
problem with fw_adoexporttodbf function
Afther this change i have to recompile adofuncs.prg, right? How? Thank you.
problem with fw_adoexporttodbf function
After this change, you add the revise adofuncs.prg to your project as one of your prg files.
problem with fw_adoexporttodbf function
Linking adofuncs.obj to my project now i receive these errors linking: c:\myproject> if gtgui == gtgui c:\bcc7\bin\ilink32 -Gn -aa -Tpe -s -v @b32.bc Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc. Error: Unresolved external '___CPPdebugHook' referenced from C:\BCC7\LIB\CW32.LIB|xx ...
problem with fw_adoexporttodbf function
Max, Have you recently modified your bcc7 files ? Please check that you are using the right bcc7 libraries
problem with fw_adoexporttodbf function
Max, Please post here your make file or batch file that you use to build your app, thanks
problem with fw_adoexporttodbf function
No Antonio, i have not modify my BCC7 files (far from me! <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> ) . And all other my projects without link to adofuncs.prg are ok with this batch for compile and linking. Perhaps I've been doing something wrong since I added adofuncs(!...
problem with fw_adoexporttodbf function
And this is the content of my c:\BCC7\LIB folder: [code=fw:22r5u76k]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> Directory di c:\BCC7\lib<br /><br /><span style="color: #000000;">15</span>/<span style="color: #000000;">05</span>/<span style="color: #000000;">2019</span>  <span style="color: #000000;...
problem with fw_adoexporttodbf function
Please try to change this part [code=fw:30memjrj]<div class="fw" id="{CB}" style="font-family: monospace;">echo %bcdir%\lib\c0w32.obj + > b32.bc<br />echo adofuncs.obj + > b32.bc<br />echo main.obj, + >> b32.bc<br />&nbsp;</div>[/code:30memjrj] as [code=fw:30memjrj]<div class="fw" id="{CB}" style="font-family: monosp...
problem with fw_adoexporttodbf function
modified and tried, but the same errors remain. Now my b32.bc file has this content: [code=fw:265mdtiy]<div class="fw" id="{CB}" style="font-family: monospace;">main.obj + <br />adofuncs.obj, + <br />MARGINI.exe, + <br />MARGINI.map, + <br />c:\fwh\lib\Fivehx.lib c:\fwh\lib\FiveHC.lib + <br />c:\xharbour\lib\rtl.lib + ...
problem with fw_adoexporttodbf function
Hello I'm facing the same issue when I'm trying to attach a .C file to my project echo ..\..\bcc710\lib\psdk\iphlpapi.lib + >> b32.bc echo ..\..\bcc710\lib\psdk\shell32.lib, >> b32.bc IF EXIST demo.res echo demo.res >> b32.bc ..\..\bcc710\bin\ilink32 -Gn -aa -Tpe -s @b32.bc Turbo Incre...
problem with fw_adoexporttodbf function
I still have the same unresolved problem today
problem with fw_adoexporttodbf function
In case you are using the next version immediately after this post, you need not recompile adofuncs.prg. You can use FWH libraries without any change.
problem with fw_adoexporttodbf function
ok thanks Nages. In other words, I have to buy the updated version today to solve the problem reported here of FW_AdoExportToDbf with SQL field type varchar(max). Is it right?
problem with fw_adoexporttodbf function
Let us propose another way. What is the FWH version you are using now?
problem with fw_adoexporttodbf function
I use FWH rev. 1807 (September 2018)
problem with fw_adoexporttodbf function
Nages, any solution? Thank you.