最大行数の取得方法でもかまいません、教えてください。
スクリプトは、Kpanさんのを少し改造しております。
勝手にありがとうございます。
http://lhsp.s206.xrea.com/hsp_object4.html#8
; ソート機能付きリストボックス表示サンプル (by Kpan)改
#uselib "gdi32" #cfunc GetStockObject "GetStockObject" int ; ソート機能付きリストボックス ($2=LBS_SORT) winobj "listbox", "", $200, $50200001 | $2, 150, 400 hListbox = objinfo(stat, 2) ; sysfont命令「デフォルトGUIフォント」相当適用 sendmsg hListbox, $30, GetStockObject(17) pos 170, 40 : sdim a : input a, 100 button "追加", *add button "読む", *get sdim list_text stop *add if a = "" : stop ; 項目追加 (LB_ADDSTRING) sendmsg hListbox, $180, , a ; 入力ボックスを空に objprm 1, "" stop *get n=0 sendmsg hListbox, $189, n, varptr(list_text) //n行目をlist_textに取得 color 255,255,255 : boxf : color : pos 300,0 mes "取得データ↓\n"+list_text stop