Search found 304 matches: navigation

Return to advanced search

xbrowseWeb - Work in Progress

... to avoid using pre-made components for web development (like web servers or webview2) as much as possible. I now have a template for consistent navigation in my web programs. Here, I also host the xbrowseWeb module. Another principle I follow is to keep the source code as simple as possible ...
by Otto
Sat Apr 20, 2024 10:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowseWeb - Work in Progress
Replies: 1
Views: 103

Re: Another for Btnbmp

... to the "FocusRect" you mentioned. The focus outline is crucial for accessibility, as it assists users, especially those using keyboard navigation, to understand which element is currently active. Yes. I know very well. No argument over this. That is what FWH does it by default in case ...
by nageswaragunupudi
Mon Mar 25, 2024 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4961

Re: Another for Btnbmp

... to the "FocusRect" you mentioned. The focus outline is crucial for accessibility, as it assists users, especially those using keyboard navigation, to understand which element is currently active. Here is a sample I made with WebView2 to demonstrate. Best regards, Otto https://mybergland.com/fwforum/resizewithbtns.gif
by Otto
Mon Mar 25, 2024 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4961

Re: WebView2 Essentials: Guides, Tips & Resources

... for web view control. The class design is focused on interaction between the native application and the web view, providing functionalities like navigation, script execution, and event handling. This class provides a comprehensive interface for embedding and controlling a web browser within a ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 481

Re: WebView2 Essentials: Guides, Tips & Resources

... Features and APIs: WebView2 offers a range of features and APIs. The CoreWebView2 class provides web-specific functionalities such as networking, navigation, script handling, and HTML parsing and rendering. It includes methods like PostWebMessageAsJson, PostWebMessageAsString, and events like ...
by Otto
Wed Jan 10, 2024 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 481

WebView2 Essentials: Guides, Tips & Resources

... processes in the background. Each process serves a different purpose: Browser Process: The main process that manages the user interface, handles navigation, and coordinates other processes. Renderer Process: Handles the rendering of web content. There's usually a separate renderer process for ...
by Otto
Wed Jan 10, 2024 6:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 481

Re: diesable navigation Buttons using TArrayData():Edit() ?

hi,
nageswaragunupudi wrote:Please use this:
This is working:
Code: Select all  Expand view
TArrayData():New( {aValues}, aFields ):Record():Edit( nil, .t. )

Yes, now it work, thx
by Jimmy
Tue Jul 25, 2023 10:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: diesable navigation Buttons using TArrayData():Edit() ?
Replies: 4
Views: 358

Re: diesable navigation Buttons using TArrayData():Edit() ?

it seems not to make any difference :? Code: CLASS TArrayData METHOD Edit() INLINE ::record():Edit() there are no Parameter to pass ... Sorry and also thanks for pointing our oversight. Please use this: This is working: TArrayData():New( {aValues}, aFields ):Record(...
by nageswaragunupudi
Mon Jul 24, 2023 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: diesable navigation Buttons using TArrayData():Edit() ?
Replies: 4
Views: 358

Re: diesable navigation Buttons using TArrayData():Edit() ?

hi, thx for Answer Syntax: METHOD Edit( lReadOnly, lNavigate, cTitle ) We can write: TArrayData():New( {aValue}, aFields ):Edit( nil, .f. ) it seems not to make any difference :? CLASS TArrayDataMETHOD Edit()  INLINE ::record():Edit()...
by Jimmy
Mon Jul 24, 2023 1:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: diesable navigation Buttons using TArrayData():Edit() ?
Replies: 4
Views: 358

Re: diesable navigation Buttons using TArrayData():Edit() ?

Syntax:
Code: Select all  Expand view
METHOD Edit( lReadOnly, lNavigate, cTitle )


We can write:
Code: Select all  Expand view
TArrayData():New( {aValue}, aFields ):Edit( nil, .f. )
by nageswaragunupudi
Sun Jul 23, 2023 11:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: diesable navigation Buttons using TArrayData():Edit() ?
Replies: 4
Views: 358

diesable navigation Buttons using TArrayData():Edit() ?

hi, to "edit" a Recored i´m using oRec := TArrayData() :New( { aValue }, aFields )// disable navigation Buttons ?lEdit := oRec:Edit() https://i.postimg.cc/02XWTNCd/Edit-Button-navigation.jpg there are some navigation Button on ...
by Jimmy
Sun Jul 23, 2023 8:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: diesable navigation Buttons using TArrayData():Edit() ?
Replies: 4
Views: 358

Re: Create help system with F1

... topics: After creating help topics, you need to organize them into a logical structure. You can create tables of contents, indexes, and other navigation elements to help users find information easily. Use the "Project" menu to add, reorder, and modify the structure of your help file. ...
by Antonio Linares
Tue Jul 11, 2023 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create help system with F1
Replies: 15
Views: 869

Re: FOXPRO GET PICTURE "@m Printer, File"

Dear Antonio ,

Yes we can use but issue with combo box navigation using arrows keys and also its looks is different compare to GET.

Thanks
Shridhar
by shrifw
Mon Jul 03, 2023 2:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FOXPRO GET PICTURE "@m Printer, File"
Replies: 15
Views: 1387

Create reports by pagination TReport, TPreview

... 3) Rotate the report 4) Opens Auto Preview BUT that's just so he doesn't wait so long, if he wants to see the next 200 records, create some navigation buttons in MySQL, pagination even and with Open Preview. Many reports the guy just wants to see the total or some information, Placing the ...
by Ari
Wed May 31, 2023 1:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create reports by pagination TReport, TPreview
Replies: 0
Views: 129

Re: INDEX on / seek in MARIA DB

In RDBMSs other than DBFs, indexes are not used for Navigation or for Seeks. The purpose of indexes is only to optimize where clauses for queries. Intelligent planning of indexes is an essential part of database design to optimize queries in OLAP (Online ...
by nageswaragunupudi
Thu May 18, 2023 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: INDEX on / seek in MARIA DB
Replies: 5
Views: 399
Next

Return to advanced search