andrei0x309 Posted October 4, 2007 Posted October 4, 2007 (edited) Ok i have this ; some code $rez = GUICtrlCreateEdit("", 40, 192, 505, 305) ;other code ; and then this GUICtrlSetData($rez , "Numar crt : " & $aColumnA[$var] & @CRLF _ & "Numar Index : " & $aColumnB[$var] & @CRLF _ & "Denumire Chimica : " & $aColumnC[$var] & @CRLF _ & "Alte denumiri : " & $aColumnD[$var] & @CRLF _ & "Nr Ec : " & $aColumnE[$var] & @CRLF _ & "Nr CAS : " & $aColumnF[$var] & @CRLF _ & "Simbol Pericol : " & $aColumnG[$var] & @CRLF _ & "FRAZE R : " & $aColumnH[$var] & @CRLF _ & "Incompatibilitati : " & $aColumnI[$var] & @CRLF ) ;some code The above code is just a part my script . My script works fine ... The problem is that what is set in the Edit control is not on new lines how i want it ... @LF @CR @CRLF don't help me And i don't want to send enter to break lines if u know other way to make new lines in a Control edit please help me Edited October 4, 2007 by Azraelsub7
GaryFrost Posted October 4, 2007 Posted October 4, 2007 _GUICtrlEdit_AppendText in beta 3.2.9.2 or above SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
Nahuel Posted October 4, 2007 Posted October 4, 2007 Does this work? ; some code $rez = GUICtrlCreateEdit("", 40, 192, 505, 305) ;other code ; and then this GUICtrlSetData($rez ,GUICtrlRead($rez)& "Numar crt : " & $aColumnA[$var] & @CRLF _ & "Numar Index : " & $aColumnB[$var] & @CRLF _ & "Denumire Chimica : " & $aColumnC[$var] & @CRLF _ & "Alte denumiri : " & $aColumnD[$var] & @CRLF _ & "Nr Ec : " & $aColumnE[$var] & @CRLF _ & "Nr CAS : " & $aColumnF[$var] & @CRLF _ & "Simbol Pericol : " & $aColumnG[$var] & @CRLF _ & "FRAZE R : " & $aColumnH[$var] & @CRLF _ & "Incompatibilitati : " & $aColumnI[$var] & @CRLF ) ;some code
andrei0x309 Posted October 4, 2007 Author Posted October 4, 2007 _GUICtrlEdit_AppendText in beta 3.2.9.2 or aboveThanks a lot for helping me .
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now