Search found 372 matches

by damianodec
Fri Feb 05, 2021 1:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and debug
Replies: 1
Views: 1560

Fivewin and debug

Hi,
is there a simple mode to debub a fivewin app?
I now use msginfo() to view field value and logic sequence but is there an interactive way?

Thanks
by damianodec
Wed Dec 30, 2020 2:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: illegal copy protection
Replies: 9
Views: 9575

Re: illegal copy protection

thank you Antonio,
my customers download pgm from www site and I'd like to send them the key that works only on that pc.
by damianodec
Wed Dec 30, 2020 1:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: illegal copy protection
Replies: 9
Views: 9575

illegal copy protection

hi,
I'd like to protect my app.exe builded by FWH from illegal copy.
is there any FWH function?
have I to use others 3rd part program?
how do you protect your pgm?

thank you.
by damianodec
Wed Dec 02, 2020 6:45 am
Forum: All products support
Topic: ModHarbour
Replies: 3
Views: 2990

Re: ModHarbour

Grazie per il chiarimento!
by damianodec
Mon Nov 30, 2020 12:16 pm
Forum: All products support
Topic: ModHarbour
Replies: 3
Views: 2990

ModHarbour

Buongiorno,
per impegni lavorativi non ho potuto seguire il forum in inglese di ModHarbour.
Vorrei riprendere la questione ma mi riesce difficile seguire per bene l'evoluzione.
Nel forum si parla di ModHarbour, Harbourino, Mercury, TWeb... qual è la linea da seguire?
Grazie.
by damianodec
Mon Nov 30, 2020 11:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: OCR
Replies: 1
Views: 525

OCR

hi,
I need to get text from pdf or jpeg.
Is there any FWH example for OCR or is there any 3rd parts libs to link in FWH?

thank you.
by damianodec
Tue Oct 20, 2020 6:47 am
Forum: FiveWin for Harbour/xHarbour
Topic: color of disable object
Replies: 1
Views: 564

color of disable object

hi,
I'd like to change color (font and background) of GET disabled:
Image

how can I do it?

thank you
by damianodec
Tue Oct 20, 2020 6:21 am
Forum: FiveWin for Harbour/xHarbour
Topic: FW_OpenAdoConnection question
Replies: 0
Views: 5069

FW_OpenAdoConnection question

Hi, I need to open two Ado connections. I open first Ado oCn1 and then oCn2. When I close oCn1 in the next oRs := FW_OpenRecordSet( oCn2, cSql, 1 ) I get error: Time from start: 0 hours 0 mins 13 secs Error occurred at: 20-10-2020, 08:09:26 Error description: Error ADODB.RecordSet/6 DISP_E_UNKNOWNNA...
by damianodec
Mon Sep 28, 2020 12:52 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse con FASTEDIT y RECORDSET
Replies: 5
Views: 951

Re: Xbrowse con FASTEDIT y RECORDSET

hi,
my post is a question for mr.Rao
by damianodec
Fri Sep 25, 2020 1:38 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse con FASTEDIT y RECORDSET
Replies: 5
Views: 951

Re: Xbrowse con FASTEDIT y RECORDSET

this is my code: ... tuple = "select cod, qta from tbart where cod = 'ESA10" oRs := FW_OpenRecordSet( oCn, tuple )     DEFINE DIALOG oDlg2 SIZE 1000,600 PIXEL  FONT oFont     @ 40,10 XBROWSE oBrw SIZE -10,-50 PIXEL CELL AUTOCOLS AUTOSORT FASTEDIT ;       RECORDSET oRs ;       HEADERS "...
by damianodec
Tue Sep 22, 2020 1:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WndReadPalBmpEx problem
Replies: 1
Views: 313

Re: WndReadPalBmpEx problem

hi,
I'm solved, it need access by explorer from client to that share folder and it's ok.

thank you!
by damianodec
Tue Sep 22, 2020 1:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WndReadPalBmpEx problem
Replies: 1
Views: 313

WndReadPalBmpEx problem

I have this istruction: ... cNomeFilepng = "\\serverlan\database$\imagefolder\Products\1052.bmp" aBmp := WndReadPalBmpEx(nil, cNomeFilepng)   aBmp returns array with "NOT FOUND" \\serverlan\database$\imagefolder\Products\ is a share folder inside "serverlan" server and ...
by damianodec
Tue Sep 22, 2020 1:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse to excel field date
Replies: 4
Views: 616

Re: xbrowse to excel field date

thank you mr Rao, field was char from select.
by damianodec
Sat Sep 19, 2020 8:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse to excel field date
Replies: 4
Views: 616

Re: xbrowse to excel field date

hi Mr Rao
column date comes from a ado object.
it read a Db2 table from as400.
in the sql select column date is a date field
SELECT code, description, date...

code and description are varchar and date is date field.

thank you.
by damianodec
Fri Sep 18, 2020 7:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse to excel field date
Replies: 4
Views: 616

xbrowse to excel field date

hi, I have a xbrowse with: -------------------------------------------------------------- code description date -------------------------------------------------------------- aaa door 11/07/2020 bbb book 31/07/2020 ... date format is dd/mm/yyyy when I use xbrowse:toexcel function and get my excel fi...