Search found 699 matches: finally

Return to advanced search

Re: Xbrowse complex export to dbf challenge...

... You can replace all the colons with a comma to create a standard comma delimited file. Then just append the comma delimited records into the DBF. Finally browse the DBF. Actually, you will need to strip out the fieldnames before you browse the file. I would append the records (with fieldnames) ...
by Marc Venken
Sun Oct 31, 2021 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse complex export to dbf challenge...
Replies: 4
Views: 603

Re: Xbrowse complex export to dbf challenge...

... You can replace all the colons with a comma to create a standard comma delimited file. Then just append the comma delimited records into the DBF. Finally browse the DBF. Actually, you will need to strip out the fieldnames before you browse the file. I would append the records (with fieldnames) ...
by James Bott
Sun Oct 31, 2021 12:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse complex export to dbf challenge...
Replies: 4
Views: 603

Re: FWTool to automate DBF and mod harbour

...  "ADDRESS1" ];document.getElementById( "address2" ).value = object[  "ADDRESS2" ]; 5) And finally, JavaScript code which converts the values of the form back into a JSON object. JS object[ "ADDRESS1" ] = document.getElementById("address1").value; ...
by Otto
Tue Oct 26, 2021 5:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWTool to automate DBF and mod harbour
Replies: 12
Views: 1222

Re: Gluing images

... hBmp, hDib now you paint your bitmaps on hDCMem this way: hBmp = ReadBitmap( 0, "name.bmp" ) PalBmpDraw( hDCMem, nRow, nCol, hBmp ) Finally you save it and clean: DibWrite( cFileName, DibFromBitmap( hBitmap ) ) SelectObject( hDCMem, hPrev ) DeleteObject( hBitmap ) DeleteDC( hDCMem ...
by Antonio Linares
Tue Oct 12, 2021 5:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Gluing images
Replies: 8
Views: 728

Starting with Windows 365

Today we got our Windows 365 finally :-)

Already working with it.

Are there any other Windows 365 users here ?
by Antonio Linares
Fri Sep 24, 2021 2:26 pm
 
Forum: Utilities / Utilidades
Topic: Starting with Windows 365
Replies: 1
Views: 463

Re: MySql Nativa Transacciones. At. Mr. Rao

... It supports BEGIN SEQUENCE/END SEQUENCE only. xHarbour supports both. fivewin.ch translates TRY/CATCH to BEGIN/END SEQUENCE for Harbour users. FINALLY also is translated. Your observation about FINALLY is right.
by nageswaragunupudi
Sat Sep 18, 2021 3:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql Nativa Transacciones. At. Mr. Rao
Replies: 26
Views: 2728

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 ...
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: 2728

Re: MySql Nativa Transacciones. At. Mr. Rao

... INTO ... ") ::oServer:Execute( "INSERT INTO ... ") ::oServer:Execute( "INSERT INTO ... ") CATCH oErr ::oServer:RollBack() FINALLY ::oServer:CommitTransaction() END De esta manera salta solo por el catch Saludos.
by Ariel
Sat Sep 18, 2021 11:05 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql Nativa Transacciones. At. Mr. Rao
Replies: 26
Views: 2728

Re: MySql Nativa Transacciones. At. Mr. Rao

... INTO ... ") oServer:Execute( "INSERT INTO ... ") oServer:Execute( "INSERT INTO ... ") CATCH oErr oServer:RollBack() FINALLY oServer:CommitTransaction() END De esta forma SI funciona el break automaticamente por el error. Saludos.
by Ariel
Sat Sep 18, 2021 10:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql Nativa Transacciones. At. Mr. Rao
Replies: 26
Views: 2728

Re: Lookup method of Tdatabase

... then check results ? then keep adding more clauses. Just to find where the error may come from. Method LookUp() just does a standard LOCATE FOR finally Antonio My old function was Function IsFree2(cCamera,cTypeRoom,dCheckOut,dCheckIn,oReserva)   local  lFree:=.F.   local nBottomScope, ...
by Silvio.Falconi
Sun Aug 15, 2021 8:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lookup method of Tdatabase
Replies: 44
Views: 3172

Re: Lookup method of Tdatabase

Silvio,

Could you try it with a simpler expression like "ROOM_ID == ?" and then check results ?

then keep adding more clauses. Just to find where the error may come from.

Method LookUp() just does a standard LOCATE FOR finally
by Antonio Linares
Sun Aug 15, 2021 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lookup method of Tdatabase
Replies: 44
Views: 3172

Re: FTP: Request to share samples

Hello Mr. Nages,

On one occasion I was required to use SFTP. I searched and searched in Fwh and Harbour and found no way. I finally had to rely on FTP

Regards
by hmpaquito
Wed Apr 28, 2021 8:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP: Request to share samples
Replies: 22
Views: 2909

Re: DBF to SQL

Hacan, Yes, that was my problem before. I have a 32 bit license for a spell checker. They made no improvements, but finally compiled it as 64 bit but wanted a very expensive fee for the "upgrade". I think I had a couple of other libraries also that were only 32 bit and ...
by TimStone
Wed Apr 21, 2021 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL
Replies: 14
Views: 1742

Re: link in my own library

... in apache.prg add your functions names as "extern" https://github.com/FiveTechSoft/mod_harbour/blob/master/source/apache.prg Finally run go64.bat and you will get your mod_harbour with your extra PRGs (or libraries) built in https://github.com/FiveTechSoft/mod_harbour/blob/master/windows/go64.bat
by Antonio Linares
Wed Apr 14, 2021 9:08 am
 
Forum: mod_harbour
Topic: link in my own library
Replies: 4
Views: 576

API Bancaria (SOLUCIONADO)

... attached. This endpoint issues a web browser redirection to the BBVA Connect login page. If necessary, also shows the scope approval page. Finally, another web browser redirection is made to the application’s redirect_uri, attaching a query parameter with the Authorization Code. With that ...
by gmart1
Mon Apr 12, 2021 8:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: API Bancaria (SOLUCIONADO)
Replies: 17
Views: 2488
PreviousNext

Return to advanced search