[サンプルコード]
/*最初の画面(Form2)*/
Form Form2 {
Width = 800;
Height = 600;
Textbox Textbox1 {
}
Button Button1 {
Function OnTouch(e) {
Form2.Delete(); /*自分を消す*/
//.Get("Form3.crs");
//.Form3.Parset (Textbox1.Value);
/*Form3の関数を呼ぶ*/
}
}
}
/*次の画面(Form3)*/
Form Form3 {
Width = 800;
Height = 600;
Function Parset(p1) {
Form3.Textbox1 = p1;
}
Textbox Textbox1 {
}
} |