Search results

  1. A

    Mail Merge problem

    Won't that just loop the table results in one letter? I would like to produce one latter for every student in one mailerge. Is that possible?
  2. A

    Mail Merge problem

    Thank you. That's excellent. I think, with my very limited VBA knowledge I can probably fumble my way around getting this to work for one record at a time, but how would I get it to loop on every record in my query.
  3. A

    Mail Merge problem

    I have a database for tracking, among other things, student debt for units completed. Four times a year, we produce a letter for each student, detailing the unit of study completed that quarter, how much they owe, and various other info for that quarter. We use Albert Kallal's mail merge...
  4. A

    Multiselect Listbox with SQL Backend

    Thanks for your response Paul. After some further reading, I agree it probably wouldn't be the best idea to store multiple values in the one field. I had a look at the sample database though and can't really see how I could apply this to my database. Would you mind elaborating on how I...
  5. A

    Multiselect Listbox with SQL Backend

    I have an Access 2007 db and I have just migrated the backend to SQL 2008. My multiselect listbox has stopped working. Does anyone know of an alternative method to store multiple values? It's an enquiry database and the listbox is used to tick courses of interest for prospective students.
  6. A

    Problem with null value assignment

    I think it has something to do with the autonumber recordID somehow. Just tried another approach which was to place the subform directly on my form as a bound control and got the same message, then another message saying I was trying to assign a duplicate value (which I believe was to the...
  7. A

    Problem with null value assignment

    I have a form with a number of subforms but instead of using tabs, I inserted an unbound subform where the sourceobject changes depending on the command button clicked. The data displays correctly, however, every time I go to add a new record, I get the error: "You tried to assign the null...
  8. A

    Combo box with bolded sections

    Is it possible to create section headers within a combo box? I have a few fields linked to value lists but I would like to segment the contents to make them more readable. I don't want to use cascading combos if i can help it.
  9. A

    Report designer within a form

    Hi George, Thanks for the response. You're right, publisher is great but I'm really looking to add this in to my existing access 2007 database so they can use the records already contained in it. I'm also hoping to hook it up to a camera using WIA so I can live capture into the system...
  10. A

    Report designer within a form

    I have a small app for school use and was wondering if anyone knows of a way (or even better, can point me to a sample) that I can create a form that includes a few controls necessary to design an id card. Basically, I want my users to be able to go into the form and add fields from a table...
  11. A

    Is a form with lots of tabs dangerous?

    Thanks for all your contributions everyone, and especially for the sample database, certainly lets me see things clearer and will no doubt come in handy. Since I'm distributing a split database, I can leave the design for now then just change the front end later if required.
  12. A

    Restrict characters in a control using VBA

    Thanks for the support, I would be completely lost without the help of all the kind souls who contribute to this forum. It seems that using Me.TAC.Text or just TAC.Text solves the problem. Any ideas why?
  13. A

    Restrict characters in a control using VBA

    Sorry to keep stuffing this up. The results on this are pretty random. It lets me enter a z with other characters, then brings up the message box only when I go to delete the z. It will also let me enter zzz and brings up messagebox on the third z, then deletes the last two. Private Sub...
  14. A

    Is a form with lots of tabs dangerous?

    Awesome, that makes perfect sense. Thanks to both of you guys.
  15. A

    Challenging IIF in query

    Just sorted it. Seems I needed " " around 201 and 202
  16. A

    Challenging IIF in query

    Wow you seem to be handling all my queries today. Much appreciated. No the statement is just in a query.
  17. A

    Is a form with lots of tabs dangerous?

    Sorry I must not have explained correctly. When I said tabs 1 and 2 where both contact information, I didn't mean they were the same fields, just that there were too many fields for one tab so I used a second. I'm okay with setting up the tabs normally with master and child fields, but...
  18. A

    Restrict characters in a control using VBA

    Yep that's where I was going wrong. I added the lower case ascii codes too since I don't mind whether they go in as caps or not. Still have the problem with Z though. I only want this accepted by itself, not including any other characters.
  19. A

    Challenging IIF in query

    Thanks for the attempt, unfortunately no go on that one. Just comes up with #Error
  20. A

    Is a form with lots of tabs dangerous?

    Thanks for the answer. I'm afraid I don't quite understand what you mean. Do I create a separate form for each page, then paste them all onto one form layering them on top of one another? Bob: Tabs 1 & 2 have data from the same table. I figured that since both tabs contain contact information...
Top Bottom