topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Automated Outlook e-mail and sending plain text | Dear Rick,
oMailItem:HtmlBody = cHTML
Use "<br>" instead of Chr( 10 )
and remember to use the typical HTML structure:
<html>
<head>
</head>
<body>
Your text goes here
</body>
</html>
You can use tables, colors, etc. |
Automated Outlook e-mail and sending plain text | Antonio
Thank you .. would you mind giving me a quick example of the plain text conversion ??
Rick Lipkin |
Automated Outlook e-mail and sending plain text | Rick,
not sure if this is what you mean
[code=fw:2xvt4pdg]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">local</span> cHTML<br /><br /><span style="color: #0000ff;">TEXT</span> INTO cHTML<br /> <html><br /> <head><br /> </head><br /> <body><br /> Your <span style="col... |
Automated download of pictures | Hello,
I need to download pic's from a site. I don't have access to ftp, so I will loop all the pics into a browsers and need to hit CTRL-S + ENTER to download the pic.
since it will be lots of img. the window needs to close afther download, and the proces should go further.
In this sample, the loop will show the im... |
Automated download of pictures | This is what I'm using to download a file from a http url:
[code=fw:2mo98fc0]<div class="fw" id="{CB}" style="font-family: monospace;">#command <span style="color: #00C800;">IF</span> <condition> THEN <*statements*> => <span style="color: #00C800;">if</span> <condition> ; <statements> ; end<br /><br /><br /><span styl... |
Automated download of pictures | The above posting is a great tutorial for me and it is a good learning for me.
At the same time, for the sake of interest, I would like to present some simple variations that are possible with the functionality that is already available in FWH.
Our starting point is this:
[code=fw:1acjasfn]<div class="fw" id="{CB}" s... |
Automated download of pictures | Waawh. Again a very nice and quick solution.
I see also the very interesting oneliners of Xbrowser
I didn't find a topic where this onliner (FULL SETUP) is talked about.
I only use xbrowser("datafile") // always dbf files .. for quick browse and export to exel
or else I create a full
@ 330,10 XBROWSE oBrw SIZE... |
Automated download of pictures | [quote="Enrico Maria Giordano":17kaskuu]This is what I'm using to download a file from a http url:
[code=fw:17kaskuu]<div class="fw" id="{CB}" style="font-family: monospace;">#command <span style="color: #00C800;">IF</span> <condition> THEN <*statements*> => <span style="color: #00C800;">if</span> <condition> ; <state... |
Automated download of pictures | It uses TIPClientHttp() that is an xHarbour class.
EMG |
Automated download of pictures | [quote:39svjuuv]AEval( aPics, { |c,i,x| x := AfterAtNum( "/", c ), MEMOWRIT( x, WebPageContents( c ) ), aPics[ i ] := x } )[/quote:39svjuuv]
I don't see the webpagecontents function.
I think that I'm missing several links to the functions library. Do they exist ?
I want to learn what is going on in this oneliner <... |
Automated download of pictures | Programming is (among other things) a trade off between compactness and readability. Don't be tempted by excessive compactness and less readabilty. Oneliner instruction such that is a double cut knife. Use it with care.
EMG |
Automated download of pictures | Strange,
The samples works ok (xbrowse and download) , but with the dbf data the Xbrowse only works, but the download part gives this error
There are 1600 records, all processed ok in the browse, none in the download.
As far as I can Google, it has something todo with the ole Open (maybe to many open connections? ) ... |
Automated download of pictures | [quote:2ol3cdg8]
(DOS Error -2147352571) WINOLE/1007 Argument error: OPEN
[/quote:2ol3cdg8]
This means you have some invalid URLs in the list. You should make sure that these are all valid URLs.
We don't get a runtime error with XBrowse, because Xbrowse uses TRY/CATCH construct.
When you have the URL names in a DBF, i... |
Automated download of pictures | [quote:zabw5ofs]
AEval and DBEval are often used (not me, because i don't know it yet) but i'm sure that 30% of my code is replacebel with these functions.
[/quote:zabw5ofs]
There is no specific advantage of using AEVAL instead of for..next loop or DBEVAL instead of do while !eof() loop.
Experts like Mr Antonio and Mr... |
Automated download of pictures | Mr EMG
I request you to help.
I tried this program using the function you have posted
[code=fw:1ncpka21]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> testweb4<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> ... |
Automated download of pictures | Mr. Rao,
probably the problem is https protocol. You have to use xHarbour tipssl.lib. Sorry, I'm not familiar with it (never used). You'll need of openssl DLLs too.
EMG |
Automated download of pictures | Try this, it works fine here:
[code=fw:3j2rtyyl]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span style="color: #000000;">(</span><span st... |
Automated download of pictures | Thank you.
GETURLTOFILE() is working with http: but not https:
URLDOWNLOADTOFILE() is working well with all and is also much faster than GETURLTOFILE().
The actual reason for my testing is to find a faster alternative to the existing function WebPageContents(). Our requirement is to directly read the contents of the U... |
Automated download of pictures | [quote="nageswaragunupudi":3pwmohqf]Thank you.
GETURLTOFILE() is working with http: but not https:[/quote:3pwmohqf]
This is not true. It would work if tipssl were linked (and opensll DLL's were available).
[quote="nageswaragunupudi":3pwmohqf]URLDOWNLOADTOFILE() is working well with all and is also much faster than GE... |
Automated download of pictures | [quote:2k4f90pw]I was not aware the URLDOWNLOADTOFILE() is much faster than GETURLTOFILE(). Are you made any real test? Can you share the timing result?
[/quote:2k4f90pw]
I used the Tajmahal.jpg ( http not https )
GETURLTOFILE() --> 3.1 to 3.3 secs
Both
URLDOWNLOADTOFILE() and
MEMOWRIT( cFile, webpagecontents( curl )... |
Automated download of pictures | That's only a cache effect. Try calling this before download:
[code=fw:11d8s56a]<div class="fw" id="{CB}" style="font-family: monospace;">DLL <span style="color: #00C800;">FUNCTION</span> DELETEURLCACHEENTRY<span style="color: #000000;">(</span> cUrl AS LPSTR <span style="color: #000000;">)</span> AS BOOL;<br ... |
Automated download of pictures | Mr EMG
You are right.
Without the benefit of cache, GETURLTOFILE() is faster than the other two.
Another observation is that GETURLTOFILE() does not take advantage of cache and other two take advantage of cache if available |
Automated download of pictures | [quote="nageswaragunupudi":3shc5c1u]Mr EMG
You are right.
Without the benefit of cache, GETURLTOFILE() is faster than the other two.
Another observation is that GETURLTOFILE() does not take advantage of cache and other two take advantage of cache if available[/quote:3shc5c1u]
That's true. But use of cache means that ... |
Automated download of pictures | [quote:3vmarzxq]That's true. But use of cache means that the file is not really downloaded, even if it's changed. So use it with caution.
[/quote:3vmarzxq]
Yes. Thanks |
Automatic ASORT()? | Hi,
In:
REDEFINE COMBOBOX o[ O_INCD_RECORD ] VAR v[ O_INCD_RECORD ] ITEMS aIncdRecord ID ID_INCD_RECORD OF o[ O_DLG_GET_INCD ]
From some reason the array, aIncdRecord , is sorted automatically. I don't need it sorted. How can I omit it?
Thanks,
Moshe Yarden |
Automatic ASORT()? | En el recurso puedes definir que no se ordene automáticamente.
saludos |
Automatic ASORT()? | Moshe,
As William tells you, don't use the listbox sort style in the resource file. |
Automatic ASORT()? | Thanks. It works good.
Moshe Yarden |
Automatic RESIZING objects to the system display resolution. | Hi,
I have tried function DISPLAY 2.0 for resizig windows, dialogs … and objects on them … but resizing is going very slow expecially if there are manu objects on the dialog.
So here is my new idea which work perfectly on every display resolution and visual all dialogs windows and objects on them have the same... |
Automatic application termination | Hello, does anyone have a sample function that will automatically terminates an application if a user is not actively using the application. I need this function to automatically close the application in case a user forgets to close application at end of day so we can run of an automatic index routine. Thank you in adv... |
Automatic application termination | Darrell,
Here is an idea. Create a timer that checks the time of day every 30 mintues or so then if it is after a specified time, call wndMain():end().
James |
Automatic application termination | I hope I can help you ....
[code:ye4ssy28]
Local oOut
Local nTime:=0
Local oWnd
define window oWnd
....
DEFINE TIMER oOut INTERVAL 60000 OF oWnd ;
ACTION ( nTime ++, if ( nTime == 1,( MsgInfo( OemToAnsi("Version 1.0 ( Demostration )." + CRLF +;
... |
Automatic close fwh aplication | Hello,I search a solution to close an fwh aplication after a certain time.I know that there was a topic , but i don't found it.Frank |
Automatic close fwh aplication | Frank,You can use a Timer and then call oWnd:End() or simply PostQuitMessage( 0 )<!-- m --><a class="postlink" href="http://forums.fivetechsoft.com/viewtopic.php?t=10028">http://forums.fivetechsoft.com/viewtopic.php?t=10028</a><!-- m --> |
Automatic close fwh aplication | Can we detect how long the aplication is inactive ?Each key stroke or mouse activity should reset the timer to zero ?Frank |
Automatic dialing of phone number on PDA Phone | Half way their from a PC I create a WEB page with <A href="wtai://wp/mc918887766"> 91 888 77 66<u></u></A> using :
if !empty(AGENDWML->TEL)
oText:Add('<A href="wtai://wp/mc;'+STRTRAN(AGENDWML->TEL,' ','')+'">'+TRIM(AGENDWML->TEL)+'<u></u></A>')
oText:Add( '<br/>')
ENDIF
And upload it via FTP to a website then accesin... |
Automatic dialing of phone number on PDA Phone | Paul,
Creo que esto es lo que buscas.
[url:32shc1hx]http://msdn2.microsoft.com/en-us/library/ms880691.aspx[/url:32shc1hx] |
Automatic send via wetransfer | Hi,
One of my programs send emails with ZIP-files as attachement, and is working fine.
The problem is that some clients have problems sending it, because some of their customers only accept receiving ZIP-files via Wetransfer.
Is there a way to send automatic via wetransfer with FiveWin? |
Automatic send via wetransfer | Look de Public API of wetransfer
<!-- m --><a class="postlink" href="https://developers.wetransfer.com/">https://developers.wetransfer.com/</a><!-- m --> |
Automatic send via wetransfer | Incidentally, wetransfer.com is banned in India just a few days back. |
Automatic start of a new window | When i will start a second new window (no mdichild, no parent) automatically on start from the app-window with the INIT clausula, these second window become master and all msg.. are centered on this second window (no good!). When i call this second window with a button on app-window, all is ok. How to start automatical... |
Automatic start of a new window | Easiest way we have found of doing this is via a timer which we activate just before activating the main window
In your on init clause of the main window you set a var like lMainWindowInitComplete := .t. The timer function then checks for this and if it's true create the second window and stop the timer. |
Automatic start of a new window | Thanks Alex! This is good! |
Automatic streamlit apps using AI | [url:2cifoir7]https://share.streamlit.io/streamlit/example-app-streamlit-codex/main[/url:2cifoir7]
[url:2cifoir7]https://github.com/streamlit/streamlit[/url:2cifoir7] |
Automatic updating | Hello,
On a regular base, I put updates of my application on my website. An update always contains 2 files.
I want to build a function in my application which checks if an update is available on my website. If an update is available, the user has to get a message to tell him/her to update.
Does anyone have any idea ... |
Automatic updating | Dear Mr. Michel,
1.Each time your program is run, it should check with your FTP site whether a new exe is available or not. This can be File's date Time.
2. If the exe in FTP is the latest, means there is an update. Now inform the user about this and get the confirmation from the user whether to download the new exe o... |
Automatic updating | Hello Michel,
this is how I do it:
Regards,
Otto
[code=fw:kjq5717x]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">if</span> Memoread<span style="color: #000000;">(</span>cAppPath + <span style="color: #ff0000;">"<span style="color: #000000;">\i</span>ni<span style="co... |
Automatic updating | Hi,
Master Gabriel Maimó created a solution to update via FTP. See at <!-- m --><a class="postlink" href="http://bielsys.blogspot.com/">http://bielsys.blogspot.com/</a><!-- m -->
(actualización automática de aplicaciones).
It is an excelent work done by him.
Regards <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin... |
Automatic updating | Michael,
I do it a bit differently. I created a separate program which runs on the server all of the time. Here is how it works:
1) The program, when started, will check my server to see if an update exists AND if the client is authorized to receive it. If so, the program downloads the update file ( created as a ... |
Automatic updating | Thank you guys, for your answers.
Otto's suggestion works perfectly. |
Automatic updating | mgsoft
the test of biel not run on xharbour |
Automatic updating | Biel's program run perfect under xHarbour and xBuilder. Please use the following code:
[code=fw:38r9r8v4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">///// FUNCIONES PARA CONVERIR HORA A SEGUNDOS, Y VICEVERSA</span><br /><span style="color: #B900B9;">// Nota: me comentan... |
Automatic updating | Good george can you post the sample complete please?
And How I can make If I must go out from a proxy ? |
Automatic updating | Please refer to:
Gabriel Maimó at <!-- m --><a class="postlink" href="http://bielsys.blogspot.com/">http://bielsys.blogspot.com/</a><!-- m --> For further explanation.
He is the person that developed this program.
Regards,
George |
Automatic xbrowse refresh | Hi fivewinners.
Any idea on how to automatically refresh a xbrowse after a few minutes of inactivity (no key stroke)
Any help will be appreciated
Thanks in advance
From Chile
Adolfo |
Automatic xbrowse refresh | Hi ,
You can look at TIMER
DEFINE TIMER oTmr INTERVAL 6000 ACTION (oLbx:Refresh()) OF oWnd
ACTIVATE TIMER oTmr |
Automatic xbrowse refresh | You have also setidleactin({||UDF()})
TestIdle.prg |
Automatic xbrowse refresh | Adolfo:
yo lo hago en una window..
se actualiza cada 30 seg aprox.
la funcion Recargar_Datos( oBrw ), es donde realizo el proceso de carga del xbrowse...
[code=fw:2v32ja9z]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">static</span> nCargo := <span style="color: #000000... |
Automatic xbrowse refresh | Thanks to all ...
Jack
SetIdleAction() is only for 16 bits and can cause app freeze.
Armando.
I need to control the time after the last keystroke is done, not at a defined period of time
SP: Necesito controlar el tiempo despues de la ultima tecla presionada, no a un periodo de tiempo definido.
If the user is workin... |
Automatic xbrowse refresh | Hi,
When i start the xbrowe, i get the time() in a static / global var
When i use the on change, ik get the time in a the same static / global var
In the timer i compre the actual time with the static/gloval var and if it is too long, i do a frefresh() .
Philippe |
Automatically Download File from website | Hello,
I need to create an FWH application that automatically downloads a file from a website so it can be processed. Does anyone have an example that they can share?
Thank you, |
Automatically Download File from website | Try this:
[code=fw:3hooffa8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> GETURLTOFILE<span style="color: #000000;">(</span> cUrl, cFile <span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">LOCAL</span> lOk := .F... |
Automatically Download File from website | If you like some sort of auto-update routine <!-- m --><a class="postlink" href="http://bielsys.blogspot.com/">http://bielsys.blogspot.com/</a><!-- m --> is a useful reference too (listed at <!-- m --><a class="postlink" href="http://wiki.fivetechsoft.com/doku.php?id=fivewin_resources">http://wiki.fivetechsoft.com/doku... |
Automatically Download File from website | Thank you Enrico, that is what I was look for! I appreciate you help! |
Automatically Download File from website | This is the way I download a file :[code=fw:dwgv7sew]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">TRY</span><br /> MsgRun<span style="color: #000000;">(</span><span style="color: #ff0000;">"Downloading ..."</span>,<span style="color: #ff0000;">"One moment please ..."</sp... |
Automatically Download File from website | Thank you Michel! |
Automatically adding date and time of compilation | I wanted some automatic way of including the build date and time in my complied xHarbour/FiveLinux code. The method I came up with is as follows:In the shell script that builds the application I get the system date and time and then pass it to the xHarbour compiler as a #define by using the -d compiler option.The opti... |
Automatically adding date and time of compilation | Doug,Nice solution, thanks for sharing it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Automatically get focus | Hi,
How to make the line under the cursor automatically get focus when moving the mouse cursor over xBrowse ? |
Automatically get focus | [code=fw:246yxt8t]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">lHoverSelect</span> := .T.</div>[/code:246yxt8t] |
Automating Compile and Link | Hi Antonio
I am trying to be able to compile and link code from within a code generator I am writing.
I can run the xHarbour compile step (ie .prg to .c) fine with:
FUNCTION CompilePRG( str_PRGName )
[code=fw:3pgxras9]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">LOCAL<... |
Automating Compile and Link | This works, but isn't ideal:
[code=fw:2lpov6o6]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> CompileC<span style="color: #000000;">(</span> str_CName <span style="color: #000000;">)</span><br /><br /> <span style="color: #B900B9;">// RETURN ExecuteProc... |
Automating Compile and Link | Doug,
I would suggest to compare the source code of RUN with your ExecuteProcess() code:
Basically it does a call to:
iret = system( hb_parc( 1 ) );
[url:3k6qihto]http://www.cit.gu.edu.au/teaching/2501ICT/cgi-bin/man.cgi?system[/url:3k6qihto] |
Automating Compile and Link | I have pretty much solved this one.
The first problem I found was that the new process didn't seem to inherit the current working directory so I replaced the include files that were specified with relative names by absolute names.
I wrote code to get the information returned by pkg-config from a separate process. My... |
Automating Compile and Link | Hi Antonio
Thanks for the wonderfully prompt reply. I was in the middle of finding a solution without having to go to C, but I'll keep that option in mind.
It's a nice outcome from this searching for a solution that I can do a single call to pkg-config and use it for each individual file to be compiled.
I don't kno... |
Automating Compile and Link | Doug,
Nice to see that you are improving and moving forward on your Linux development <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Are you working on a visual make tool ? |
Automating Compile and Link | Hi Antonio
I am building the engine to automatically build applications produced by my code generator. Currently my code generator builds a shell script that can build the application. But that is an extra step which I am working on eliminating. Originally my code generator was based on a series of functions (trans... |
Automating Compile and Link | Hi Antonio
Current Structure of Compile and LInk back end is:
Class SSFile => encapsulates a file and its attributes, especially date and time Updated
Class SSPRGFile => derived from SSFile. Adds behaviour specific to .prg files, mainly extension
Class SSCFile => derived from SSFile. Adds behaviour specific to .c fi... |
Automating Compile and Link | Hi Antonio
Whilst the compile and link code is not nice and clean as yet, the generator can now take an application definition (as an xml file), generate the .prg code, compile that code and link it to produce an executable and run the executable it has produced all in a single process. I have code to work out which ... |
Automating Compile and Link | Doug,
it would be great of you could post some screenshots of what you are doing, how the apps look, etc. Thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Autoradiobutton and FWH | Hello,I have the following problem in my application:I have defined AUTORADIOBUTTON in resource (DLL), when I select any autoradiobutton option, the text that define this autoradiobutton disappear, even the text disappear in other lines.Had have someone this problem ?. If yes, please could share the solution?.Environme... |
Autoradiobutton and FWH | alfonso, Change autoradiobutton in .rc /dll into radiobutton .Shuming Wang |
Autoradiobutton y fwh | Hola,Se me presenta el problema siguiente:Tengo definido AUTORADIOBUTTON en recursos (DLL), cuando en el programa selecciono cualquier opcion de radiobutton desaparece el texto que lo define, incluso desaparece en otras lineas de radiobutton.¿Alguien ha tenido este problema ?. Si lo ha tenido, ¿como lo ha solucionado?... |
Autoradiobutton y fwh | Hola,Cambia de AUTORADIOBUTTON para RADIOBUTTON a ver se te funciona.Saludos, |
Autoradiobutton y fwh | Hola KleyberHe cambiado a RADIOBUTTON y no funciona, es decir desaparece el texto.Saludos, |
Autoradiobutton y fwh | Muestra una imagen.Y Como haces. El codigo fuente y un .rc de la pantalla.Saludos. |
Autorewind or defined loops using ""WMPlayer.OCX"" ? | I'm using
[color=#0000FF:3ri5vuo5][b:3ri5vuo5]oActiveX = TActiveX():New( oDlg, "WMPlayer.OCX" )[/b:3ri5vuo5][/color:3ri5vuo5]
is it possible to define < autorewind > or a loop-value
oActiveX:Settings:Volume = 7 // works
oActiveX:AutoRewind = .T. // <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=... |
Autorewind or defined loops using ""WMPlayer.OCX"" ? | Hello,
looks like the correct way is:
[code=fw:301t80rg]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oActiveX : <span style="color: #000000;">Settings</span>:<span style="color: #000000;">setMode</span><span style="color: #000000;">(</span><span style="color: #ff0000;">"loop"</span>,.T.<span sty... |
Autorewind or defined loops using ""WMPlayer.OCX"" ? | Antonino,
thank You that works
[quote:337v7e9o]oActiveX:Settings:SetMode("loop",.T.)[/quote:337v7e9o]
regards
Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Autorewind or defined loops using ""WMPlayer.OCX"" ? | Dear Antonino,
oActiveX:Settigs:setMode('loop',.T.) is working.
I cannot find the property of nTop, nLeft, nHeight, nWidth. How can I setting the position.
Thanks in advance,
Dutch
[quote="AntoninoP":392rt5el]Hello,
looks like the correct way is:
[code=fw:392rt5el]<div class="fw" id="{CB}" style="font-famil... |
Autorewind or defined loops using ""WMPlayer.OCX"" ? | Dear All,
Please ignore my question, I got it now.
[quote="dutch":1tz4hybq]Dear Antonino,
oActiveX:Settigs:setMode('loop',.T.) is working.
I cannot find the property of nTop, nLeft, nHeight, nWidth. How can I setting the position.
Thanks in advance,
Dutch
[quote="AntoninoP":1tz4hybq]Hello,
looks like the c... |
Autorotacion | Buenas.
Queda mal el centrado al hacer autorotacaion en el dispositivo.
[url:20uzwmtb]https://drive.google.com/file/d/0By3GyDUP8Ga5RjhzaENOMnhBZU44OWlaQzRxTEh2T2pNNzAw/view?usp=sharing[/url:20uzwmtb] |
Autorotacion | fix |
Autorotacion | No se ve bien tu imagen, puedes volver a ponerla ? gracias |
Autorotacion | Seguramente se nos notifique con un evento y haya que usarlo para hacer un oDlg:Center()
gracias! |
Autosort no funciona con Object (MySql)? | Amigos.
Tengo el siguiente codigo (xBrowse con TMySql) que da error al usar AUTOSORT:
[code=fw:2hai6oke]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">XBROWSE</span> oBrw <span style="color: #0000ff;">ID</span> <span style="color: #... |
Autosort no funciona con Object (MySql)? | Holas.
Si hago:
[code=fw:1lmh0etf]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">bSeek</span> := <span style="color: #000000;">{</span> |c| MysqlSeek<span style="color: #000000;">(</span> oBrw:<span style="color: #000000;">oMysql</span>, c <span style="color: #0000... |
Autosort no funciona con Object (MySql)? | It appears you are using modified xbrowse.prg, because line no.11450 in the original xbrowse.prg of FWHX 12.03 is not in method SetOrder.
It appears that you are getting error at this line in xbrowse.prg: (line 11287 in the original xbrowse.prg)
[code=fw:3so27vz9]<div class="fw" id="{CB}" style="font-family: monospace... |
Autosort no funciona con Object (MySql)? | [code=fw:21ygiagd]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBalanza:=oServer:<span style="color: #000000;">Query</span><span style="color: #000000;">(</span><span style="color: #ff0000;">" SELECT * FROM "</span> + cBalanza + <span style="color: #ff0000;">" WHERE saldoant<>'0' OR movdebe... |
Autosort no funciona con Object (MySql)? | After you assigned a character value to oBalanza:cSort, how is it getting reset to NIL on its own? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.