Search found 304 matches: clicked

Return to advanced search

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: 917

TUrlLink on Xbrowse

... payment notices (I'm referring to a program I made for my school) in a field there is the information "order number xxxx" this text, if clicked ( as urllink made), can open the order management and view the schedule of that order without the final user having to open the order management ...
by Silvio.Falconi
Tue Feb 27, 2024 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TUrlLink on Xbrowse
Replies: 3
Views: 234

PRINT oPrn NAME cTitle PREVIEW

... buttons such as pdf, mail export to word and so on and personalize other. I want to know if is it possible to create for instance a button that if clicked the print goes to pdfcreator directly without the possibility to choice a printer from list. That would be great that if i click on "pdfcreator" ...
by MarcoBoschi
Mon Dec 11, 2023 3:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT oPrn NAME cTitle PREVIEW
Replies: 2
Views: 302

Re: Strange behavior of xBrowse

... to find the reason by looking (via Override) at the work of the xBrowse methods. I am interested in the method that is executed when a cell is clicked
by Natter
Sun Nov 26, 2023 6:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange behavior of xBrowse
Replies: 8
Views: 773

Fwh 23.10 rpreview problems

when double on rpreview not make zoom and I have this error

Image



before if I double clicked on the sheet the preview showed the zoomed page and you couldn't even see the lupa cursor
by Silvio.Falconi
Wed Nov 08, 2023 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 rpreview problems
Replies: 7
Views: 578

How to make MsgGetArray() behaviour consistent with MsgGet()

Hi, How to make MsgGetArray() behaviour consistent with MsgGet()? MsgGet() returns .t. as long as Ok button is clicked. msgget("Payroll Period", {"From", "To"}, {::cFrom, ::cTo}) MsgGetArray() will not return .t. eventhough ...
by hua
Fri Nov 03, 2023 9:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to make MsgGetArray() behaviour consistent with MsgGet()
Replies: 1
Views: 266

Re: not ISOEM(), ISANSI() or IsUTF8()

... := .t., ;              oBrw:SetFont( oFixed ) )   RELEASE FONT oFixed  Just clicked on the Excel button to generate xlsx file using DrXlsx.
by nageswaragunupudi
Sun Sep 03, 2023 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2094

Re: need Help with oBro:bSeek

... and identifies which index/tag is to be used to sort on which column and stores the index/tag information in oCol:cSortOrder. When the header is clicked, xbrowse automatically sets the index tag to oCol:cSortOrder, without disturbing the cuurent record pointer. c.) what about ADO ? Whether ADO ...
by nageswaragunupudi
Wed Aug 16, 2023 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: need Help with oBro:bSeek
Replies: 3
Views: 215

Print this character &

... {cTitulo33, oFont, CLR_BLACK} ,"CM" ) Don't print the character & , I tryed with other font but, don't. There are more... When I clicked on button "acrobat", the PDF file I created show me the roundbox whith the 4 corners round and rect. (I usually use tUtilprn, thanks ...
by D.Fernandez
Thu Feb 02, 2023 4:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Print this character &
Replies: 2
Views: 248

XBROWSE SetColumns()

In xBrowse, right clicking on the header displays a popup with a list of all columns. To the left is an icon, and it can be clicked to change the status of show() or hide() for the selected column. The problem appears that this popup displays, but once one field is changed, it closes. ...
by TimStone
Fri Dec 09, 2022 9:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE SetColumns()
Replies: 3
Views: 559

Re: Know the Column number clicked on the TXBrowse Header

Thank you all Solved like this, see the Code My code oCol := oDBx_Fornecedor:AddCol()oCol:bStrData  := { || forneced->FANTASIA }oCol:cHeader   := "Fantasia"oCol:cFooter   := " "oCol:nDataStrAlign := AL_LEFToCol:nHeadStrAlign := AL_LEFToCol:bLClickHeader := &#...
by INFORMAISVRB
Thu Nov 17, 2022 11:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Know the Column number clicked on the TXBrowse Header
Replies: 5
Views: 469

Re: Know the Column number clicked on the TXBrowse Header

So using Mr. Rao advise we can simplify the code even more: #include "FiveWin.ch"function Main()   USE "clients"   XBROWSER "clients" SETUP oBrw:bLClickHeaders := { |r,c,f,oCol| MsgInfo( oCol:nCreationOrder ) }return nil or #include "FiveW...
by Antonio Linares
Thu Nov 17, 2022 9:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Know the Column number clicked on the TXBrowse Header
Replies: 5
Views: 469

Re: Know the Column number clicked on the TXBrowse Header

From Mr. Rao:
To know the column number when created.
oBrw:bLClickHeaders := { |r,c,f,oCol| MsgInfo( oCol:nCreationOrder ) }
To know the present position in the visible columns ( position in oBrw:aCols )
oBrw:bLClickHeaders := { |r,c,f,oCol| MsgInfo( oCol:nPos ) }
by Antonio Linares
Thu Nov 17, 2022 9:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Know the Column number clicked on the TXBrowse Header
Replies: 5
Views: 469

Re: Know the Column number clicked on the TXBrowse Header

This version works also when the browse is scrolled: #include "FiveWin.ch"function Main()   local oBrowser, oColumn   USE "clients"   XBROWSER "clients" SETUP ( oBrowser := oBrw,;      AEval( oBrw:aCols, {...
by Antonio Linares
Thu Nov 17, 2022 9:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Know the Column number clicked on the TXBrowse Header
Replies: 5
Views: 469

Re: Know the Column number clicked on the TXBrowse Header

Here you have an example: #include "FiveWin.ch"function Main()   local oBrowser   USE "clients"   XBROWSER "clients" SETUP ( oBrowser := oBrw,;      AEval( oBrw:aCols, { | o | o:bLClickHeader := { | ...
by Antonio Linares
Thu Nov 17, 2022 8:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Know the Column number clicked on the TXBrowse Header
Replies: 5
Views: 469
Next

Return to advanced search