TextBox TextBox1 {
X = 44;
Y = 209;
Width = 288;
Height = 27;
String cliptext = "";
Function OnGetFocus( e ) {
/* クリップボードの文字列を保存 */
cliptext = //.PasteString();
/* クリップボードを空にする */
//.CopyString("");
}
Function OnLostFocus( e ) {
/* 保存していた文字列をクリップボードに戻す */
//.CopyString(cliptext);
}
}
|