タイトル | : "開く"処理について |
記事No | : 13334 |
投稿日 | : 2009/01/04(Sun) 21:59 |
投稿者 | : 夜叉 |
こんばんは。 今、チャットログファイルのhtmlを 読み込むだけの簡易Webブラウザを作っているんですが 開くの処理でつまずいています。。
ほとんど知識なくていろいろネットで調べてやっとここまで作った のですがうまく行かずです>< 症状としては"パス名が無効です"とでて困っています><
よろしければどこが不備なのかご教授お願いします><
Private Sub hiraku_Click() Dim FileName As String Const ExcelFileName = "C:\Program Files\Internet Explorer\iexplore.exe"
With CommonDialog1 .DialogTitle = "読み込みテスト" .Filter = "Chat_LOG(.html)|*.html" .Flags = cdlOFNExplorer Or cdlOFNHideReadOnly Or cdlOFNLongNames Or cdlOFNNoChangeDir .ShowOpen
Open FileName For Output As #1 Print #1, ab Close #1 End With End Sub
開発環境は ・VB6 sp6 ・WinVista sp1 です。
|