Search found 46 matches: hyperlink

Return to advanced search

Re: EXCEL CREATE HYPERLINK

When I click on cell from the worksheet named "MASTER" that has a hyperlink to another cell in "DETAILS" worksheet I found the cell in the bottom of the video. This almost always happens. Is it possible to scroll the worksheet so that when ...
by MarcoBoschi
Tue Apr 02, 2024 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL CREATE HYPERLINK
Replies: 3
Views: 684

Re: EXCEL CREATE HYPERLINK

... := [=COLLEG.IPERTESTUALE("#UNO!A1";"MARCO")] Note: Some sites: (https://pt.excelfunctions.eu/) translate COLLEG.IPERTESTUALE (HYPERLINK) to HIPERLIGAÇÃO that gives ERROR. The correct is (here in Brazil): oAs2:Range("A1"):value := [=HIPERLINK("#UNO!A1";"MARCO")] ...
by Euclides
Fri Mar 29, 2024 8:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL CREATE HYPERLINK
Replies: 3
Views: 684

Re: EXCEL CREATE HYPERLINK solved

In this way
oAs2:Range("A1"):value := [=COLLEG.IPERTESTUALE("#UNO!A1";"MARCO")]

:idea:
by MarcoBoschi
Thu Mar 28, 2024 1:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL CREATE HYPERLINK
Replies: 3
Views: 684

EXCEL CREATE HYPERLINK

Hi, I have to create an hyperlink from cell A1 of sheet2 to cell A1 of sheet1 If I click on the cell "MARCO" I want to go to the cell "BOSCHI" When I click on it I have this alert (italy) "Indirizzo del sito non ...
by MarcoBoschi
Thu Mar 28, 2024 11:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL CREATE HYPERLINK
Replies: 3
Views: 684

Re: Hyperlink in Excel

Anybody knows how to how I can return to original cell containing hyperlink after I clicked on it and obviusly moved?
without to create another hyperlink obviously

Have a nice day
Marco
by MarcoBoschi
Fri Mar 15, 2024 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hyperlink in Excel
Replies: 3
Views: 901

TUrlLink on Xbrowse

in a normal Xbrowse table I would like to have the possibility of displaying a hyperlink text ( TUrlLink) in a field, but not all the records, just the ones I want. why do I want to have a Hyperlink text? because the final user could click on it and view information ...
by Silvio.Falconi
Tue Feb 27, 2024 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TUrlLink on Xbrowse
Replies: 3
Views: 229

Re: creating a new function HtmlToRtf()

cTemp := StrTran(cTemp, "<a href=", "{\field{\*\fldinst{HYPERLINK ") cTemp := StrTran(cTemp, "</a>", "}}{\fldrslt ") cTemp := StrTran(cTemp, ">", "}}") I see this but it is not clickable ...
by Silvio.Falconi
Fri Feb 16, 2024 2:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: creating a new function HtmlToRtf()
Replies: 3
Views: 281

Re: Hyperlink in Excel

Thank you Enrico,

It's working perfect :D
by Marc Vanzegbroeck
Wed Apr 21, 2021 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hyperlink in Excel
Replies: 3
Views: 901

Re: Hyperlink in Excel

Try this:

Code: Select all  Expand view
oSheet:Hyperlinks:Add( oSheet:Cells( 1 , 2 ), "C:\Projects\BASF\F13101C.xlsx" )


EMG
by Enrico Maria Giordano
Wed Apr 21, 2021 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hyperlink in Excel
Replies: 3
Views: 901

Hyperlink in Excel

Hi,

Does anyone know how to add a hyperlink in a cell via FWH.

I have tried something like
Code: Select all  Expand view
oSheet:Cells( 1 , 2 ):Hyperlinks:Add("C:\Projects\BASF\F13101C.xlsx")


but it doesn't work.
by Marc Vanzegbroeck
Wed Apr 21, 2021 6:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hyperlink in Excel
Replies: 3
Views: 901

Re: Show and scroll with Meta-file

Is it also possible to know the location when you do a doubleclick?
Since when you swipe or zoom, the locations are different. Mayme a hyperlink would me nice
by Marc Vanzegbroeck
Sat Jul 20, 2019 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show and scroll with Meta-file
Replies: 12
Views: 975

Re: HYPERLINK

Thanks

It works.

Regards.

ACWoo
by acwoo1
Tue Jun 19, 2018 5:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HYPERLINK
Replies: 9
Views: 1734

Re: HYPERLINK

... = "Doe"   oSheet:Range( "B2" ):Value = "John"      oSheet:Range( "D4" ):Value:='=HYPERLINK("#Sheet1!A12","Test1")'   // insert correct full path for hyperlinked file   oSheet:Range( "A10" ):Value ...
by bpd2000
Mon Jun 18, 2018 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HYPERLINK
Replies: 9
Views: 1734

Re: HYPERLINK

Code: Select all  Expand view
cText := ""
TEXT INTO cText
=HYPERLINK("[D:\\MyExcelFile.xlsx]'Sheet1 A'!C5","CLICK HERE")
ENDTEXT


Now use the cText on the cell
by anserkk
Mon Jun 18, 2018 4:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: HYPERLINK
Replies: 9
Views: 1734

Re: HYPERLINK

Hi

Thanks

I get :

Syntax error at 'SHEET1'

Regards

ACWoo
Bcc582
FWH
by acwoo1
Sun Jun 17, 2018 10:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HYPERLINK
Replies: 9
Views: 1734
Next

Return to advanced search