Fivewin Wiki

Post Reply
User avatar
Otto
Posts: 6396
Joined: Fri Oct 07, 2005 7:07 pm
Has thanked: 8 times
Been thanked: 1 time
Contact:

Fivewin Wiki

Post 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
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
User avatar
Antonio Linares
Site Admin
Posts: 42393
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 9 times
Been thanked: 41 times
Contact:

Re: Fivewin Wiki

Post by Antonio Linares »

Dear Otto,

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

best regards
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Otto
Posts: 6396
Joined: Fri Oct 07, 2005 7:07 pm
Has thanked: 8 times
Been thanked: 1 time
Contact:

Re: Fivewin Wiki

Post 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
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
User avatar
Antonio Linares
Site Admin
Posts: 42393
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 9 times
Been thanked: 41 times
Contact:

Re: Fivewin Wiki

Post by Antonio Linares »

Dear Otto,

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

Antonio Linares
www.fivetechsoft.com
User avatar
Otto
Posts: 6396
Joined: Fri Oct 07, 2005 7:07 pm
Has thanked: 8 times
Been thanked: 1 time
Contact:

Re: Fivewin Wiki

Post 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
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
hua
Posts: 1074
Joined: Fri Oct 28, 2005 2:27 am
Been thanked: 1 time

Re: Fivewin Wiki

Post 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
FWH 11.08/FWH 19.12
BCC5.82/BCC7.3
xHarbour/Harbour
User avatar
Antonio Linares
Site Admin
Posts: 42393
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 9 times
Been thanked: 41 times
Contact:

Re: Fivewin Wiki

Post 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 ?
regards, saludos

Antonio Linares
www.fivetechsoft.com
hua
Posts: 1074
Joined: Fri Oct 28, 2005 2:27 am
Been thanked: 1 time

Re: Fivewin Wiki

Post 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
FWH 11.08/FWH 19.12
BCC5.82/BCC7.3
xHarbour/Harbour
User avatar
Enrico Maria Giordano
Posts: 8734
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Been thanked: 1 time
Contact:

Re: Fivewin Wiki

Post 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
hua
Posts: 1074
Joined: Fri Oct 28, 2005 2:27 am
Been thanked: 1 time

Re: Fivewin Wiki

Post by hua »

Thank you very much Enrico!
FWH 11.08/FWH 19.12
BCC5.82/BCC7.3
xHarbour/Harbour
Post Reply