Search found 1163 matches
- Mon Jan 20, 2025 9:47 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Check language of Excel
- Replies: 2
- Views: 185
Re: Check language of Excel
Thank you, that's easy
- Mon Jan 20, 2025 8:40 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Check language of Excel
- Replies: 2
- Views: 185
Check language of Excel
Hi,
How can I check the language of excel?
The problem is that when I add a function in the Dutch version, I have to use ";" between the parameters in a function, and "," in English version.
Until now I didn't had the problem because it was always generated in the Dutch version. When loading the ...
How can I check the language of excel?
The problem is that when I add a function in the Dutch version, I have to use ";" between the parameters in a function, and "," in English version.
Until now I didn't had the problem because it was always generated in the Dutch version. When loading the ...
- Mon Jan 20, 2025 7:47 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Open Excel with Add-in
- Replies: 2
- Views: 290
Re: Open Excel with Add-in
I found it, just load the addin...
oExcel:Workbooks:Open ('C:\Program Files (x86)\Honeywell\Experion PKS\Client\Xldataex\mede.xla')
oExcel:Workbooks:Open ('C:\Program Files (x86)\Honeywell\Experion PKS\Client\Xldataex\mede.xla')
- Fri Jan 17, 2025 2:09 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Open Excel with Add-in
- Replies: 2
- Views: 290
Open Excel with Add-in
Hi,
I don't have problems with opening, editing or saving excel-files.
Now I wanted to open an excel that is installed on a PC with an Add-in that update the file.
I want to make a program that log all the changes.
Open and showing the excel is no problem, the only problem is that the Add-in is ...
I don't have problems with opening, editing or saving excel-files.
Now I wanted to open an excel that is installed on a PC with an Add-in that update the file.
I want to make a program that log all the changes.
Open and showing the excel is no problem, the only problem is that the Add-in is ...
- Wed Sep 04, 2024 8:58 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Looking for links in tables
- Replies: 2
- Views: 934
Re: Looking for links in tables
Thank you Antonio, I will try it.
- Mon Sep 02, 2024 12:00 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Looking for links in tables
- Replies: 2
- Views: 934
Looking for links in tables
Hi,
I have a table like:
Name Link Input
Name1 Name5 1
Name2 Name1 1
Name3 Name20 1
Name4 Name10 1
Name5 Name6 2
Name6 Name11 1
Name7 Name2 2
Name8 Name20 1
Name9 Name1 1
Name10 Name5 3
Name11 Name1 1
…..
Now I want to find for example al the links to name6
So:
Name6 is connected to Name11 ...
I have a table like:
Name Link Input
Name1 Name5 1
Name2 Name1 1
Name3 Name20 1
Name4 Name10 1
Name5 Name6 2
Name6 Name11 1
Name7 Name2 2
Name8 Name20 1
Name9 Name1 1
Name10 Name5 3
Name11 Name1 1
…..
Now I want to find for example al the links to name6
So:
Name6 is connected to Name11 ...
- Thu Jul 06, 2023 10:59 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Copy Directory
- Replies: 11
- Views: 1024
Copy Directory
Hi,
I use copyfile() to copy a single file.
Is there a function to copy a complete directory?
Thanks
I use copyfile() to copy a single file.
Is there a function to copy a complete directory?
Thanks
- Fri Mar 24, 2023 1:34 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Set option R1C1 in excel
- Replies: 2
- Views: 336
Re: Set option R1C1 in excel
Thank you, it's working fine
- Fri Mar 24, 2023 10:01 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Set option R1C1 in excel
- Replies: 2
- Views: 336
Set option R1C1 in excel
Hi,
Is there a way to check the R1C1 option in excel from FW?
Thanks,
Is there a way to check the R1C1 option in excel from FW?
Thanks,
- Fri Feb 10, 2023 9:44 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Debenu Quick PDF Library move content
- Replies: 0
- Views: 272
Debenu Quick PDF Library move content
Hi,
For a project I'm using already Debenu Quick PDF Library.
Now I want to open an existing PDF with 1 page and want to move the complete content of the page 1cm to the left and down.
Does anyone know how to do this?
Thanks
For a project I'm using already Debenu Quick PDF Library.
Now I want to open an existing PDF with 1 page and want to move the complete content of the page 1cm to the left and down.
Does anyone know how to do this?
Thanks
- Wed Aug 17, 2022 9:57 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: VIES VAT-Check
Hi,
Has anyone managed to make it work yet?
Has anyone managed to make it work yet?
- Fri Jun 24, 2022 12:16 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
VIES VAT-Check
Hi,
I'm using a calculation for checking if a VAT-nr is valid or not, an it's working file.
Customers asked me if my program can check, beside if it's valid or not, who is the owner of the number.
Some years ago a did some test with
http://forums.fivetechsupport.com/viewtopic.php ...
I'm using a calculation for checking if a VAT-nr is valid or not, an it's working file.
Customers asked me if my program can check, beside if it's valid or not, who is the owner of the number.
Some years ago a did some test with
http://forums.fivetechsupport.com/viewtopic.php ...
- Mon Apr 11, 2022 1:52 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Excel macro conversion
Hi,
I want to create a macro from FW in excel.
I found this sample in VB
*Dim vbp As ObjectDim newmod As ObjectSet vbp = ActiveWorkbook.VBProjectSet newmod = vbp.VBComponents.Add(1)
I try to convert in into FWH but have a problem already with the first line. I always get an error with ...
I want to create a macro from FW in excel.
I found this sample in VB
*Dim vbp As ObjectDim newmod As ObjectSet vbp = ActiveWorkbook.VBProjectSet newmod = vbp.VBComponents.Add(1)
I try to convert in into FWH but have a problem already with the first line. I always get an error with ...
- Fri Apr 08, 2022 9:31 am
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Adding button in excel with FW
Hi,
Does anyone have an example how to add a button on an excel-sheet?
Thank you,
Does anyone have an example how to add a button on an excel-sheet?
Thank you,
- Thu Jan 20, 2022 9:51 am
- Forum: FiveWin for Harbour/xHarbour
- Topic:
- Replies: -1
- Views:
Re: Write to OPC
Hello,
Unfortunately I have not found any info to do it via FW.
Unfortunately I have not found any info to do it via FW.