FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Fivewin Wiki
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Fivewin Wiki
Posted: Mon May 15, 2023 08:24 AM
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
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Fivewin Wiki
Posted: Mon May 15, 2023 09:40 AM

Dear Otto,

Yes, that the right url. Previous wiki was hacked.

best regards

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: Fivewin Wiki
Posted: Mon May 15, 2023 10:05 AM
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
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Fivewin Wiki
Posted: Mon May 15, 2023 10:11 AM
Dear Otto,

We tried to save all that we could :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: Fivewin Wiki
Posted: Mon May 15, 2023 11:03 PM
Dear Antonio,
on http://web.archive.org/web/20191202223045/http://fivetechsoft.com/wiki/doku.php?id=fivewin_documentation#organizing_your_working_desktop
the menu is there.
With the help of the menu and the GITHUB TXT files I am ok.
Best regards,
Otto
Posts: 1096
Joined: Fri Oct 28, 2005 02:27 AM
Re: Fivewin Wiki
Posted: Fri Mar 15, 2024 03:50 PM
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
FWH 11.08/FWH 19.12

BCC5.82/BCC7.3

xHarbour/Harbour
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Fivewin Wiki
Posted: Fri Mar 15, 2024 03:56 PM
Dear Hua,

https://github.com/search?q=repo%3AFiveTechSoft%2FFiveTech_wiki%20excel&type=code

There are many more results on these forums about Excel

What exactly are you looking for ?
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1096
Joined: Fri Oct 28, 2005 02:27 AM
Re: Fivewin Wiki
Posted: Sun Mar 17, 2024 08:05 AM

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

FWH 11.08/FWH 19.12

BCC5.82/BCC7.3

xHarbour/Harbour
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: Fivewin Wiki
Posted: Sun Mar 17, 2024 11:04 AM
This is a working sample:
Code (fw): Select all Collapse
#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
Posts: 1096
Joined: Fri Oct 28, 2005 02:27 AM
Re: Fivewin Wiki
Posted: Sun Mar 17, 2024 03:27 PM

Thank you very much Enrico!

FWH 11.08/FWH 19.12

BCC5.82/BCC7.3

xHarbour/Harbour

Continue the discussion