wrote :: 2006.01.17
↑ <form> 文字列を入力してください <input type="text" name="input"> <input type="submit" value="実行"> </form>
IE.Document.Forms(0).Elements("input").Value = "入力する文字列"
IE.Document.Forms(0).Submit
↑ <form> アップロードするファイルを指定してください <input type="file" name="upfile"> <input type="submit" value="アップロード"> </form>
IE.Document.Forms(0).Elements("upfile").Value = "C:\Sample.txt"