If a select the text in oGet1 and press CTRL_C
Then I move in the second get oGet2
And Press CTRL_V
I find only "Marco "
Any hints?
marco
- Code: Select all Expand view
- #include "fivewin.ch"
#define crlf CHR(13)+CHR(10)
FUNCTION main()
local oDlg
local oGet1 , cGet1 := "Marco " + crlf + "Boschi "
local oGet2 , cGet2 := "Enrico Maria Giordano "
define dialog oDlg
@ 1,1 get oGet1 var cGet1 of oDlg
@ 2,1 get oGet2 var cGet2 of oDlg
ACTIVATE DIALOG oDlg CENTER
return nil