Search found 79 matches: terminate

Return to advanced search

WebView resize

... elseif hTemp['url'] == 'cancelform'` is met, the following actions are performed: logline("cancelform", ValToChar(hTemp)) oWebView:Terminate() oWebView:Destroy() Do you think it would be more effective to use a timer to monitor for resize events from the HTML code? What does oWebView:SetSize() ...
by Otto
Fri Mar 08, 2024 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2099

Re: TWebView window size

We have implemented two new METHODs in Class TWebView: METHOD End() INLINE ( ::Terminate(), ::Destroy() ) and METHOD hWnd() INLINE ::GetWindow() they will be available in next FWH build So the code can be simplified this way:   ACTIVATE DIALOG oDlg CENTERED ...
by Antonio Linares
Sat Feb 03, 2024 9:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView window size
Replies: 14
Views: 853

Re: WebView2 Essentials: Guides, Tips & Resources

... of the web view. SetParent(oWnd): Sets the parent window of the web view. SetUserAgent(cUserAgent): Sets the user agent string of the web view. Terminate(): Terminates the web view process. Additional Functions Bind(cName, pFunction) (Outside Class): A method for binding functions, with a default ...
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: App Termination and Relaunch.

... echoing in the batch file, so the commands themselves won't be displayed on the console. - `taskkill /F /IM your_app.exe`: This command forcefully terminates any running instances of your application named `your_app.exe`. Replace `your_app.exe` with the actual name of your executable. - `start ...
by Antonio Linares
Fri Oct 06, 2023 6:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: App Termination and Relaunch.
Replies: 5
Views: 396

Re: App Termination and Relaunch.

Yes, in Windows programming, you can terminate your application and then immediately relaunch it. There are several ways to achieve this, but one common approach is to use the `ShellExecute` function or the `CreateProcess` function to start ...
by Antonio Linares
Fri Oct 06, 2023 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: App Termination and Relaunch.
Replies: 5
Views: 396

App Termination and Relaunch.

Is there an easy way to terminate my app then immediately relaunch it. Obviously this is a workaround for a problem the app has but I need an immediate solution while trying to figure out what the main problem is. Thanks,
by byron.hopp
Fri Oct 06, 2023 6:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: App Termination and Relaunch.
Replies: 5
Views: 396

Re: Parameter for Timeout

... working in a other program. Nice and thanks if the screensaver stays active for xxx time, you could even force a close all and close dialog and terminate the program. Interesting idea
by Marc Venken
Thu Sep 21, 2023 9:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameter for Timeout
Replies: 17
Views: 787

Re: Webview question

...     (*f)();        delete f;      }    }  }  void terminate() { bRunning = FALSE; /* PostQuitMessage(0); */ } Finally we go to the script folder and run build.bat. The resulting DLLs are placed in c:\webview\dll\x86\ ...
by Antonio Linares
Sat Jul 01, 2023 7:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Webview question
Replies: 36
Views: 2931

Re: FWHMariaDB de Mr. Rao - problema con una tabla HELP!!

... terminar en ; es lo que le indica al motor de base de datos que alli finaliza la consulta u operacion. ";" is NOT AT ALL required to terminate an SQL statement. ";" is required only when concatenating more than one SQL statement, when executing multiple SQLs together in ...
by nageswaragunupudi
Tue Jun 20, 2023 6:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWHMariaDB de Mr. Rao - RESUELTO
Replies: 16
Views: 809

Re: Color a Groupbox Frame

... ? Regards, Carlos, thanks for your attention. As mister Rick Lipkin said it solved the problem and I don't intend to use third party classes. I terminate my participation. Although I was very curious to know why BPAINT.C doesn't compile with my version of BCC74. Thank you very much. Carlos, ...
by karinha
Tue Jun 13, 2023 2:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Color a Groupbox Frame
Replies: 23
Views: 1157

Re: Problem with OLE and Microsoft Word

You can find the process in Word memory (via WMI) as "OpusApp" and delete it
oProcess:Terminate()
by Natter
Fri Apr 07, 2023 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with OLE and Microsoft Word
Replies: 6
Views: 506

Re: Forcing to unlock a record

hi, when type "compmgmt.msc" i can "see" which File are open by which User you can "close" File to terminate Connection https://i.postimg.cc/VNH3zpRj/Compmgmt.png as i remember you can use a Powershell Script to get a List but you need access ...
by Jimmy
Thu Nov 17, 2022 8:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Forcing to unlock a record
Replies: 10
Views: 786

Re: TWebView:Destroy method does not close the window.

Hi Antonio,

Can you please to help me to create wrapper WebView_Terminate for msvc? It is in WebView.dll but I could not access.

Thanks.
by Horizon
Mon Aug 01, 2022 11:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView:Destroy method does not close the window.
Replies: 46
Views: 3080

Re: TWebView:Destroy method does not close the window.

Dear Giovany and Hakan, IMO WebView_Terminate() has no sense to be called as we don't need WebView_Run() as we use FWH own "run" main loop Given that, I have just tried this, following Giovany advise:    ACTIVATE WINDOW oWndChild ;       ON RESIZE oWebView:Set...
by Antonio Linares
Fri Jul 29, 2022 6:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView:Destroy method does not close the window.
Replies: 46
Views: 3080

Re: IE

How do I open a WebView in my application window? How do I upload an html file to WebView ? Is it possible to get an example of using functions webView.dll : webview_bind webview_destroy webview_dispatch webview_eval webview_get_window webview_init webview_return webview_set_size webview_set_title w...
by Natter
Thu Jun 02, 2022 6:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1680
Next

Return to advanced search