フォーム名を調べる
ページの全てのフォーム名を調べるのは以下のとおり。

for i=0 to IE.document.forms.length - 1
	print IE.document.forms[i].name
next

Back to top

Information