Hi all,
I am creating table and i want to place attachment file with using attachment datatype but I can't see attachment datatype when I create table.
Please help me. Why?
Thanks and Regards,
Dodo
Hi all,
I am creating table and i want to place attachment file with using attachment datatype but I can't see attachment datatype when I create table.
Please help me. Why?
Thanks and Regards,
Dodo
I believe that field type introduced with Access 2007.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Hi,
I got stuck with wirting sql in vba access.
Here is my code:
Dim sqlstr As String
sqlstr = "select id from tblstaff "
DoCmd.RunSQL
Pls correct me. Thanks
Here is my code:
Dim sqlstr As String
sqlstr = "select id from tblstaff "
DoCmd.RunSQL sqlstr
still not correct. got error
RunSQL (or CurrentDb.Execute) only works with SQL actions (INSERT, UPDATE, DELETE).
SELECT sql is used to open a recordset object in VBA.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Hi, thanks alot.
But Can you give me example please?
Why do you need to open a recordset?
What do you really need to accomplish?
Review:
http://support.microsoft.com/kb/148361
http://allenbrowne.com/ser-29.html
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.