Fivewin Wiki
- Otto
- Posts: 6396
- Joined: Fri Oct 07, 2005 7:07 pm
- Has thanked: 8 times
- Been thanked: 1 time
- Contact:
Fivewin Wiki
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
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
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
- 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:
- Otto
- Posts: 6396
- Joined: Fri Oct 07, 2005 7:07 pm
- Has thanked: 8 times
- Been thanked: 1 time
- Contact:
Re: Fivewin Wiki
Dear Antonio,
but also this links are not workting.
Otto
but also this links are not workting.
Best regards,
|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]]
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
- 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:
- Otto
- Posts: 6396
- Joined: Fri Oct 07, 2005 7:07 pm
- Has thanked: 8 times
- Been thanked: 1 time
- Contact:
Re: Fivewin Wiki
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
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
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
Re: Fivewin Wiki
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
I am trying to find the code snippets for Excel
FWH 11.08/FWH 19.12
BCC5.82/BCC7.3
xHarbour/Harbour
BCC5.82/BCC7.3
xHarbour/Harbour
- 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
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 ?
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
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
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
BCC5.82/BCC7.3
xHarbour/Harbour
- Enrico Maria Giordano
- Posts: 8734
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Been thanked: 1 time
- Contact:
Re: Fivewin Wiki
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