Copy and Paste issue with TGET and FWMariaDb *Fixed*

User avatar
dutch
Posts: 1584
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand
Has thanked: 4 times
Been thanked: 4 times

Re: Copy and Paste issue with TGET and FWMariaDb

Post by dutch »

Dear Ertan,

I used xHarbour 1.2.3 Intl. (SimpLex) (Build 20221118).
I changed xHarbour to older version xHarbour 1.2.3 Intl. (SimpLex) (Build 20201212), it's still the same problem.
ertan wrote: Wed Apr 23, 2025 10:02 am Dear Dutch,

I try reproduce your error and analysis this with xHarbour

Best regards,

Ertan Hakan ÖZTÜRK
ertan_ozturk@yahoo.com
Regards,
Dutch

FWH 2304 / xHarbour Simplex 1.2.3 / BCC73 / Pelles C / UEStudio
FWPPC 10.02 / Harbour for PPC (FTDN)
ADS V.9 / MySql / MariaDB
R&R 12 Infinity / Crystal Report XI R2
(Thailand)
User avatar
ertan
Posts: 36
Joined: Wed Jul 26, 2023 12:08 pm
Location: Istanbul, Turkiye
Been thanked: 2 times

Re: Copy and Paste issue with TGET and FWMariaDb

Post by ertan »

Dear Dutch,

The problem is not caused by xHarbour

Please check your email,

Best regards,
Ertan Hakan ÖZTÜRK

ertan_ozturk@yahoo.com
User avatar
dutch
Posts: 1584
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand
Has thanked: 4 times
Been thanked: 4 times

Re: Copy and Paste issue with TGET and FWMariaDb

Post by dutch »

Hi Antonio,

I still struck with this issue (FWH2304). Previous version, I use FWH1901 without this problem. Could you help to fix it please.

Thanks in advance,
Antonio Linares wrote: Mon Apr 21, 2025 8:21 am Dear Dutch,

This example is working fine here with Harbour and xHarbour, when pasting on the first GET:

modified maria02.prg

Code: Select all | Expand

#include "fivewin.ch"

static aStr := { "localhost,fwh,fivetec1_antonio,1234" }

static oCn

//----------------------------------------------------------------------------//

function Main()

   local oRs, cSql, oDlg

   FWSetLanguage( 1 )
   FW_SetUnicode( .t. )

   if ( oCn := maria_Connect( aStr[ 1 ], .t. ) ) != nil

      TEXT INTO cSql
         SELECT C.ID AS CustID, C.FIRST AS CustName, C.AGE AS AG, C.STATE AS ST, S.NAME AS StateName
         FROM customer C
         LEFT OUTER JOIN states S ON C.STATE = S.CODE
         ORDER BY CUSTID
      ENDTEXT

      oRs   := oCn:RowSet( cSql )

      DEFINE DIALOG oDlg 

      @ 1, 1 GET oRs:CustName OF oDlg 

      @ 3, 1 GET oRs:St OF oDlg 

      ACTIVATE DIALOG oDlg CENTERED

      oCn:Close()

   endif

return nil


Regards,
Dutch

FWH 2304 / xHarbour Simplex 1.2.3 / BCC73 / Pelles C / UEStudio
FWPPC 10.02 / Harbour for PPC (FTDN)
ADS V.9 / MySql / MariaDB
R&R 12 Infinity / Crystal Report XI R2
(Thailand)
User avatar
Antonio Linares
Site Admin
Posts: 42836
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 169 times
Been thanked: 123 times
Contact:

Re: Copy and Paste issue with TGET and FWMariaDb

Post by Antonio Linares »

Dear Dutch,

Already sent by email a working 2304 version

Waiting for your feedback
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
dutch
Posts: 1584
Joined: Fri Oct 07, 2005 5:56 pm
Location: Thailand
Has thanked: 4 times
Been thanked: 4 times

Re: Copy and Paste issue with TGET and FWMariaDb

Post by dutch »

Dear All,

After Antonio help, the issue has fixed and work perfectly now.

Thank you so much for your kind support.
Antonio Linares wrote: Fri Apr 25, 2025 3:14 am Dear Dutch,

Already sent by email a working 2304 version

Waiting for your feedback
Regards,
Dutch

FWH 2304 / xHarbour Simplex 1.2.3 / BCC73 / Pelles C / UEStudio
FWPPC 10.02 / Harbour for PPC (FTDN)
ADS V.9 / MySql / MariaDB
R&R 12 Infinity / Crystal Report XI R2
(Thailand)
Post Reply