Accessでファイル読込の処理を作成しています。
設定ページでファイル変更ボタンを押すと、標準モジュールに記述した
FileSelectプロシージャを呼び出して、読込ファイルを変更します。
タブ切り替え時にテーブルに値を記入します。
ページ1画面の処理実行ボタンを押した際、
値がNull、その値のファイルが存在しない場合も、
FileSelectプロシージャを呼び出して、ファイルを再度選択します。
下記コードの'ファイル未指定、不存在の処理の部分を
より簡潔に書くことはできないでしょうか。
よろしくお願いします。
AccessVBA
1Option Compare Database 2Option Explicit 3 4Dim TabSelect As String 5 6Private Sub 処理実行_Click() 7 'ファイル未指定、不存在の処理 8 Dim FSO As Object 9 Set FSO = CreateObject("Scripting.FileSystemObject") 10 Dim FilePath As Variant 11 Dim NewFilePath As Variant 12 Dim errFlg As Boolean 13 Dim errMsg As String 14 FilePath = DLookup("item_value", "Settings", "item='FilePath'") 15 If IsNull(FilePath) Then errFlg = True: errMsg = "ファイル未指定" 16 If errFlg = False Then If Not (FSO.FileExists(FilePath)) Then errFlg = True: errMsg = "ファイル不存在" 17 If errFlg Then 18 MsgBox errMsg, vbInformation 19 NewFilePath = FileSelect(FilePath) 20 If IsNull(NewFilePath) Then Set FSO = Nothing: Exit Sub 21 If NewFilePath = FilePath Then Set FSO = Nothing: Exit Sub 22 TextBoxFilePath = NewFilePath 23 DoCmd.OpenQuery "DoSettings" 24 FilePath = NewFilePath 25 End If 26 27 'ファイル処理 28 Dim xlsx As Object 29 Dim wkb As Workbook 30 Set xlsx = CreateObject("Excel.Application") 31 xlsx.UserControl = True 32 Set wkb = xlsx.Workbooks.Open(FilePath) 33 'ファイル処理(省略) 34 wkb.Close 35 Set wkb = Nothing 36End Sub 37 38Private Sub ファイル変更_Click() 39 TextBoxFilePath = FileSelect(TextBoxFilePath) 40End Sub 41 42Private Sub タブ_Click() 43 If TabSelect = "設定ページ" Then DoCmd.OpenQuery "DoSettings" 44 TabSelect = Me!タブ.Pages(Me!タブ.Value).name 45End Sub 46 47 48<標準モジュール> 49Option Compare Database 50Option Explicit 51 52Public Function FileSelect(ByVal FilePath As Variant) As Variant 53 With Application.FileDialog(msoFileDialogOpen) 54 .InitialFileName = Nz(FilePath, CurDir) 55 .title = "ファイル選択" 56 .Filters.clear 57 .Filters.Add "Excel ファイル", "*.xls*" 58 If .Show = True Then 59 FileSelect = .SelectedItems(1) 60 Else 61 FileSelect = FilePath 62 End If 63 End With 64End Function
クエリ"DoSettings"
SQL
1UPDATE Settings SET Settings.item_value = [Forms]![フォーム1]![TextBoxFilePath] 2WHERE (((Settings.item)='FilePath'));
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。