Search found 69 matches: interactive

Return to advanced search

Re: WebView resize

... Buttons: Buttons in FiveWin can be directly translated to <button> elements in HTML. These buttons can be styled with CSS and made interactive with JavaScript, functioning within the WebView2 control. Panels (TPanel): Use <div> elements in HTML to replicate the panels in FiveWin. ...
by Otto
Thu Mar 21, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2095

Fivewin controls similar to javascript elements

... can be quite useful when transitioning between web and desktop application development. The conceptual model of event handling is a key aspect of interactive application design in both environments, even though the specific implementations and best practices may differ. Best regards, Otto Event ...
by Otto
Tue Nov 21, 2023 7:33 am
 
Forum: mod_harbour
Topic: Fivewin controls similar to javascript elements
Replies: 2
Views: 1122

Re: MSXML2.ServerXMLHTTP / readyState / Status

... not been called. (2) LOADED The send method has been called and the status and headers are available, but the response is not yet available. (3) INTERACTIVE Some data has been received. You can call responseBody and responseText to get the current partial results. (4) COMPLETED All the data has ...
by Jimmy
Sat Mar 18, 2023 11:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSXML2.ServerXMLHTTP / readyState / Status
Replies: 8
Views: 390

Re: Callback Server

... JavaScript is a dynamically typed language that is interpreted by web browsers, and also can be run on servers using Node.js. It is used to create interactive and responsive web applications, as well as build server-side applications, command-line tools, and more. You would say if I open a web ...
by Otto
Fri Mar 10, 2023 7:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: PostBack Server
Replies: 7
Views: 664

Change Footer colors (xBrowse)

Is there any example of an interactive color change in Footer (xBrowse) ?
by Natter
Thu Jan 26, 2023 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change Footer colors (xBrowse)
Replies: 10
Views: 912

Re: bKeyDown and interactive "close"

Very good! :-)
by Antonio Linares
Fri Nov 18, 2022 10:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bKeyDown and interactive "close"
Replies: 8
Views: 567

Re: bKeyDown and interactive "close"

hi, found Solution :D { | nKey, nFlag | IF( nKey = VK_RETURN,;  ( Syswait(0.1),DoCreateFolder( cSourceDir, cPath ), oWnd:End() ) ,;  IF( nKey = VK_ESCAPE, oWnd:End(), nil ) ) } i have used MsgInfo() before and cPath was empty() :( but...
by Jimmy
Fri Nov 18, 2022 10:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bKeyDown and interactive "close"
Replies: 8
Views: 567

Re: bKeyDown and interactive "close"

Use bKeyDown.
You can handle VK_RETURN and if you handle VK_KEYDOWN in your codeblock, return 0 else return NIL.
by nageswaragunupudi
Fri Nov 18, 2022 9:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bKeyDown and interactive "close"
Replies: 8
Views: 567

Re: bKeyDown and interactive "close"

hi, i have make more test and it is always GET where i have the Problem when have e.g. a LISTBOX i does work with bKeydown an ENTER (VK_RETURN) also VK_ESCAPE does work to "close" Window at all Controls --- when have many GET i can use ENTER, instead of TAB, to "jump" to next GET...
by Jimmy
Fri Nov 18, 2022 7:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bKeyDown and interactive "close"
Replies: 8
Views: 567

Re: bKeyDown and interactive "close"

DEFAULT clause seems to work fine with DIALOG but not with WINDOW: #include "FiveWin.ch"PROCEDURE Main()LOCAL cSourceDir := hb_dirbase()LOCAL cPath      := SPACE( 100 )LOCAL oDlg   DEFINE DIALOG oDlg TITLE "Create New Folder" SIZE ...
by Enrico Maria Giordano
Thu Nov 17, 2022 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bKeyDown and interactive "close"
Replies: 8
Views: 567

Re: bKeyDown and interactive "close"

Change,
Code: Select all  Expand view

oWnd:bKeyDown := { | nKey, nFlag | ...
 

by
Code: Select all  Expand view

oText_1:bKeyDown := { | nKey, nFlag | ...
 

and try
by cnavarro
Thu Nov 17, 2022 12:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: bKeyDown and interactive "close"
Replies: 8
Views: 567

Re: bKeyDown and interactive "close"

hi Antonio, i have made a small Sample #include "FiveWin.ch"PROCEDURE Main()LOCAL cSourceDir := hb_dirbase()LOCAL cPath      := SPACE( 100 )LOCAL oWnd, oLabel_1, oText_1, oBtn   DEFINE WINDOW oWnd FROM 0, 0 TO 180, 300 PIXEL TITLE "Create New Folder" NOMIN...
by Jimmy
Thu Nov 17, 2022 10:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bKeyDown and interactive "close"
Replies: 8
Views: 567

Re: bKeyDown and interactive "close"

Dear Jimmy,

Simply add clause DEFAULT to the button:

@ 080, 010 BUTTON oBtn PROMPT "&OK" SIZE 460, 50 PIXEL FONT oFontDefault ACTION DoCreateFolder( cSourceDir, cPath ) OF oWnd DEFAULT
by Antonio Linares
Thu Nov 17, 2022 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bKeyDown and interactive "close"
Replies: 8
Views: 567

bKeyDown and interactive "close"

hi, i have a GET and a BUTTON in oWnd now i want to use VK_RETURN for ACTION and close oWnd PROCEDURE MakeNewFolder()LOCAL cSourceDir := IF( nGridFocus = 1, cExpl_Left:oGrid:cPath, cExpl_Right:oGrid:cPath )LOCAL cPath      := SPACE( 100 )LOCAL oWnd, oLabel_1, oText_1, oBtn, o...
by Jimmy
Thu Nov 17, 2022 9:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bKeyDown and interactive "close"
Replies: 8
Views: 567
Next

Return to advanced search