This is the sample app.
Code: Select all | Expand
#include "FiveWin.ch"
function TestGetPic
local oDlg, oGet
local cGet := "123456789012345"
DEFINE DIALOG oDlg SIZE 200,200 PIXEL TRUEPIXEL
@ 30,30 GET oGet VAR cGet ;
SIZE 150,20 PIXEL OF oDlg
@ 80,30 BUTTON "OK" SIZE 80,30 PIXEL OF oDlg ACTION (oDlg:End())
ACTIVATE DIALOG oDlg CENTERED
? "cGet = ",cGet
return nil
2. "6789012345" copy this. (select numbers between quotation marks)
3. focus on app that is compiled before.
4. Select all in Get. and paste (selected text "6789012345" in 2. order)
5. The oGet shows only "6789012345" that is should be.
6. press OK button.
7. cGet variables says "678901234512345"
I think It should be "6789012345".
Any idea? (I use fwh 24.02 and harbour 32 bits)