Search found 167 matches: processes

Return to advanced search

Re: Question about performance RowSet

... "aa","bb" }     oCn:Upsert( "states", nil, { aRow } )endif But insert not work. I have many processes for generating payroll for workers (40 thousand workers) in which the above situation occurs.
by Eroni
Wed Mar 20, 2024 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 4039

WebView2 Essentials: Guides, Tips & Resources

... (HTML, CSS, and JavaScript) into native applications. When an application uses WebView2, it essentially opens a series of Edge browser processes in the background. Each process serves a different purpose: Browser Process: The main process that manages the user interface, handles navigation, ...
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: Soap Web Service - timeout request

... Thank you. Question, if I set nSecs = 5 and responses comes back faster, will it still wait 5 seconds or process immediately? Does not wait. Processes immediately. Also for additional information: httprequest method SetTimeOuts( nResolveTimeOut, nConnectTimeOut, nSendTimeOut, nReceiveTimeOut) ...
by nageswaragunupudi
Tue Jan 09, 2024 4:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap Web Service - timeout request
Replies: 4
Views: 706

Re: Help splitting up a character address string

... source code more readable and maintainable. It seems to function as both a patcher and a preprocessor, helping to organize and streamline coding processes in mod_harbour applications​​. In Fivewin environments, Harbourino assists in breaking down complex functions into simpler, more manageable ...
by Otto
Wed Nov 15, 2023 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Re: ID of the new process

Your approach of comparing the lists of processes before and after creating the OLE object using WMI (Windows Management Instrumentation) is a reasonable way to identify the new process associated with the OLE object. However, there are a few ...
by Antonio Linares
Tue Nov 14, 2023 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ID of the new process
Replies: 2
Views: 321

ID of the new process

... an OLE object of an application (for example, Word), a new process is created. How do I get the ID of this process ? I can make 2 lists of oWmi processes:ExecQuery("select * from Win32_Process where Name=") before and after creating the OLE object, and then compare them. But maybe ...
by Natter
Tue Nov 14, 2023 11:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ID of the new process
Replies: 2
Views: 321

Re: Introducing FiveTech's fivedit

... rapidez en algunos procesos, mejoras estéticas e integración mejorada con GitHub ( ya explicaré esto en próximos posts ) Stability, speed in some processes, aesthetic improvements and improved integration with GitHub (I will explain this in future posts)
by cnavarro
Mon Oct 30, 2023 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing FiveTech's fivedit
Replies: 560
Views: 107377

Re: DBF . Commit

Hi,

Thus to insure updates are visible to other processes, you must issue a COMMIT after all database update commands


Which is the problem ?

C.
by Carles
Fri Oct 20, 2023 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2343

Re: DBF . Commit

... database and index buffers, but only a COMMIT will flush the buffers and perform a solid-disk write. Thus to insure updates are visible to other processes, you must issue a COMMIT after all database update commands (e.g., APPEND, REPLACE). To insure data integrity, COMMIT should be issued before ...
by karinha
Fri Oct 20, 2023 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2343

Re: hb_cdxPageSeekKey how to intercept this error

Hi, 1st. Please show your hb_out.log last trace error 2st. My index corrupted test, used at init critical processes To use: lCompruebaIndice("Customer") //-------------------------------------------------------------------------//// Poner este control antes de empezar ...
by paquitohm
Thu Oct 19, 2023 7:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_cdxPageSeekKey how to intercept this error
Replies: 18
Views: 769

Using free AI power from our Harbour apps !!!

... the code) that they just were creating a process with the EXE and routing stdin and stdout, so I thought it is a perfect ocassion to use the great processes functions developed by Przemek! Next we are going to use it as a process from Harbour: go.bat @setlocal@call "%ProgramFiles%\Microsoft ...
by Antonio Linares
Fri Mar 31, 2023 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using free AI power from our Harbour apps !!!
Replies: 20
Views: 1674

libcurl issues

I have successfully used libcurl for some processes, but for a new task, I have uncovered two issues: curl_easy_setopt(hCurl, HB_CURLOPT_FOLLOWLOCATION, 1L) . When trying to compile this, Harbour errors at the L ( in 1L ). This is a standard call. ...
by TimStone
Fri Feb 10, 2023 10:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: libcurl issues
Replies: 6
Views: 461

Re: ChromeDriver - WebDriver for Chrome

... fill in the username and password via our Fivewin, then search for specific data, fetch the data from the HTML table to Excel etc all these processes can be done in an automated manner. Has anybody here already done this using SeleniumBasic ? Here is the link to download the tool https://github.com/florentbr/SeleniumBasic/releases/tag/v2.0.9.0 ...
by anserkk
Thu Jan 19, 2023 5:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ChromeDriver - WebDriver for Chrome
Replies: 9
Views: 1105

Re: Fighting Xbrowse and lozing !!!

I also noticed that just clicking the arrow to right, it processes the debug function 65 times and hitting the arrow to go left just 13 times ??? while I would think that just moving to a cell, the debug would not be called once. Commenting this code ...
by Marc Venken
Thu Dec 22, 2022 10:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fighting Xbrowse and lozing !!!
Replies: 18
Views: 1569

Re: Can you use a field named End with Class TDataBase ? yes!

... a Close() method , which is the old DBase command to close a file. However, when using objects it helps to use the same method names for similar processes, thus changing the method Close() to End() made data objects consistent with all the other types of objects--just like the New() method is ...
by wartiaga
Tue Feb 22, 2022 12:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can you use a field named End with Class TDataBase ? yes!
Replies: 15
Views: 965
Next

Return to advanced search