Search found 76 matches
- Mon Aug 24, 2015 1:57 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: size of a resource
- Replies: 2
- Views: 649
size of a resource
How can I read the size and the font from an existing dialog-resource in a RES or DLL file?
- Tue Jul 14, 2015 11:34 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: DBF TEMPORARY
- Replies: 50
- Views: 14331
Re: DBF TEMPORARY
Hb_DbCreateTemp is a really good feature. I did not know this before. Is there also the possibility to create an index file and open?
- Sat May 30, 2015 5:47 am
- Forum: All products support
- Topic: Datev Schnittstelle
- Replies: 3
- Views: 2521
Re: Datev Schnittstelle
Hallo Thomas,
besten Dank für das Angebot. Ich habe mir inzwischen die DATEV-Schnittstellenbeschreibungen selbst besorgt und entsprechend eingebunden.
Viele Grüße
besten Dank für das Angebot. Ich habe mir inzwischen die DATEV-Schnittstellenbeschreibungen selbst besorgt und entsprechend eingebunden.
Viele Grüße
- Thu Apr 30, 2015 12:43 pm
- Forum: All products support
- Topic: Datev Schnittstelle
- Replies: 3
- Views: 2521
Re: Datev Schnittstelle
Hallo Stefan,
hat sich auf Ihre u.a. Anfrage jemand gemeldet? Ich stehe nämlich nun vor der gleichen Aufgabe.
hat sich auf Ihre u.a. Anfrage jemand gemeldet? Ich stehe nämlich nun vor der gleichen Aufgabe.
- Wed Feb 18, 2015 7:48 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel ActivePrinter
- Replies: 2
- Views: 552
Re: Excel ActivePrinter
Thank you, Enrico, it works well !
- Mon Feb 16, 2015 1:13 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel ActivePrinter
- Replies: 2
- Views: 552
Excel ActivePrinter
How can I use a special printer (not the default one) with oExcel:Print() ?
I know, that I can get the active printer with oExcel:ActivePrinter
But when I set another printer with
oExcel:ActivePrinter := "Adobe PDF" or other,
I get an error Excel.Application 0000 S_OK: _ACTIVEPRINTER
Is there ...
I know, that I can get the active printer with oExcel:ActivePrinter
But when I set another printer with
oExcel:ActivePrinter := "Adobe PDF" or other,
I get an error Excel.Application 0000 S_OK: _ACTIVEPRINTER
Is there ...
- Thu Jan 15, 2015 3:26 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel Hyperlink
- Replies: 13
- Views: 1943
Re: Excel Hyperlink
Many thanks to India. Everything now works exactly as I have wished for. Thanks for the effort!
Best Regards
Best Regards
- Thu Jan 15, 2015 2:08 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel Hyperlink
- Replies: 13
- Views: 1943
Re: Excel Hyperlink
Wow ... with ";" it works now with an URL !!!
Thank you very much!
But I wanted to create an eMail-hyperlink to an Excel-cell
'=HYPERLINK("Test@abc.de";"Frank")'
doesn't work for eMail. Can you help me once more?
Thank you very much!
But I wanted to create an eMail-hyperlink to an Excel-cell
'=HYPERLINK("Test@abc.de";"Frank")'
doesn't work for eMail. Can you help me once more?
- Thu Jan 15, 2015 1:50 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel Hyperlink
- Replies: 13
- Views: 1943
Re: Excel Hyperlink
Country, ListSep
49.00
;
49.00
;
- Thu Jan 15, 2015 1:13 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel Hyperlink
- Replies: 13
- Views: 1943
Re: Excel Hyperlink
Thank you very much for your help, but the error are the same.
oExcel := ExcelObj()
oBook := oExcel:WorkBooks:Add()
oSheet := oBook:ActiveSheet
oSheet:Cells( 4,2 ):Value := '=HYPERLINK("http://forums.fivetechsoft.com/", "FiveTech Forums" )'
oExcel:Visible := .t.
I get still the following error ...
oExcel := ExcelObj()
oBook := oExcel:WorkBooks:Add()
oSheet := oBook:ActiveSheet
oSheet:Cells( 4,2 ):Value := '=HYPERLINK("http://forums.fivetechsoft.com/", "FiveTech Forums" )'
oExcel:Visible := .t.
I get still the following error ...
- Thu Jan 15, 2015 10:45 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel Hyperlink
- Replies: 13
- Views: 1943
Re: Excel Hyperlink
yes, this is my line with the error above
oAS:Cells(nRow,nCol):Formula := '=HYPERLINK("http://forums.fivetechsupport.com/","FiveWinForums")'
oAs is oSheet in my source
oAS:Cells(nRow,nCol):Formula := '=HYPERLINK("http://forums.fivetechsupport.com/","FiveWinForums")'
oAs is oSheet in my source
- Thu Jan 15, 2015 10:16 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel Hyperlink
- Replies: 13
- Views: 1943
Re: Excel Hyperlink
Sorry, but I get the following error
Fehler Excel.Application:ACTIVESHEET:CELLS 0000 S_OK: _FORMULA
Argumente: { =HYPERLINK("http://forums.fivetechsupport.com/","FiveWinForums") }
Aufgerufen von TOLEAUTO:_FORMULA (0)
I tryed it with "Formular" instead of "Formula", but an error also.
Fehler Excel.Application:ACTIVESHEET:CELLS 0000 S_OK: _FORMULA
Argumente: { =HYPERLINK("http://forums.fivetechsupport.com/","FiveWinForums") }
Aufgerufen von TOLEAUTO:_FORMULA (0)
I tryed it with "Formular" instead of "Formula", but an error also.
- Thu Jan 15, 2015 9:07 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Excel Hyperlink
- Replies: 13
- Views: 1943
Excel Hyperlink
How Is it possible to set an eMail-hyperlink to an Excel-cell?
I tryed it with
oAs:Cells[nRow,nCol] := "=HYPERLINK(Test@abc.de)"
OR
oAs:Cells[nRow,nCol] := "=HYPERLINK('Test@abc.de')"
but it doesn't work.
Has anyone a solution?
Thank you
I tryed it with
oAs:Cells[nRow,nCol] := "=HYPERLINK(Test@abc.de)"
OR
oAs:Cells[nRow,nCol] := "=HYPERLINK('Test@abc.de')"
but it doesn't work.
Has anyone a solution?
Thank you
- Fri Jun 20, 2014 6:17 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Why should I migrate from xHarbour to Harbour ?
- Replies: 44
- Views: 8500
Re: Why should I migrate from xHarbour to Harbour ?
Thank you Antonio, and what would you prefer: BCC or MSVC ?
- Fri Jun 20, 2014 4:54 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Why should I migrate from xHarbour to Harbour ?
- Replies: 44
- Views: 8500
Re: Why should I migrate from xHarbour to Harbour ?
I develop programs for over 5 years with xHarbour professionell - several hundred customers, some of them with very large databases (DBFNTX). Neither me nor my clients have ever had a problem with data or program. Why should I switch to harbour, where on the harbour Web site the current project ...