Search found 26 matches: guaranteed

Return to advanced search

Re: Open XLS without Excel

... No libraries, drivers or OleDB providers are required. This function directly reads from the xlsx file and extracts the data. So this is guaranteed to work on an computer. Example out put: https://imagizer.imageshack.com/v2/xq70/923/XuBkAQ.png If you like send any large ...
by nageswaragunupudi
Wed Dec 11, 2024 2:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Open XLS without Excel
Replies: 11
Views: 605

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... you are working with pointer arithmetic in a way that needs to be independent of pointer size, you can cast to uintptr_t. This is a type that is guaranteed to be able to hold a pointer regardless of whether the platform is 32-bit or 64-bit.
by nnicanor
Tue Sep 24, 2024 9:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 3088

Re: GDIP Application crash tBitmap

... any number of INIT PROCEDUREs. All INIT PROCEDUREs will be executed at the start up of the application. The INIT PROCEDURE in the Main module is guaranteed to execute FIRST. Other INIT PROCEDURES may be executed in any order. So TGDIPLUS.PRG having an INIT PROCEDURE should not cause any problems. ...
by Giovany Vecchi
Wed Apr 12, 2023 5:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GDIP Application crash tBitmap
Replies: 12
Views: 1426

Re: GDIP Application crash tBitmap

... any number of INIT PROCEDUREs. All INIT PROCEDUREs will be executed at the start up of the application. The INIT PROCEDURE in the Main module is guaranteed to execute FIRST. Other INIT PROCEDURES may be executed in any order. So TGDIPLUS.PRG having an INIT PROCEDURE should not cause any problems.
by nageswaragunupudi
Wed Apr 12, 2023 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GDIP Application crash tBitmap
Replies: 12
Views: 1426

Re: MySql Nativa Transacciones. At. Mr. Rao

from help of xharbour FINALLY The finally section is guaranteed to be executed, no matter if an error was handled or not. in you example FINALLY::oServer:CommitTransaction()END  The commit would be executed even when there is an error? Anyway, ...
by carlos vargas
Sat Sep 18, 2021 3:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql Nativa Transacciones. At. Mr. Rao
Replies: 26
Views: 3782

Re: check existing first and last on customer

Silvio, I have the primary keys, the customer database is indexed on name, surname, city, province and region. That is not guaranteed to be unique, and it takes up way to much space on the disk. You need to use an ID number. the primary key that was there before, ie "0001" ...
by James Bott
Mon Jun 14, 2021 5:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check existing first and last on customer - RESOLVED !!!
Replies: 23
Views: 3572

Re: to Nages: test for tdatabase

... date() ) + "/" + time() ,oRec:Save(), lExit := .t., oDlg:End() ) The customer numbers are one after the other but chronology is not guaranteed. Best regards Otto http://mybergland.com/FWForum/Clip6.jpg
by Otto
Sat Apr 27, 2019 1:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 7679

Re: To Nages : Explain me how I must make this tdatabase

... Mr. Silvio Please test this sample. This displays the ID for new record. It is guaranteed that no other user will save a record with the same ID. If you like this approach, you may adopt to your situation. If you do not like, ignore ...
by nageswaragunupudi
Thu Apr 25, 2019 8:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages : Explain me how I must make this tdatabase
Replies: 18
Views: 4448

Re: Tdata still Up to Date ?

... and maintain. These concepts do take some time to get your head around, but there will come a time when you get to the "Ah Ha" moment. Guaranteed! Then you will never go back. As Tim mentioned you can get large reductions in your code by using granularity and inheritance. For instance ...
by James Bott
Thu Jun 01, 2017 3:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tdata still Up to Date ?
Replies: 25
Views: 6278

Re: ADO and Lock

James,

With adordd with SET ADO FORCE LOCK ON no other user or other app (using clipper compatible locking) can alter the table lock or exclusive or record locked hold by you.

With this set ON the FILE LOCK, RECORD LOCK, EXCLUSIVE USE are guaranteed.
by AHF
Wed Aug 26, 2015 8:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO and Lock
Replies: 27
Views: 8144

Re: DBF to SQL converter program

...      5666             240409InvNumb         50344           240555  And I thought GUIDs were NOT guaranteed to be unique. As I understand it, they just have a very low probability of collision. Well, there are different GUID lengths. However, if ...
by reinaldocrespo
Tue Aug 25, 2015 7:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 21030

Re: DBF to SQL converter program

... id, then try having a GUID field. GUIDs are implemented by most SQL engines and are auto generated when inserting a new record. A GUID is guaranteed to be GLOBALLY unique. I use these ID's for things like customer numbers, invoice numbers, etc. so they do need to be printable, readable ...
by James Bott
Tue Aug 25, 2015 6:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 21030

Re: DBF to SQL converter program

... id, then try having a GUID field. GUIDs are implemented by most SQL engines and are auto generated when inserting a new record. A GUID is guaranteed to be GLOBALLY unique. (2) implement transactions. Most SQL engines allow you to start-end-roll back a transaction. Records involved during ...
by reinaldocrespo
Tue Aug 25, 2015 5:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL converter program
Replies: 59
Views: 21030

Re: ADO RDD xHarbour

... .... .... skip enddo resetseek() //returning to previous recordset go to nreg //it might work if we save and restore previous set otherwise it not guaranteed. Besides this it seems that all navigation,relations, seek, find,adding records and updating through the recordset its close to an end. :D ...
by AHF
Wed Apr 08, 2015 5:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 493496

Re: Next target: EasyReport !!! :-)

... products that you have in your website as I am sure that FWH users may find them very usefull. My idea is to turn them open source so that way its guaranteed that they will remain alive and used for many years. Many thanks for your understanding and help along all this years, and thanks for helping ...
by Antonio Linares
Wed Jul 02, 2014 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Next target: EasyReport !!! :-)
Replies: 61
Views: 16870
Next

Return to advanced search