English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

Open App.Path + "\\Score.dat" For Random As #file_no Len = Len(start) 我要儲存檔案時App.Path 可以依照我存取的路徑可以做改變,而不是目前執行檔目前所放的位置嗎?(就類是另存新檔)
還有"\\Score.dat"是寫死的嗎?當我儲存時能隨著我的檔名作改變嗎?

2006-10-25 05:41:09 · 1 個解答 · 發問者 ? 1 in 電腦與網際網路 程式設計

1 個解答

'因你沒開起接受網友來信功能我只好在這裡回,順便賺點數XD'Open的使用方法是:'Open 路徑 For .....'所以說 路逕 是可由我們任意指定的而非一定要寫死在程式內.'大部份要任意指定存檔路徑我們都會使用CommonDialog元件 [專案>設定使用元件>Microsoft Common Dialog Control6.0(Sp6)].'表單置1個CommonDialog及1個CommandButtonPrivate Sub Command1_Click()    On Error GoTo Er    With CommonDialog1         .CancelError = True         .DialogTitle = "另存新檔"         .Filter = "DAT檔|*.DAT|All File|*.*"         .ShowSave         Open .FileName For Random As #file_no Len = Len(start)    End With    Exit SubEr:    If Err <> cdlCancel Then MsgBox ErrorEnd Sub

2006-10-25 07:06:17 · answer #1 · answered by W.J.S. 7 · 0 0

fedest.com, questions and answers