... Returns the TXBrowse object (Self).
Usage Example: (Internal use only - method version for codeblock usage)
139. GoFltRow( n )
Description: Navigates to a specific row within a filtered browse based on its filter row index.
Parameters:
n: NUMERIC - The filter row index to navigate to (1-based ...
Search found 27 matches: navigates
Searched query: navigates
- Fri Jan 24, 2025 10:37 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 5079
- Wed Jan 10, 2024 7:05 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: WebView2 Essentials: Guides, Tips & Resources
- Replies: 2
- Views: 1276
Re: WebView2 Essentials: Guides, Tips & Resources
... hWndParent): Constructor that creates a new web view instance. It takes debug settings and a parent window handle as arguments.
Navigate(cURL): Navigates the web view to a specified URL.
SetHtml(cHtml): Sets the HTML content of the web view.
Run(): Runs the web view.
Destroy(): Destroys the web ...
Navigate(cURL): Navigates the web view to a specified URL.
SetHtml(cHtml): Sets the HTML content of the web view.
Run(): Runs the web view.
Destroy(): Destroys the web ...
- Wed Oct 11, 2023 10:42 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: xBrowser click
- Replies: 16
- Views: 2607
Re: xBrowser click
... to code-block:
oBrw:bLClicked := { |row,col,flags,brw| youraction( ... ) }
The default behavior of XBrowse is that single left click on a cell navigates to that cell. We feel assigning a different action to single left click may be inconsistent with normal behaviour and confusing to users. Instead ...
oBrw:bLClicked := { |row,col,flags,brw| youraction( ... ) }
The default behavior of XBrowse is that single left click on a cell navigates to that cell. We feel assigning a different action to single left click may be inconsistent with normal behaviour and confusing to users. Instead ...
- Thu Aug 17, 2023 9:51 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Saving OuterHTML using Await Implementation with TWebView
- Replies: 24
- Views: 5513
Re: Saving OuterHTML using Await Implementation with TWebView
... starts (`oDlg:bStart`).
- The Dialog is activated in the center.
3. **GetOuterHtml Function**:
- It initializes the TWebView control, which navigates to "https://www.google.com/".
- There's a loop (`WHILE .T.`) that waits for the document to be completely loaded. The function `AWait ...
- The Dialog is activated in the center.
3. **GetOuterHtml Function**:
- It initializes the TWebView control, which navigates to "https://www.google.com/".
- There's a loop (`WHILE .T.`) that waits for the document to be completely loaded. The function `AWait ...
- Thu Aug 17, 2023 8:21 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Saving OuterHTML using Await Implementation with TWebView
- Replies: 24
- Views: 5513
Re: Saving OuterHTML using Await Implementation with TWebView
... starts (`oDlg:bStart`).
- The Dialog is activated in the center.
3. **GetOuterHtml Function**:
- It initializes the TWebView control, which navigates to "https://www.google.com/".
- There's a loop (`WHILE .T.`) that waits for the document to be completely loaded. The function `AWait ...
- The Dialog is activated in the center.
3. **GetOuterHtml Function**:
- It initializes the TWebView control, which navigates to "https://www.google.com/".
- There's a loop (`WHILE .T.`) that waits for the document to be completely loaded. The function `AWait ...
- Sun Jul 23, 2023 10:16 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Spinner arrows
- Replies: 4
- Views: 497
Spinner arrows
... with spinner clause …
under Windows 10 the arrows for increase and decrease are always visible.
Under Windows 11 they appear only if the user navigates to the place where they will be shown.
Does anyone know how to make these arrows permanently visible with Windiws 11?
Thanks for each idea ...
under Windows 10 the arrows for increase and decrease are always visible.
Under Windows 11 they appear only if the user navigates to the place where they will be shown.
Does anyone know how to make these arrows permanently visible with Windiws 11?
Thanks for each idea ...
- Mon Jun 12, 2023 2:51 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Xbrowse : Tooltips timers
- Replies: 3
- Views: 440
Re: Xbrowse : Tooltips timers
... mouse over row, pick the text and re-
navicate to the current row, which is confusing and error-prone.
In case of bCellToolTip, xbrowse first navigates to the mouse
over row and then evaluates the codeblock with mouse over column
object as parameter and returns to the current row. This ...
navicate to the current row, which is confusing and error-prone.
In case of bCellToolTip, xbrowse first navigates to the mouse
over row and then evaluates the codeblock with mouse over column
object as parameter and returns to the current row. This ...
- Sat Jun 04, 2022 11:23 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: IE
- Replies: 39
- Views: 3173
Re: IE
In webview docs we find this:
// Navigates webview to the given URL. URL may be a properly encoded data URI.
// Examples:
// webview_navigate(w, "https://github.com/webview/webview");
// webview_navigate(w, "data:text/html,%3Ch1%3EHello%3C%2Fh1%3E");
// webview_navigate(w, "data:text/html;base64 ...
// Navigates webview to the given URL. URL may be a properly encoded data URI.
// Examples:
// webview_navigate(w, "https://github.com/webview/webview");
// webview_navigate(w, "data:text/html,%3Ch1%3EHello%3C%2Fh1%3E");
// webview_navigate(w, "data:text/html;base64 ...
- Mon Sep 27, 2021 7:21 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Mostrar tooltip (c5) con formato celda xbrowse
- Replies: 8
- Views: 1399
Re: Mostrar tooltip (c5) con formato celda xbrowse
... un xbrowse yo lo hago asi:
oCol:bCellToolTip := { | | "Esto es un tooltip de la celda" }
Espero te sirva
Saludos!
Eduardo Borondón Muñiz
bCellTooltip works when mouse pointer hovers over a cell.
He wanted to display the dialog when user navigates to a row and close when the user leaves the row.
oCol:bCellToolTip := { | | "Esto es un tooltip de la celda" }
Espero te sirva
Saludos!
Eduardo Borondón Muñiz
bCellTooltip works when mouse pointer hovers over a cell.
He wanted to display the dialog when user navigates to a row and close when the user leaves the row.
- Sat Sep 25, 2021 2:14 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Mostrar tooltip (c5) con formato celda xbrowse
- Replies: 8
- Views: 1399
Re: Mostrar tooltip (c5) con formato celda xbrowse
Do you want a tooltip to appear when mouse hovers over a cell or when the user navigates to a row?
Earlier, you asked how to show a dialog when the user navigates to a row and close dialog when the user leaves the row.
This is the solution for that original question:
#include "fivewin.ch"REQUEST ...
Earlier, you asked how to show a dialog when the user navigates to a row and close dialog when the user leaves the row.
This is the solution for that original question:
#include "fivewin.ch"REQUEST ...
- Sun Jul 04, 2021 11:36 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Finding XBrowse current record
- Replies: 11
- Views: 2049
Re: Finding XBrowse current record
... datasource (eg. the DBF Alias() directly) and querying a different datasource (eg. the Database Object).
In this case, while the xbrowse navigates the DBF alias, the Database Object's buffer still contains the values of the first record unchanged.
Please make sure to use the clause ...
In this case, while the xbrowse navigates the DBF alias, the Database Object's buffer still contains the values of the first record unchanged.
Please make sure to use the clause ...
- Thu Dec 26, 2019 9:00 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Click and run a UNC from an e-mail
- Replies: 0
- Views: 397
Click and run a UNC from an e-mail
... mailed to the approver
2- The approver clicks on the e-mail embeded link ( unc ) which starts the shared network application
3- the supervisor navigates to the request and approves the Travel and then the requester gets his approval via another generated silent e-mail driven from the application ...
2- The approver clicks on the e-mail embeded link ( unc ) which starts the shared network application
3- the supervisor navigates to the request and approves the Travel and then the requester gets his approval via another generated silent e-mail driven from the application ...
- Wed Jan 25, 2017 8:37 am
- Forum: WhatsNew / Novedades
- Topic: New FTDN January/Enero 2017 (FWH 17.01)
- Replies: 1
- Views: 2493
New FTDN January/Enero 2017 (FWH 17.01)
... mouse over row, pick the text and re-
navicate to the current row, which is confusing and error-prone.
In case of bCellToolTip, xbrowse first navigates to the mouse
over row and then evaluates the codeblock with mouse over column
object as parameter and returns to the current row. This ...
navicate to the current row, which is confusing and error-prone.
In case of bCellToolTip, xbrowse first navigates to the mouse
over row and then evaluates the codeblock with mouse over column
object as parameter and returns to the current row. This ...
- Sun Jul 13, 2014 1:21 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Mr. Nages!! question about xBrowse and EDIT_GET [bug issue]
- Replies: 15
- Views: 3369
Re: question about xBrowse and EDIT_GET
... mode where pressing a data key triggers edit and after edit the next editable cell is ready for edit.
We can also configure xbrowse to use excel style edit. In this case F2 key triggers edit and enter key navigates to next cell and we can tell the users that if they know excel, they know xbrowse.
We can also configure xbrowse to use excel style edit. In this case F2 key triggers edit and enter key navigates to next cell and we can tell the users that if they know excel, they know xbrowse.
- Tue Jun 25, 2013 5:06 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Execute a php script
- Replies: 8
- Views: 1784
Re: Execute a php script
... URL creates a new tab each time ?
If you do not mind setting IE to visible and watch the browser to see if it spins off a new tab each time it navigates to the same URL .. if it does not .. I see nothing wrong with your code ..
Still curious what your browser is looking for and how you evaluate ...
If you do not mind setting IE to visible and watch the browser to see if it spins off a new tab each time it navigates to the same URL .. if it does not .. I see nothing wrong with your code ..
Still curious what your browser is looking for and how you evaluate ...