I have started to learn how to use the Dialog editor within the Rumba Script Editor. I have been trying, maybe not the right syntax, to take a Text Box field and have the data go to a new line within the text box. I am trying to accomplish this because I have mutliple data points that make up one set of data. For example address scrap from Rumba might require scrapping from two different fields but I want the text to appear together in the Text Box. here is a sample code that I tried to use.
Sub Main
Begin Dialog Dialog_1 270,156,100,181, "Dialog_1"
TextBox 16,20,40,15, .Edit1
End Dialog
Dim Dialog_1Var As Dialog_1
Dialog_1.Edit1 = "TEST" & vbnewline & "SMARTS"
Dialog Dialog_1Var
End Sub
I even tried to use Chr(10) instead of vbnewline but it continues to put the text in one continuous line.
Any thoughts or ideas on how to make this possible where I could put Test and Smarts on two separate lines within the same text box?
#Rumba




