Search results

  1. O

    Exporting and importing data

    Using the ms access 2007 i realized an export of the data of a datatable into a semicolumn delimited textfile and an import of this text file back into a ms access datatable. Now i want to do the same with ms access- or vba code, and therefore i would like to know where i can find the code the...
  2. O

    Retrieving a text file from a attachment of a email

    Is it possible to retrieve a delimited text file from a attachment of a email and saving this content in a ms Access datatable? How do we refer from within Acces to this text file i Outlook?
  3. O

    Using Docmd. OutputTo and Docmd.transfertxt

    I like to convert a ms access datatable in a txt file that can be sent as attachment with an email. Once arrived at the destination i want to fill a datatable with the content of this txt file. I know that therefore command as DoCmd.OutputTo en DoCmd.transferText can be used. But can anyone...
  4. O

    Sending a ms Access datatable as Attachement of a email

    thank you very much
  5. O

    Sending a ms Access datatable as Attachement of a email

    Suppose an email contains a attachment that is a MS Access database. The content of this database consists of only one datatable. Once the email is sent and received,I know how to retrieve the attachment as a whole from this email and put it in a folder on my harddisk. Therefore I use the...
  6. O

    Problems with a selectquery

    thank you very much for the help
  7. O

    Problems with a selectquery

    Of the following ms access datatable with the name tblArchive Datum Artnr Qty 01/01/2009 xyz 5 01/01/2009 sss 3 03/02/2009 ddd 1 03/02/2009 eee 4 i use only the...
  8. O

    deleting a ms access database

    I like to thank you very much for the help. Greetings from Brugge in Belgium
  9. O

    deleting a ms access database

    what vba code or MS Access code can be used to delete a MS Access database from within another MS Access database?
  10. O

    Using the runtime version of ms access 2007

    thank you for the help
  11. O

    Using the runtime version of ms access 2007

    I believe you didn't understand my question quiet well. My question is, what are the different steps to make in order to get a Acces 2007 database using the ms access 2007 runtime exe.
  12. O

    Using the runtime version of ms access 2007

    I have a small MS ACCESS database program that i want to distribute to my friends who doesn't have MS ACCESS. Therefore i need to make a runtime version of this database. I downloaded and installed the MS Runtime.exe for MS Access 2007 . Now i want to know what are the steps to fullfill in...
  13. O

    Attaching the front-ends to the back-end

    thank you very much
  14. O

    Confused about the different settings

    thank you very much for the help
  15. O

    Attaching the front-ends to the back-end

    I like to install a ms access programdatabase on more than three computers, who makes part of a network, and realize by code the attachment of these programdatabase to the back-end data database on a server. Somewhere i've heard of a code that makes use of the network address of the server to...
  16. O

    Confused about the different settings

    I have an Orderform with a subOrderform. When the parent form opens for the first time, it may not permit to see any data as well in the Orderform as in the subOrderform, nor give the user the possiblity to make changes or enter new record without clicking the appropriate button. So I want to...
  17. O

    Restricting the number of items in a combobox

    The date field is the only field in the query
  18. O

    Strange behavior

    The fact that the index starts at 0 and not at 1, makes it for the line of code, which starts at 1, lesser probably to exceed the number of items. So in my opinion this can't be the reason here for the error message that occur, or am I wrong in my conclusion?
  19. O

    Restricting the number of items in a combobox

    Thank you for the help
  20. O

    Strange behavior

    First of all, thank you very much for your help. However, looking to my code, and especially to the following line: "For I = Fldr.Items.Count To 1 Step -1", how can the counter I in this case exceeds the boundary of available items? Am i wrong to suppose that Fldr.Items.Count just determine the...
Back
Top Bottom