Recent content by dsigner1

  1. D

    Using other Office Applications from VBA

    Thanks for the fast response. I will check it out but perhaps not so quickly - Working in a south facing office with minimal ventilation probably 90 something. Will report back when it is running.
  2. D

    DAO or ADO for MS SQL Server With Access 2007

    A thought to add to this. MS are incapable of making decisions so both ADO and DAO are likely to run on and on. Since they are quite different you will most likely find that you need the other one sooner or later. in any event I would suggest explicit definitions e.g Dim Db As DAO.Database...
  3. D

    Using other Office Applications from VBA

    I have a fairly simple Access Application that needs to create a Word file in one form; And then open that file using the created name and path in another form. The word document should open in a separate window and when the window is closed, return to Access. I do not need to transfer any...
  4. D

    Yes/No and Tristate

    Thank you Jdraw. I thought there was some reason that I had steered clear of the "facility" before. It just seemed to fit the requirement because i got a bit rusty. I'll just create my own 3 state. What a fantastic forum this is. Someone always knows the answer and gives the time up to tell you
  5. D

    Yes/No and Tristate

    Hello Everyone, I have been away from Access for about two years. Now I have offered to help a friend with a program he has. He uses quite a lot of tick boxes for Yes/No questions. he asked me if it was possible to show the difference between entering an actual NO and never ever visiting the...
  6. D

    Recordsets tutorial

    Thanks Bob that is exactly what I had in mind. Dave - A useful start point but I wanted to know how to deal with all the different types of recordset that are available. The combination of the two should help any one else who gets confused by these pesky but useful objects.
  7. D

    Recordsets tutorial

    I have always just "bodged" recordsets because I have only needed the odd one or two and got by finding an example to copy. I now need to actually understand the things properly and can't find a decent in depth tutorial. With ADO and DAO, SQL clauses etc it is really a bit of a mine field...
  8. D

    Public variables as criteria in combobox

    Can anyone tell me how to use a public varable (from another module) as criteria in a query? Say to filter name on "Smith" using Pubvar where PubVar has been set to "Smith" somewhere else. I can't work out how to build an expression which uses a public variable, probably because i don't use...
  9. D

    Design process for a beginner

    Everything so far sounds like good advice. let me add a little. You will learn about Access by doing it and inevitably you will change your mind on some things. Don't try and do this in one pass. Identify a mini-database which does a small part of what you want to do and make that work...
  10. D

    Too Many Relationships ?

    hypothetically, simple is good.
  11. D

    A lot of tables or lots of spaces?

    Gemma, I am not sure that I unstood the original question that well. I did not think that thew rules were just filters. I am not advocating that the users be deprived of choice in general. Just here it seems that a little bit of work would provide a fixed rule set which would give them 90% of...
  12. D

    multiple popup forms

    OK, I have wasted everyone's time. The error was completely unrelated and not obvious. The two calls actually work fine. Thank you for helping I am back on track.
  13. D

    A lot of tables or lots of spaces?

    Giving the user complete freedom for the rules equates to a complete migraine for you. Can you negotiate a compromise? If you can store a reasonably comprehensive set of rules to choose from then your task becomes possible in reasonable time.
  14. D

    Sample of Good GUI Design Databases

    Thanks for this reference Hitech
  15. D

    multiple popup forms

    I can call the second popup form from another command button just by pasting the call across and it works just fine. Here are the calls "DoCmd.OpenForm "ThingTypePopForm", acNormal, , , , acWindowNormal DoCmd.OpenForm "ThingSubTypePopForm", acNormal, , SubTypePopFormFilter, , acWindowNormal"
Top Bottom