... complex processes during the transition from XBase/Clipper to web technologies. Here is a brief insight into the user interface.
TreeView for Navigation
Documents are organized hierarchically, similar to an explorer view.
New nodes (e.g., chapters or subchapters) can be easily added.
TinyMCE as an ...
Search found 324 matches: navigation
Searched query: navigation
- Tue Feb 04, 2025 8:38 am
- Forum: mod_harbour
- Topic: tool for documentation
- Replies: 0
- Views: 389
- Tue Jan 28, 2025 1:24 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Color de fondo y texto a los campos TEXTO (MEMO)
- Replies: 5
- Views: 824
Re: Color de fondo y texto a los campos TEXTO (MEMO)
... SAY "Showing how to do SAY/GETs from source code. No DLLs or RC files. " OF oDlg COLORS CLR_BLACK,CLR_YELLOW BORDER SIZE 300,10
@ 01, 03 SAY "Navigation Keys to traverse gets are Ret, Arrows, Tab and Shift Tab....ESC to close this Dialog" OF oDlg COLORS CLR_WHITE,CLR_BLUE BORDER SIZE 380,10
@ 02 ...
@ 01, 03 SAY "Navigation Keys to traverse gets are Ret, Arrows, Tab and Shift Tab....ESC to close this Dialog" OF oDlg COLORS CLR_WHITE,CLR_BLUE BORDER SIZE 380,10
@ 02 ...
- Sat Jan 25, 2025 5:21 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Antonio... FiveTouch posts are gone?
- Replies: 15
- Views: 34064
Re: Antonio... FiveTouch posts are gone?
... approaches for building a custom index.
// In the first approach, the controlling index is a regular index
// which allows for relative database navigation. The second approach
// uses the custome index as controlling index and requires absolute
// database navigation. The first five logical records ...
// In the first approach, the controlling index is a regular index
// which allows for relative database navigation. The second approach
// uses the custome index as controlling index and requires absolute
// database navigation. The first five logical records ...
- Fri Jan 24, 2025 11:19 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4827
Re: Using new Class TDeepSeek for documenting
... ResetData is like changing the engine entirely, while ResetBrowse is more like just turning off the engine and clearing the dashboard.
3. Navigation Methods (Cursor Movement and Position):
GoTop(), GoBottom(), GoUp(), GoDown(), PageUp(), PageDown(), Skip(): These methods provide different ...
3. Navigation Methods (Cursor Movement and Position):
GoTop(), GoBottom(), GoUp(), GoDown(), PageUp(), PageDown(), Skip(): These methods provide different ...
- Fri Jan 24, 2025 10:37 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4827
Re: Using new Class TDeepSeek for documenting
... hWnd )
Description: Moves the input focus to the next control within the same window as the TXBrowse control. This is often used for navigation between controls in a form or dialog.
Parameters:
hWnd: - Handle of the current control that has focus.
Return Value: None
Usage Example ...
Description: Moves the input focus to the next control within the same window as the TXBrowse control. This is often used for navigation between controls in a form or dialog.
Parameters:
hWnd: - Handle of the current control that has focus.
Return Value: None
Usage Example ...
- Fri Jan 24, 2025 10:28 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4827
Re: Using new Class TDeepSeek for documenting
... T. for new record, .F. for edit current record.
cFieldList: CHARACTER - Field list to edit (optional).
lNavigate: LOGICAL - .T. to enable navigation buttons in dialog, .F. otherwise.
aInitVals: ARRAY - Array of initial values for new record (optional).
bSetup: CODEBLOCK - Codeblock to ...
cFieldList: CHARACTER - Field list to edit (optional).
lNavigate: LOGICAL - .T. to enable navigation buttons in dialog, .F. otherwise.
aInitVals: ARRAY - Array of initial values for new record (optional).
bSetup: CODEBLOCK - Codeblock to ...
- Thu Jan 23, 2025 12:28 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: xbrowse, dbf and codeblock
- Replies: 10
- Views: 19859
Re: xbrowse, dbf and codeblock
XBrowse automatically generates all navigation codeblocks internally and correctly for all known datasources like arrays, hashes, dbf, ado-recordsets and all other known classes.
Please do not write our own navigation codeblocks.
Yes, for a standard navigation.
What to do when I need a not ...
- Thu Jan 23, 2025 5:32 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xbrowse, dbf and codeblock
- Replies: 10
- Views: 19859
Re: xbrowse, dbf and codeblock
... 100 PIXEL ;
OF xDlg ;
ON DBLCLICK ( (nRow), (nCol), (nFlags), FWBrowseENTER( xDlg, xControl ) )
XBrowse automatically generates all navigation codeblocks internally and correctly for all known datasources like arrays, hashes, dbf, ado-recordsets and all other known classes.
Please do ...
OF xDlg ;
ON DBLCLICK ( (nRow), (nCol), (nFlags), FWBrowseENTER( xDlg, xControl ) )
XBrowse automatically generates all navigation codeblocks internally and correctly for all known datasources like arrays, hashes, dbf, ado-recordsets and all other known classes.
Please do ...
- Fri Jan 17, 2025 10:54 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4827
Re: Using new Class TDeepSeek for documenting
... In this implementation, it always returns `0`.
13. **`KeyDown( nKey, nFlags )`**
- **Description:** Handles key down events. It processes navigation keys (Up, Down, Left, Right) and the Enter key.
- **Parameters:**
- `nKey`: The key code of the pressed key.
- `nFlags`: Additional flags for ...
13. **`KeyDown( nKey, nFlags )`**
- **Description:** Handles key down events. It processes navigation keys (Up, Down, Left, Right) and the Enter key.
- **Parameters:**
- `nKey`: The key code of the pressed key.
- `nFlags`: Additional flags for ...
- Fri Jan 17, 2025 10:49 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4827
Re: Using new Class TDeepSeek for documenting
... Additional flags.
- **Returns:** `nil`.
15. **`KeyDown( nKey, nFlags )`**
- **Description:** Handles key down events, particularly for navigation keys (e.g., arrow keys).
- **Parameters:**
- `nKey`: The key code.
- `nFlags`: Additional flags.
- **Returns:** `nil`.
16. **`cGenPRG ...
- **Returns:** `nil`.
15. **`KeyDown( nKey, nFlags )`**
- **Description:** Handles key down events, particularly for navigation keys (e.g., arrow keys).
- **Parameters:**
- `nKey`: The key code.
- `nFlags`: Additional flags.
- **Returns:** `nil`.
16. **`cGenPRG ...
- Fri Jan 17, 2025 10:33 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4827
Using new Class TDeepSeek for documenting
... to open the list.
- **Parameters**: `nKey`, `nFlags`.
- **Returns**: None.
6. **`KeyDown()`**
- **Description**: Handles key down events for navigation within the list.
- **Parameters**: `nKey`, `nFlags`.
- **Returns**: Numeric (status code).
7. **`OpenList()`**
- **Description**: Opens the ...
- **Parameters**: `nKey`, `nFlags`.
- **Returns**: None.
6. **`KeyDown()`**
- **Description**: Handles key down events for navigation within the list.
- **Parameters**: `nKey`, `nFlags`.
- **Returns**: Numeric (status code).
7. **`OpenList()`**
- **Description**: Opens the ...
- Wed Jan 08, 2025 10:00 am
- Forum: mod_harbour
- Topic: SIDEBAR NAVIGATION
- Replies: 0
- Views: 566
SIDEBAR NAVIGATION
We have further developed the menu: You can now open multiple windows, such as cashbook, purchasing, or waiter VW, simultaneously and see at a glance what is happening.
Switching between windows or closing them is just as convenient as on a familiar desktop – but directly in the browser. This way ...
Switching between windows or closing them is just as convenient as on a familiar desktop – but directly in the browser. This way ...
- Tue Dec 31, 2024 5:28 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Milestone Achieved: WINHOTEL as a Web Application
- Replies: 5
- Views: 816
Milestone Achieved: WINHOTEL as a Web Application
... after our WINHOTEL '95.
I am especially happy that I haven't linked any libraries except for Bootstrap. Both the room plan and the dashboard navigation were programmed using pure HTML and JavaScript. I believe this is a great advantage for the future.
I take this opportunity to wish you a happy ...
I am especially happy that I haven't linked any libraries except for Bootstrap. Both the room plan and the dashboard navigation were programmed using pure HTML and JavaScript. I believe this is a great advantage for the future.
I take this opportunity to wish you a happy ...
- Wed Nov 20, 2024 11:50 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Soporte a mariaConnect ?
- Replies: 11
- Views: 2736
Re: Soporte a mariaConnect ?
Buena tarde...
Las soluciones usadas hasta ahora.. tablas, TarrayData y rowSet... tienen metodos de navegacion y ordenaminento,,,,
Navigation:
Supports all methods of TDatabase like GoTop,GoBottom,GoTo,Skip,Eof,Bof,LastRec,
RecCount,KeyCount,KeyGoTo, etc
Also supports aliased methods compatible with ...
Las soluciones usadas hasta ahora.. tablas, TarrayData y rowSet... tienen metodos de navegacion y ordenaminento,,,,
Navigation:
Supports all methods of TDatabase like GoTop,GoBottom,GoTo,Skip,Eof,Bof,LastRec,
RecCount,KeyCount,KeyGoTo, etc
Also supports aliased methods compatible with ...
- Wed Nov 20, 2024 7:24 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Subclass Xbrowse with method GoLeft() and GoRight()
- Replies: 0
- Views: 886
Subclass Xbrowse with method GoLeft() and GoRight()
... for me ...
If you wonder why i want this : The more stuff I put in xbrowse the more it slows down, and that is because of my way of programming, NOT XBROWSE. I know that and so I just wanted to test the new method MYLEFT that does nothing at all except go left.
Call it HighSpeed navigation :twisted:
If you wonder why i want this : The more stuff I put in xbrowse the more it slows down, and that is because of my way of programming, NOT XBROWSE. I know that and so I just wanted to test the new method MYLEFT that does nothing at all except go left.
Call it HighSpeed navigation :twisted: