- ベストアンサー
パスワードがかかってる場合どのようにVBAで指定す
Set cnEx = CreateObject("ADODB.Connection") With cnEx .Provider = "Microsoft.ACE.OLEDB.12.0" .Properties("Extended Properties") = "Excel 12.0" .Properties("Data Source") = "C:\Users\\test.xlsm" .Open End With VBAでこのコードでエクセルファイルを開く時に パスワードがかかってる場合どのようにVBAで指定すればいいでしょうか?
- みんなの回答 (2)
- 専門家の回答
お礼
ご回答ありがとうございます。