|
> No.3314[元記事へ]
!インプット・ウィンドウの、左上位置(x0,y0)と、幅(xw,yw) ・・・縦幅は、規定寸? yw は無効。
! x0, y0, xw, yw,
CALL SetWindowPos( WinHandle("INPUT" ),0, 100,300,700, 50, 0)
SUB SetWindowPos( handle,C2, x0,y0,xw,yw, nFLG) !nFLG: 0=x0y0xwyw 1=x0y0 2=xwyw
ASSIGN "user32.dll","SetWindowPos"
END SUB
SET ECHO "OFF"
INPUT PROMPT "メダルを何枚購入しますか?半角で入力(長文テスト)メダルを何枚購入しますか?半角で入力" :w$
PRINT w$
END
|
|