Search found 503 matches: operation

Return to advanced search

Re: XAMPP through PortableApps.com or Server2Go

... But if I use mod harbour code I get: Error COMPILER/(1001) 30 Description Syntax error "syntax error at 'PARAMS'" Operation Line: 8 Best regards, Otto     function main()        local cHtml := ''         ...
by Otto
Thu Feb 29, 2024 7:27 pm
 
Forum: mod_harbour
Topic: XAMPP through PortableApps.com or Server2Go
Replies: 11
Views: 9269

Re: Switching my setup program to webview2

... "File", "Marketing". The window is opened on the "General" tab, which contains input fields for basic operation information, such as name, address, bank account details, value-added tax identification number (VAT ID), phone, fax, email, homepage, operation ...
by Otto
Sat Feb 10, 2024 6:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching my setup program to webview2
Replies: 9
Views: 404

Re: Nages, 2 diferent Db's update

... aValues, .T. )  // .T. indicates UPSERT Now, this insert/update happens with all the rows (selected by where clause). If this is a regular operation and we like to transfer from local to remote only those records inserted or modified recently, the process can be optimized if we have a timestamp ...
by nageswaragunupudi
Wed Jan 17, 2024 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages, 2 diferent Db's update
Replies: 2
Views: 721

Re: Problem with tget numeric

Silvio, do you have an image of the operation of how PAPER is made? Silvio, ¿tienes una imagen del funcionamiento de como se hace en el PAPEL a mano? Saludos. this request is not relevant to the topic of this discussion, you don't know how ...
by Silvio.Falconi
Wed Jan 17, 2024 5:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1424

Re: Problem with tget numeric

Silvio, do you have an image of the operation of how PAPER is made?

Silvio, ¿tienes una imagen del funcionamiento de como se hace en el PAPEL a mano?

Saludos.
by karinha
Wed Jan 17, 2024 1:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1424

Re: Problem with tget numeric

... because there are many types of bread and imagine for each shop the operator has to insert as many lines as the types of bread ordered, so the operation must be very fast and this operation is done every day now it is still done by hand with a pen on a paper model. It is not easy to understand ...
by Silvio.Falconi
Tue Jan 16, 2024 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1424

Re: How does mod harbour work

... harbour work". On some occasions I get very useful error messages - like for example Error: LOCAL declaration follows executable statement operation: line:593 called from: HB_COMPILEFROMBUF, line: 0 called from: ..\source\exec.prg, EXECUTE, line: 68 Source: 0066: cPRGPATH := hb_GetEnv( ...
by Antonio Linares
Mon Jan 15, 2024 12:38 pm
 
Forum: mod_harbour
Topic: How does mod harbour work
Replies: 8
Views: 1188

Re: How does mod harbour work

... harbour work". On some occasions I get very useful error messages - like for example Error: LOCAL declaration follows executable statement operation: line:593 called from: HB_COMPILEFROMBUF, line: 0 called from: ..\source\exec.prg, EXECUTE, line: 68 Source: 0066: cPRGPATH := hb_GetEnv( ...
by Ruth
Mon Jan 15, 2024 9:35 am
 
Forum: mod_harbour
Topic: How does mod harbour work
Replies: 8
Views: 1188

file ID in the Windows file system

... to access a file or other input/output resource, such as a pipe or network connection. File handles are used in system programming to manage file operations. When a program opens a file, the operating system creates a file handle to keep track of the file and operations performed on it. This handle ...
by Otto
Fri Jan 05, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 628

Re: Question about deleting files and the trash

hi,

i´m not sure if there is a simple API Call. i use SHFile() Operation like Explorer

when set Flag FOF_ALLOWUNDO it will move deleted Files into Recycle-bin
have a look at https://forums.fivetechsupport.com/viewtopic.php?t=42417
by Jimmy
Thu Dec 21, 2023 10:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about deleting files and the trash
Replies: 11
Views: 1184

Re: Inserting a string with CRLF into a single-line TGet.

... check which way to make these changes ? No use at all. By this time, Windows OS has already read the Clipboard contents and completed the paste operation truncating the text from CRLF onwards. We have no way to know what is the original text.
by nageswaragunupudi
Tue Dec 12, 2023 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 893

Re: copy a row of xbrowse

... test use a dbf ( demo) and take the aData from dbf when the dialog is close it save on dbf https://i.postimg.cc/RZMp8ZJJ/uuuuu.gif Operation to do 1. copy a record 2 paste the record 3 modify a record sample change the desc and press ok 4. you 'll see it changed two record ( the ...
by Silvio.Falconi
Tue Dec 05, 2023 12:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5769

Re: DBF . Commit

... Harbour behavior presented on different Clipper related forums. In Harbour and Clipper: 1. When record or table is unlocked then just before this operations RDD writes all local modifications in table and index files. 2. DBSKIP(0) just like DBGOTO( RECNO() ) writes all local modifications (if ...
by Carles
Mon Oct 23, 2023 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2323

Re: DBF . Commit

... output? Anyway, you mixed the R lock flavor and the normal lock flavor. With DBRLOCK() you must use DBRUNLOCK(). And furthermore, APPEND BLANK operation locks the newly appended record so there is no need of another lock.
by Enrico Maria Giordano
Sun Oct 22, 2023 5:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2323

Re: DBF . Commit

... must issue a COMMIT after all database update commands (e.g., APPEND, REPLACE). To insure data integrity, COMMIT should be issued before an UNLOCK operation. Refer to the “Network Programming” chapter for more information on update visibility. " Regards, saludos.
by karinha
Fri Oct 20, 2023 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2323
Next

Return to advanced search