画面遷移
/* 最初の画面(Form2) */ Form Form2 { Width = 800; Height = 600; Textbox Textbox1 { } Button Button1 { Function OnTouch(e) { Form2.Delete(); /*自分を消す*/ //.Get("Form3.crs", "Text="+ Textbox1.Value); /* ↑ エラーとなります。 */ } } }