S shw_3 Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-28 #3 我是要用Microsoft Access来打开*.mdb
S SaintZorro Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-28 #4 看你要干什么,如果只是普通的数据库操作用ADO中的 Microsoft.Jet.OLEDB.4.0 就可以了 如果你要进行对Access的特定操作,如:建立数据库、压缩数据库……就要利用OLE了
I ildg Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-28 #5 你的意思是要在新的窗口中打开文件对吗? 如果是的话就用shellexecute函数
S shw_3 Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-28 #7 我要用Access 来打开一个已存在的mdb文件。 比如说:先打开Access,再利用它open 一个XX.mdb文件
T tanglu Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-28 #8 申明: function Shell(const FileName: string): THandle; begin Result := ShellExecute(Application.Handle, nil, PChar(FileName), nil, nil, SW_SHOWDEFAULT); end; 调用的时候: Shell(path + 'msaccess.exe' + Filename);
申明: function Shell(const FileName: string): THandle; begin Result := ShellExecute(Application.Handle, nil, PChar(FileName), nil, nil, SW_SHOWDEFAULT); end; 调用的时候: Shell(path + 'msaccess.exe' + Filename);
S shw_3 Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-28 #11 为什么报错? Undeclared identifier: 'ShellExecute'
I ildg Unregistered / Unconfirmed GUEST, unregistred user! 2002-03-28 #12 我不是说了吗? shellexecute在shellapi中,要引用这个单元