topic
stringlengths
1
63
text
stringlengths
1
577k
Another problem with dialog boxes
Michel,You can hide the dialogbox instead of ending it:ACTIVATE DIALOG oDlg NOWAIT VALID ( oDlg:Hide(), .T. )Next time you want to use it, don't create it again. Simply do oDlg:Show().Lets see if this helps, if not, we will find another way <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /...
Another problem with dialog boxes
Michel,I guess this is what is going on: the word dialog is child of the clock dialog, so when you End() the clock, the word is also ended.Do it this way:DEFINE DIALOG ClkDlg OF oWndMain...DEFINE DIALOG LnDlg OF oWndMainthis way, the word dialog is not a child of the clock dialog
Another problem with dialog boxes
Antonio,That was indeed the problem.I changed my code and anything is running fine now.Thanks a lot. You've been a great help.What a fantastic product FiveWin is.See you.
Another problem with new XbrGetDate - RESOLVED!!!
I have this Get [code=fw:1de2fbf8]<div class="fw" id="{CB}" style="font-family: monospace;">@ <span style="color: #000000;">08</span>,<span style="color: #000000;">144</span> <span style="color: #0000ff;">GET</span> aGet<span style="color: #000000;">&#91;</span><span style="color: #000000;">3</span><span style="color:...
Another problem with new XbrGetDate - RESOLVED!!!
ahh ok there is error with [b:2rz9iiog]GetPvProfString [/b:2rz9iiog] command on HArbour not run
Another problem with new XbrGetDate - RESOLVED!!!
resolved
Another test with FW_DbfToArray
then the test helped from Uwe on this topic [url:21hs6bvl]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=3&t=37464#p223944[/url:21hs6bvl] I thinked to not delete the records but add a new field TACANCEL to set wich record i can delete on second time because then must be seen by final user befo...
Another try for using the FWH debugger - some more questions
Hello, Until now I never had any succes in using the FWH debugger. This is the MAK-file I use:[code=fw:29b7d9nq]<div class="fw" id="{CB}" style="font-family: monospace;">#Borland make sample, <span style="color: #000000;">&#40;</span>c<span style="color: #000000;">&#41;</span> FiveTech Software <span style="color: #0...
Another try for using the FWH debugger - some more questions
add /b in this line [code=fw:1spu936t]<div class="fw" id="{CB}" style="font-family: monospace;">$<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\bin\harbour $< /N /b /W0 /V /Oobj\ /I$<span style="color: #000000;">&#40;</span>FWDIR<span style="color: #000000;">&#41;</span>\incl...
Another try for using the FWH debugger - some more questions
Thank you very much for your help.
Another try for using the FWH debugger - some more questions
Hello, As told before, I am able know to use the FWH debugger. Earlier, I used the debugger of xHarbour Builder, but some parts were not working correctly. To build in a stop, I put "ALTD()" in my source. The debugger stopped automatically at every ALTD(). In the FWH debugger, ALTD() doesn't seem to work. What can b...
Another try for using the FWH debugger - some more questions
Dear Michel, AltD( 1 ) // Enables the debugger. Press F5 to go MsgInfo( "debugger enabled" ) AltD() // Invokes the debugger MsgInfo( "debugger invoked" )
Another try for using the FWH debugger - some more questions
Fantastic, Antonio. That is the info I needed.
Another try for using the FWH debugger - some more questions
What is de debugger going to do ? Why use it ?
Another try for using the FWH debugger - some more questions
Mark, With a debugger, the source is shown while it is executing. It is a very easy utility to help you find a logical error.
AnsiToOem()
Buenas! como sabéis, estoy migrando mi aplicación clipper a Harbour + Fivewin. Se me ha producido el problema de incompatibilidad en los caracteres de Dos y Windows, al trabajar ambas aplicaciones sobre las mismas bases de datos. Mi pregunta es si existe algún SET o algo, que pueda hacer que mi aplicación Fivewin trab...
AnsiToOem()
David, A nivel de RDD de Harbour no hay ningun SET o parecido (que sepamos), pero a nivel de FWH si usas la Clase TDataBase tienes el dato lOemAnsi que automaticamente hace las conversiones: oDataBase:lOemAnsi = lOnOff
AnsiToOem()
Antonio, Muchas gracias, lo conocía pero me es insuficiente. Intentaré buscar algo a ver si en Harbour doy con algo, sino pues no me queda otra opción que usar la clase tDataBase. Muchas gracias!
AnsiToWide function
Antonio, Is there possible in a new build to use AnsiToWide function ? Previously this function is exists visible - now this don't. Below is sample where I use this useful function. Program source probable must compile with -TP switch. Compile without this switch generates many compilation errors. Regards Pawel Comp...
AnsiToWide function
Pawel, Don't use clarm.exe -TP flag. Here this code works fine: MsgInfo( WideToAnsi( AnsiToWide( "Hello" ) ) ) // Hello is shown
AnsiToWide function
Antonio, This "error" is warning but compilation with -TP don't generates any warning and erros. Pawel
AnsiToWide function
Antonio, This is my library what I use in my program. This use DataReelCe library for HTTP download file. Where I compile it without -Tp switch error log is created. Below a source and sample. Regards Pawel // compilation error Lib03.C c:\vce\include\datareelce\strutil.h(134) : error C2061: syntax error : identifier...
AnsiToWide function
Pawel, Your above code is leaking memory. BTW you may use FWPPC WinExec(). This is the fix for your code: [code:128y7i5n] LPSTR lpExe = hb_parc &#40;1&#41;; LPSTR lpCmd = hb_parc &#40;2&#41;; LPWSTR lpWExe = AnsiToWide&#40; lpExe &#41;; LPWSTR lpWCmd = AnsiToWide&#40; lpCmd &#41;; &#46;&#46;&#46; ...
AnsiToWide function
Pawel, What code is it there ? c:\vce\include\datareelce\strutil.h(134) : error C2061: syntax error : identifier 'gxwchar' c:\vce\include\datareelce\strutil.h(134) : error C2059: syntax error : ';'
AnsiToWide function
Antonio, Yes, you are right. WinExec provides method to stop this function above time running limit (I use this function with GPRS connection, in some situation break connection is only way to back to execution program code) ? What is the method to compile and link my sample code with your change in current FWPPC buil...
AnsiToWide function
Pawel, A simpler solution <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Current Harbour (the one used by FWPPC) lets you mix C and C++ code. So you can compile your code with -TP to avoid the errors and simply use this: extern "C" { LPWSTR AnsiToWide( LPSTR ); }
Antepo averle prima Immagini
empo fa ho avuto tra le mani un esempio di anteprima immagini fatto non so se in Harbour/Fw32 o in xbase, ora che mi serve non me lo ritrovo. C'e' gia' o si puo fare in una choiche/listbox con selezione multipla ed anteprima immagini ? Mi serve per potere selezionare da una cartella piuì immagini dopo averle viste in...
Antepo averle prima Immagini
Prova la listview. Oppure usi dei controlli TImage. EMG
Antepo averle prima Immagini
E dove la trovo la listview ? Ho provato in tutto il fw24 e fwh24 Grazie
Antepo averle prima Immagini
Troppo vecchia, non c'era, credo. EMG
Antepo averle prima Immagini
C'era la classe TAlbum ma non funzionava ultimamente perchè bisognava cambiare parametri di Hbitmap ecc. anch'io non ne ho trovato una soluzione ma credo che se EMg l'avesse in un battitobaleno riuscira a metterla a posto anche per i l32 bt Credo che la classe la si può scaricare da <!-- w --><a class="postlink" href...
Antepo averle prima Immagini
trovata <!-- m --><a class="postlink" href="http://www.fivewin.info/html/downloads.php?category=FiveWin">http://www.fivewin.info/html/downloads. ... ry=FiveWin</a><!-- m --> users contributions&id=182 fatemi sapere se l'avete aggiustata
Antepo averle prima Immagini
La sto guardando ma c'è un problema: usa una funzione chiamata CreateCBmp() che non esiste né in FW né in FWH e che non so cosa faccia e quindi con cosa sostituirla. EMG
Antepo averle prima Immagini
Risolto: era una chiamata a CreateCompatibleBitmap(). Ora funziona (FWH) ma le anteprime sono un po' piccoline. A voi sistemarle. Potete scaricarla da qui: [url:1qy5hrgd]http&#58;//www&#46;emagsoftware&#46;it/talbum&#46;zip[/url:1qy5hrgd] EMG
Antepo averle prima Immagini
grazie e naturalmente ( ho visto) ora funziona con freeimage.dll
Anteprima di stampa
percchè con le recenti fw libs la barra dell'anteprima è grigio scuro ? Perchè non prende il colore tipo 2007 o 2010 ?
Anti-piracy using a USB pendrive
FWH 7.12 is going to provide several functions to use a USB pendrive as anti-piracy protection system. Please run this test with a pendrive (plugged or unplugged): <!-- m --><a class="postlink" href="http://www.hotshare.net/file/16342-6394189d08.html">http://www.hotshare.net/file/16342-6394189d08.html</a><!-- m --> T...
Anti-piracy using a USB pendrive
New test: <!-- m --><a class="postlink" href="http://www.hotshare.net/file/16342-6394189d08.html">http://www.hotshare.net/file/16342-6394189d08.html</a><!-- m --> Thanks!
Anti-piracy using a USB pendrive
Antonio, Now I'm getting a Serial-nr on both USB-drives that did't return a number with the previous test!!!! Marc
Anti-piracy using a USB pendrive
Does it works in Win 98/me? Regards, Roberto Parisi
Anti-piracy using a USB pendrive
Marc, Thanks for your feedback <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Anti-piracy using a USB pendrive
Roberto, > Does it works in Win 98/me? We have not tested it yet under Win 98/Me
Anti-piracy using a USB pendrive
No, it doesn't work on Win98/Me, serial number is empty. Do you us wmi to read values? I tried it too and I got the same result. Regards, Roberto Parisi
Anti-piracy using a USB pendrive
Roberto, > No, it doesn't work on Win98/Me, serial number is empty. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> Well, at least it is usefull for other Windows versions > Do you us wmi to read values? I tried it too and I got the same result. Part of the code is based ...
Anti-piracy using a USB pendrive
Here you have a full working sample: <!-- m --><a class="postlink" href="http://www.hotshare.net/file/16421-89987245cf.html">http://www.hotshare.net/file/16421-89987245cf.html</a><!-- m --> [url=http&#58;//imageshack&#46;us:1w70ce0n][img:1w70ce0n]http&#58;//img267&#46;imageshack&#46;us/img267/5065/protectad0&#46;png[...
Anti-piracy using a USB pendrive
Dear Antonio, This can be a great boon. I soon will have to update my FWH ! Keep it up. With best regards, Milan.
Anti-piracy using a USB pendrive
there is a code source for it ?
Anti-piracy using a USB pendrive
Antonio. Sorry , but cloning USB drives, even with the serial is easy to do in LINUX, just use DD to acomplish the task dd if=all.img of=/dev/sda1 For creating a FULL image... dd if=/dev/sda1 of=all.img for "recreating" the drive... dd if=dev/sda of=sdb for doing it on the fly... Easy, since it just copy the devi...
Anti-piracy using a USB pendrive
Adolfo, did you tried yourself to read the clone and the original and did you compare all the values? I tried to clone with Ghost and Acronis always on a WINDOWS system but the S/N was different. I am curious to hear from you. Best regards, Otto
Anti-piracy using a USB pendrive
Adolfo, The USB serial code is from hardware, not from software. So it can't be copied.
Anti-piracy using a USB pendrive
Antonio, may I try too? Thanks
Anti-piracy using a USB pendrive
Marco, The source code and sample are included in FWH 8.01
Anti-piracy using a USB pendrive
Ok Thanks
Anti-piracy using a USB pendrive
Dear Antonio, I runned protect.exe and it made a info.bin But when I click on this key I can see the files on this usbkey and not ask me a password How run protect?
Anti-piracy using a USB pendrive
Silvio, samples\protect.prg checks that a specific USB pendrive is plugged in. Its not related to the files in the pendrive. Its related to protect (anti-piracy) a PC EXE checking for a specific pendrive plugged in.
Anti-pirateria usando un pendrive USB
FWH 7.12 va a proporcionar varias funciones para usar un pendrive USB como sistema de protección de copia ilegal de aplicaciones: Por favor probad este EXE con un pendrive (conectado y desconectado): <!-- m --><a class="postlink" href="http://www.hotshare.net/file/16336-20565867c3.html">http://www.hotshare.net/file/1...
Anti-pirateria usando un pendrive USB
hice la prueba --------------------------- Information --------------------------- USB pendrive info: drive: E:\ Serial: 7 --------------------------- OK --------------------------- Saludos. P.D. No es chico el numero "7" como serial?
Anti-pirateria usando un pendrive USB
Pedro, Vuelve a probar con este por favor: <!-- m --><a class="postlink" href="http://www.hotshare.net/file/16342-6394189d08.html">http://www.hotshare.net/file/16342-6394189d08.html</a><!-- m --> gracias!
Anti-pirateria usando un pendrive USB
Lo he probado con varios pen drive, en diferentes PC, formateando, ... y parece que funciona ok. Me devuelve los serial de todas discos estraibles, incluso de las tarjetas de memoria SD. El string tipo "0C60DA60E2B1E9A7"
Anti-pirateria usando un pendrive USB
Aqui teneis un ejemplo totalmente operativo: <!-- m --><a class="postlink" href="http://www.hotshare.net/file/16421-89987245cf.html">http://www.hotshare.net/file/16421-89987245cf.html</a><!-- m --> [url=http&#58;//imageshack&#46;us:1wdo6p33][img:1wdo6p33]http&#58;//img267&#46;imageshack&#46;us/img267/5065/protectad0&...
Anti-pirateria usando un pendrive USB
Antonio: Enhorabuena por el aporte!!. Me gustaría hacerte una sugerencia. En concreto, la mochila debe poder ser utilizada para proteger varias aplicaciones de modo simultáneo y, a su vez, con posibilidad de indicar el tipo de versión (básica, pro, red, etc). Sería más o menos: a) A la hora de programarla, se crear...
Anti-pirateria usando un pendrive USB
Moises, Como FWH 7.12 incluirá todo el código fuente de la protección, entonces cada uno puede modificarla como desee <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Al usar una clave encriptada, nadie -excepto quien tenga el password- podrá saber lo que se guarda en el f...
Anti-pirateria usando un pendrive USB
Buenisimo!! En la misma llave ahora me da esta info: --------------------------- Information --------------------------- USB pendrive info: drive: E:\ Serial: 8945FFB --------------------------- OK --------------------------- Saludos
Anti-virus security warning when calling ""SetHelpFile( ... )
Hi, My anti-virus (ZoneAlarm, version 9.3, the latest...) is giving me a serious security warning when the SET HELPFILE function is called. Image of the warning: [img:2u1o7dk9]http&#58;//img294&#46;imageshack&#46;us/img294/4542/zasecuritywarning&#46;jpg[/img:2u1o7dk9] I was able to isolate the call of the security w...
Anti-virus security warning when calling ""SetHelpFile( ... )
Claude, Many thanks for your feedback, We are reviewing it to find what may be the reason for the anti-virus alert. Also we have detected some typos in source\winapi\help32.prg. These are the required changes: [code=fw:1vu8iuop]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">s...
Anti-virus security warning when calling ""SetHelpFile( ... )
Claude, In source\winapi\help.c could you please comment out these lines: [code=fw:cy45pqkp]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">static</span> void SetF1Menu<span style="color: #000000;">&#40;</span> void <span style="color: #000000;">&#41;</span><br /><span style="co...
Anti-virus security warning when calling ""SetHelpFile( ... )
Hi Antonio, Many thanks for the quick reply. I did both changes (help32.prg and help.c). When I compile, i get the following warning: [code=fw:cfspqyf7]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Borland C++ <span style="color: #000000;">5.5</span><span style="color: #000000;">.1</span> <span sty...
Anti-virus security warning when calling ""SetHelpFile( ... )
Claude, You can safely ignore those warnings. No problem at all with them <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Many thanks for your feedback!
Anti-virus security warning when calling ""SetHelpFile( ... )
Cool ! Thanks again.
AntiDuplicate
Hi, Is anyone out there successfully using AntiDuplicate with FWH ? [url:1ugonmup]http&#58;//www&#46;alkonost&#46;com/antiduplicate/[/url:1ugonmup]
AntiDuplicate
Hola, did you test protect.prg from fivewin sample directory, I think this can do the same what AntiDuplicate do regards Marcelo
AntiDuplicate
Yes I have used protect.prg the problem with it is that it requires the user to have Administrative Rights for it to function correctly. AntiDuplicate does not require Admin Rights.
AntiDuplicate
The software comes with samples for the following, maybe someone can convert to FWH ? Borland C++ Builder C#.net Delphi FoxPro Visual Basic 6 Visual Basic.net Visual C++ Ver 5 Visual C++.net Please let me know and I can email you the sample for your language.
AntiDuplicate
Jeff, Could you please post here the example source code for Borland C++ Builder ? thanks
AntiDuplicate
Hello Jeff i tested protect.prg with standar user, without administrator privileges, and run fine to me i hope other user can test [url:1ylt29yc]http&#58;//www&#46;sitasoft&#46;net/fivewin/samples/protect&#46;zip[/url:1ylt29yc]
AntiDuplicate
Hi Antonio, You can get the files for Borland C++ Builder here: [url:37lmczz6]http&#58;//www&#46;can-soft&#46;net/BCB&#46;zip[/url:37lmczz6]
AntiDuplicate
Hi Daniel, I think there is a registry setting or something that can help but I have not found it. I have tested on a few systems ... one system would work regardless of users access rights while all the others would not. I have been testing this on Windows XP systems.
AntiDuplicate
Hi Antonio, Any luck with the conversion.
AntiDuplicate
Jeff, What is the name of the AntiDuplicate DLL file ?
AntiDuplicate
It is Aas973.dll Please check your gmail account ... I sent you some files.
AntiDuplicate
Jeff, Please try this: [code=fw:3h82tty1]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span> Fddig1<span style="color: #000000;">&#40;</span> <span style="color: #000000;">0</span> <span style="color: #000000;">&#41;<...
AntiDuplicate
It returns "nil" with or without the usb memory stick connected. I sent an email to your gmail account. It has a link to some additional files that should help.
AntiDuplicate
Jeff, Please provide a url to download just the DLL, thanks Or simply create a DEF file from it and publish it here: c:\bcc582\bin\impdef.exe name.def name.dll name.def will contain all the DLL exported functions names. It is an ascii file that you can copy here
AntiDuplicate
Antonio, here it is: [code=fw:2uxjt3i5]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">LIBRARY</span>     AAS973.DLL<br /><br />EXPORTS<br />    Accdd1                         @<span style="color: #000000;">1</span>   ; Accdd1<br />    Accdd2                         @<spa...
AntiDuplicate
Jeff, Ok, thanks. They are using mixed upper and lower case symbol names. Then please try this code: [code=fw:1r507y6v]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span> Fddig1<span style="color: #000000;">&#40;</s...
AntiDuplicate
With nothing in the usb drive we get: 2 With a USB stick in but not programmed we get: 1 With a valid USB stick we get: 7 With a copied USB stick we get: 7
AntiDuplicate
Jeff, ok, thanks, we are progressing <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
AntiDuplicate
Jeff, Please try now this code: [code=fw:27v93a4d]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> acck := Space<span style="color: #000000;">&#40;</span> <span style="color: #000000;">100</span> <span style="color: #000000;">&#41;</span><br /><br ...
AntiDuplicate
The "copy" returns: .f. The "valid" one returns: .f. The non programmed one returns: .f. Nothing in the USB slot returns: .f.
AntiDuplicate
Jeff, Being not empty means that the DLL is placing some info inside the variable acck. So now, please inspect what there is inside it, in each case: [code=fw:2pqwiz65]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   <span style="color: #00C800;">for</span> n = <span style="color: #000000;">1</span>...
AntiDuplicate
Nothing connected: 197 218 200 99 245 25 138 175 107 43 20 89 14 148 136 200 162 93 109 46 8 207 237 5 124 75 16 ...
AntiDuplicate
It looks like the numbers change every time I run the program. Valid Run 1: 237 34 150 218 38 250 85 235 6 144 164 164 251 98 138 209 55 135 68 43 52 231 ...
AntiDuplicate
Hi Antonio, Any success ? or is this just something that will not work with FWH ?
AntiDuplicate
Jeff, I have been busy with FWH 64 and the new Class TExplorerBar and had no time to continue. Lets see if we can make some more progress on this <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
AntiDuplicate
Hi Antonio, No rush ... I was just following up. I am currently in Quebec City. When I return home I will be busy packing (I move to my new house on June 25th) so my time too is limited these days <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
Antiguas News de FW
Hola (creo que para Antonio es esto), Quisiera saber si es posible accesar a las antiguas News de FW que existian antes de este foro, pues es una "base de conocimiento" muy amplio, que me gustaría consultar. Muchas veces, he realizado una consulta - en el pasado - que me fue contestada en esas news, pero ya no tengo ...
Antiguas News de FW
Julio, Ya no están accesibles. Yannis nos hizo el favor de pasarlas a DBFs, con lo que podríamos alojar las DBFs en <!-- w --><a class="postlink" href="http://www.hyperupload.com">www.hyperupload.com</a><!-- w --> y permitir su descarga para quien quiera consultarlas <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif...
Antiguas News de FW
Gracias Antonio, No sabía que Yannis había hecho esto. Me gustaría entonces tener acceso a esa(s) DBF, pues como menciono, la participación de todos es un material invaluable como base de conocimiento. Estaré entonces a la espera de que lo suban a hyperload... Gracias adelantadas,
Antiguas News de FW
Julio, Aquí están: <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=2788">http://fivetechsoft.com/forums/viewtopic.php?t=2788</a><!-- m -->
Antiguas News de FW
Gracias Antonio, Abrazos,