Form CmbB_006_1 {
X = 0;
Y = 0;
Width = 291;
Height = 122;
ComboBox ComboBox1 {
X = 6;
Y = 47;
Width = 158;
Height = 175;
ComboItem ComboItem1[4];
Function OnTouch( e ) {
Value = mid(Value,0,10,0);
}
}
Button Button1 {
X = 174;
Y = 46;
Width = 88;
Height = 23;
Title = "フォーカス移動用";
FontSize = 8;
}
if ( !$DESIGNTIME ) {
var csvdata = new CsvDocument << CSV{
1234567890
12345678901
123456789012
1234567890123
};
this.ComboBox1.ComboItem1 << csvdata;
}
}
|