Search results

  1. J

    DB for client-server use

    Hi all, I created an application that I was using at my work. Now other people would like to use it. I would like to have a client-server setup for my DB. Can I do this by just putting the application on a server? Can a single application handle multiple users? What if I open a recordset and...
  2. J

    Problem with code which should send an Email

    Hi, I would like to send an Email via a button on my form. I found a nice piece of code on this forum but.... when I try to compile the source it produces an error: "..... datatype is not defined" This is de code I used: Private Sub cmdSendEmail_Click() On Error GoTo Error_Handler Dim...
  3. J

    Can I create mailing list from query without using VBA

    thanks for your replies. I created a query and I tried to export it to a .csv file and it worked but it was not the way I wanted it. I would like to see a file like: name@domain.com; name2@domain.com; name3@domain.com; ... What I got was: name@domain.com name2@domain.com name3@domain.com The...
  4. J

    Can I create mailing list from query without using VBA

    Hi, I was wondering if it is possible to create a mailinglist (comma separated List) from a query result. I think it can be done with VBA but also here I don't know how I can do this. Is there someone who can help me with these two problems Regards
  5. J

    Additem on Combobox causes a compile error

    Hi blchoo, Yes I found a solution for this problem! Access 2000 and previous versions don't work with .additem. so a nice loop like below will not work: do while NOT rsRecordset.EOF lboList.additem = rsRecordset("Name") loop You can solve it by doing this: do while NOT rsRecordset.EOF...
  6. J

    Additem on Combobox causes a compile error

    missing reference to what? I created a new project under Access 2000 but here also I don't see any AddItem attribute in the list of available actions.
  7. J

    Additem on Combobox causes a compile error

    Additem on ListBox causes a compile error Hi, I am create a project on Windows XP in which I use Listboxes. The rowsource of the Listboxes are "value list". example: If txtAddPlb_tabVestiging.Value <> "" Then Form_VestigingenForm.lstPlbEdit_tabVestiging.RowSourceType = "Value List"...
  8. J

    Email recipients from access database

    I already looked at that feature but I thought it was ment for replacing tags (ex. <<Surname>>) to a value from the database. But filling up the TO field of an email is not possible with this feature. (I think) I will have a look at it again. thx
  9. J

    Email recipients from access database

    Helo, I wont to send a Word document to email recipients which are located in my access database. Is there a simple way to do this? Without using VBA I mean? I am using the Office 2000 packet. I am sure there has to be a way to do this with one of the programms out of the office packet but...
Back
Top Bottom