Page 1 of 1
Fivewin Wiki
Posted: Mon May 15, 2023 8:24 am
by Otto
Dear Antonio,
It looks to me like the link to the FIVEWIN Wiki is not working correctly.
I tried this one:
https://github.com/FiveTechSoft/FiveTech_wiki
Best regards,
Otto
Re: Fivewin Wiki
Posted: Mon May 15, 2023 9:40 am
by Antonio Linares
Dear Otto,
Yes, that the right url. Previous wiki was hacked.
best regards
Re: Fivewin Wiki
Posted: Mon May 15, 2023 10:05 am
by Otto
Dear Antonio,
but also this links are not workting.
|Harbour docs|http://www.fivetechsoft.com/harbour-docs/harbour-reference-guide.htm|
|Harbour & xHarbour builds|https://bitbucket.org/fivetech/harbour-xharbour-builds/downloads/|
===== FiveWin for [x]Harbour (FWH) ===== [[fivewin_documentation|English]] [[fivewin_documentacion|Español]] [[fivewin_documentacao|Português]]
===== FiveWin for Pocket PC (FWPPC) ===== [[fwppc_documentation|English]] [[fwppc_documentacion|Español]]
===== FiveLinux (FLH) ===== [[fivelinux_documentation|English]] [[fivelinux_documentacion|Español]]
===== FiveMac (FMC) ===== [[fivemac_documentation|English]] [[fivemac_documentacion|Español]]
Best regards,
Otto
Re: Fivewin Wiki
Posted: Mon May 15, 2023 10:11 am
by Antonio Linares
Dear Otto,
We tried to save all that we could
Re: Fivewin Wiki
Posted: Mon May 15, 2023 11:03 pm
by Otto
Dear Antonio,
on
http://web.archive.org/web/201912022230 ... ng_desktop
the menu is there.
With the help of the menu and the GITHUB TXT files I am ok.
Best regards,
Otto
Re: Fivewin Wiki
Posted: Fri Mar 15, 2024 3:50 pm
by hua
How to search for wiki content on the site
https://github.com/FiveTechSoft/FiveTech_wiki ?
I am trying to find the code snippets for Excel
Re: Fivewin Wiki
Posted: Fri Mar 15, 2024 3:56 pm
by Antonio Linares
Dear Hua,
https://github.com/search?q=repo%3AFive ... &type=code
There are many more results on these forums about Excel
What exactly are you looking for ?
Re: Fivewin Wiki
Posted: Sun Mar 17, 2024 8:05 am
by hua
Hi Antonio,
I just want to check code snippets on how to add new sheet in Excel and how to select a sheet based on name or number
Re: Fivewin Wiki
Posted: Sun Mar 17, 2024 11:04 am
by Enrico Maria Giordano
This is a working sample:
Code: Select all | Expand
#include "Fivewin.ch"
#define xlMaximized -4137
FUNCTION MAIN()
LOCAL oExcel := CREATEOBJECT( "Excel.Application" )
LOCAL oSheet
oExcel:WorkBooks:Add()
oExcel:Sheets:Add()
oSheet = oExcel:ActiveSheet
oSheet:Name = "New Sheet"
oExcel:Sheets( 2 ):Select()
// oExcel:Sheets( "New Sheet" ):Select()
oExcel:WindowState = xlMaximized
oExcel:Visible = .T.
SETFOREGROUNDWINDOW( oExcel:hWnd )
RETURN NIL
Re: Fivewin Wiki
Posted: Sun Mar 17, 2024 3:27 pm
by hua
Thank you very much Enrico!