Search found 129 matches

by Giovany Vecchi
Sun Mar 31, 2019 12:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Simulate a click on a document
Replies: 17
Views: 1982

Re: Simulate a click on a document

Hello try this way

Button := ie:document:All:Item("btn red-flamingo",0)
Button:Click(.t.)
by Giovany Vecchi
Wed Mar 20, 2019 2:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: Map under WINDOWS 10
Replies: 3
Views: 603

Re: Map under WINDOWS 10

Hi ! I need to show the map in IE Activex (eg https://www.google.com/maps). In the HTNL script, be sure to specify <meta http-equiv="X-UA-Compatible" content="IE=edge". Under WINDOWS 7 the map is seen perfectly, but under WINDOWS 10, the ActiveX control shows a void. How can I s...
by Giovany Vecchi
Wed Feb 13, 2019 4:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: aGetfiles bug
Replies: 27
Views: 3130

Re: aGetfiles bug

The problem is not in bytes, but in query length. Example: If you select 60 files that are in the c: \ temp folder, it would look like this: "c: \ temp \ archi01.txt" "c: \ temp \ archi02.txt" etc etc. Each file would take 21 len characters ("'c: \ temp \ archi01.txt'")...
by Giovany Vecchi
Wed Feb 13, 2019 5:59 am
Forum: FiveWin for Harbour/xHarbour
Topic: aGetfiles bug
Replies: 27
Views: 3130

Re: aGetfiles bug

Edit the file getfile.c at line 365 and 366. Change the values.

Code: Select all

  //pFile = fw_parWideLen( 8, 512 );
  //pFilter = fw_parWideLen( 1, 800 );
  pFile = fw_parWideLen( 8, 4096 );
  pFilter = fw_parWideLen( 1, 2400 );

 
by Giovany Vecchi
Thu Jan 17, 2019 12:23 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Win10 + ADS server v10 very slow(Solved)-64bit ADS??
Replies: 5
Views: 973

Re: Win10 + ADS server v10 very slow

If the system is being used on the server as well. You have to map the server drive.
You can not open the tables by C: \ DIRECTORY
You have to access by \\ SHARING \ DIRECTORY

If you use data dictionary you have to open with the standard ads port.
\\ SHARING: 6262 \ DIRECTORY
by Giovany Vecchi
Thu Jan 17, 2019 11:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: Win10 + ADS server v10 very slow(Solved)-64bit ADS??
Replies: 5
Views: 973

Re: Win10 + ADS server v10 very slow

Hi, are you using remote ads or local ads?
by Giovany Vecchi
Wed Dec 26, 2018 12:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: HEX color to INT value
Replies: 10
Views: 1231

Re: HEX color to INT value

OI Otto, I do not know if that's what you're looking for. FUNCTION RGB_TO_HTML(f_nColor)     Local cColorReturn := "#", aTmpRGB := {}         aadd(aTmpRGB,decToHex(nRGBRed(f_nColor)))     aadd(aTmpRGB,decToHex(nRGBgreen(f_nColor)))     aadd(aTmpRGB,decToHex(nRGBBlue(f_nColor)))         If ...
by Giovany Vecchi
Thu Dec 06, 2018 6:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Temp table for ADS
Replies: 10
Views: 1728

Re: Temp table for ADS

To delete a table in the data dictionary you must call ADSCACHEOPENTABLES (0) to release the loaded tables. ADSCACHEOPENTABLES (0) AdsDDRemoveTable("TableInDictionari",l_ExcludeFisical) Or DROP TABLE MyTable FROM DATABASE ; Check some routines in: https://github.com/giovanyvecchi/tAdsGit/b...
by Giovany Vecchi
Mon Nov 26, 2018 10:27 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Mr.Antonio, Happy Birthday to you
Replies: 22
Views: 3402

Re: Mr.Antonio, Happy Birthday to you

Felicidades, que tengas muchos años por delante
by Giovany Vecchi
Mon Nov 12, 2018 12:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: EXE passwords are visible in plain
Replies: 27
Views: 3967

Re: EXE passwords are visible in plain

You can change to stay exclusively from your program

Example: ".% B>?" or "67! 9)"
by Giovany Vecchi
Sun Nov 11, 2018 11:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: EXE passwords are visible in plain
Replies: 27
Views: 3967

Re: EXE passwords are visible in plain

To encrypt and be able to save in files, tables fields or inside the executable I use these functions. Try this: cTextEnc: = TXT_ENCRYPT_CHR ("MyText", "TxtOptionSave.txt") Example: 29,45,81,2,112,131 FUNCTION TXT_ENCRYPT_CHR(f_cTxtEncrypt, f_cFileNameTxtSalva, f_lQuebraLinha)   ...
by Giovany Vecchi
Fri Sep 07, 2018 3:54 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Word en una Window
Replies: 12
Views: 1491

Re: Word en una Window

Marcelo Roggeri wrote:Gracias Giovany, tu lo invocas de otra manera pero para el caso puede servir.
Veré como prosigo con el resto
atte Marcelo
Si tienes novedades. comparte con nosotros.
by Giovany Vecchi
Fri Sep 07, 2018 3:26 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Word en una Window
Replies: 12
Views: 1491

Re: Word en una Window

En este código funciona, más necesita implementar algunos recursos que no he tenido tiempo para hacer. Static oWndTst,oObjWord,oWordHWnd FUNCTION OFFICE_WORD_TESTE()    DEFINE WINDOW oWndTst TITLE "FiveWin ActiveX Support"      ACTIVATE WINDOW oWndTst on init OFFICE_WORD_TESTE_INI() ;     ...
by Giovany Vecchi
Wed Aug 22, 2018 1:48 am
Forum: FiveWin for Harbour/xHarbour
Topic: Update FWH programs via SQL-database?
Replies: 15
Views: 2162

Re: Update FWH programs via SQL-database?

The running program will check the downloaded files first. After unpacking, the package in addition to the main executable can contain sql script, another executable to run before the upgrade, or perform processes for database actuation when finalizing the program in exclusive mode. All this is you ...
by Giovany Vecchi
Mon Aug 20, 2018 2:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Update FWH programs via SQL-database?
Replies: 15
Views: 2162

Re: Update FWH programs via SQL-database?

It uses the same executable, downloads a zip file, unzipped into a folder and the program itself creates a .BAT file, and closes the program after it executes the .BAT file. .BAT @ECHO OFF cls ECHO AGUARDE A ATUALIZAÇÃO DO PROGRAMA :APAGA CHOICE /T 1 /C y /CS /D y ATTRIB -R -S -H CARTORIO.EXE DEL CA...