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

我在網路上尋找到很多\"CommonDialog\"用法
我希望能夠利用\"CommonDialog\"來備份資料
但是使用CommonDialog1.ShowSave 只能呼叫出那介面而已
我實際的資料還是無法另存新檔! 資料根本就沒動過...
請各位大大知道的話,交交我一下!謝謝

2006-06-02 14:31:27 · 1 個解答 · 發問者 Anonymous in 電腦與網際網路 程式設計

請問一下@@
如果開啟的檔案是在指定某個資料夾裡面的資料! 那路徑該怎麼寫呢@@? EX: ACCESS的資料
抱歉...初學者!所以問的問題很基本! 麻煩大大了

2006-06-02 16:10:44 · update #1

1 個解答

Private Sub Command1_Click()        Dim S As String, Sa As String                On Error GoTo Er                '取消會產生錯誤        CommonDialog1.CancelError = True        '開啟欲備份檔案        CommonDialog1.ShowOpen        S = CommonDialog1.FileName        '另存新檔路徑        CommonDialog1.ShowSave        Sa = CommonDialog1.FileName        'Copy過去        FileCopy S, Sa        Exit SubEr:        Err = 0End Sub

2006-06-03 03:30:25 補充:
嗯!不是很瞭解您的問題XD

2006-06-03 15:42:59 補充:
是否是指這兩個?(1)預設路徑CommonDialog1.InitDir = "C:\"(2)顯示的檔案類型CommonDialog1.Filter = "Access資料庫|*.mdb|所有檔案|*.*"

2006-06-02 14:56:04 · answer #1 · answered by W.J.S. 7 · 0 0

fedest.com, questions and answers