Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[ALLY] Passing variables from window to window Re:(2)

From: greg_piney::mcgraw-hill::com at: 2-Aug-2000 10:37

Mike, I guess I am a poor explainer of my problem. A better explanation of my problem is: I get a field in win-1 Based on the contents of that field, I read a config file and get the matching record.
>From that record, I get 4 new variables. ;so far, so good
I want to display the contents of those 4 new variables in win-2 as text or labels. You got me closer, but still no banana. TIA, Greg Piney S&P Web Engineering [mdb--gci--net] on 08/01/2000 07:04:23 PM Please respond to [ally--rebol--com] To: [ally--rebol--com] cc: (bcc: Greg Piney/McGraw-Hill/US) Subject [ALLY] Passing variables from window to window : Re: Greg, This code should do what you want, with the entered name showing up in label1 in win-2. Note however that i had to initialise label1 with all those x's, it won't work if you don't ?? Mike. REBOL [] win-1: layout [ size 400x100 across label "Enter your name?" you-are: field 75x20 return button "OK!" [ view/new win-2 label1/text: you-are/text show label1 ] ] win-2: layout [ across label "Hello" label1: label "xxxxxxxxxxxxxxxxxxxx" return button "ok" [quit] ] system/view/vid/vid-feel/focus you-are view win-1