Search results

  1. Michelangelo

    default value date() in form problem

    None are missing. I've tried to uncheck / recheck them, worked for all exept for the first two, Visual Basis for Applications and Microsoft Access 9.0 Object Library, in which I think the relevant reference is. It displays a message that it can't change it because it's used. Come to think about...
  2. Michelangelo

    default value date() in form problem

    Hi, :confused: I've got a strange problem and can't solve it. I distribute a database among multiple systems with multiple setups. Work fine normally, but now on one machine (XP) one form with a unbound textbox with the default value set to "Date()" without the quotations marks, doesn't work...
  3. Michelangelo

    Updating Subform

    Nevertheless, I think a requery of the subform should do the trick. Call it from the same code as the add new is performed, or on the current event. so something like: me.subform.requery HTH M.
  4. Michelangelo

    Startup form doesn't show anymore

    Do you mean at which form is used to open automatically. It's called SwitchBoard. (Not a switchboard created by Access, but a normal form called switchboard by me) This doesn't open either automatically or by double clicking on it.
  5. Michelangelo

    Startup form doesn't show anymore

    I've got a problem opening one of the forms. It's the startup form, but it doesn't show anymore. Also the code behind the form isn't accessible anymore. I get an error saying I cancelled the previous action. Also trying to open it manually doesn't work. All other form work perfectly. This...
  6. Michelangelo

    Update query depending on 3 tables

    Hi, My database is suffering from speed problems due a FE-BE where the BE is on the server. It's a bussiness database where we keep record on the hours worked. I keep all the work data in the BE. For this specific problem I need to use three tables - Hours, There are about 20.000 records...
  7. Michelangelo

    Do Until Question

    For the subform u can probably use Link child/master property and enter the desired field.
  8. Michelangelo

    Do Until Question

    U can create a query with criteria pointing to a form's textbox. Click on build expression editor en navigate to the forms textbox (probably) HTH M.
  9. Michelangelo

    summing totals in reports

    Assume level 3 sum textbox is called L3Text then put in level 2 footer something like =Sum[Level2] + [L3Text] HTH M.
  10. Michelangelo

    Customer Contact List

    When you create a textbox you also get a label. To erase the label do this. Click on the textbox the click on the label, it's now selected seperately. Press the delete button. Should do it. M
  11. Michelangelo

    Keep getting details

    Found it, In the original report I grouped on other field, and didn't remove them, so it wanted to sort on these (invisible) fields. M
  12. Michelangelo

    Keep getting details

    Hi, I've created a report with a wizzard which was grouped on projectlevel. The details displayed every entry for all employees. In another report I want to summarize these lists. So I created a copy of the first report. I added a group footer for on the employee field. Structure: - Report...
  13. Michelangelo

    Passing criteria to parameter query

    I think I tried something like that, but couldn't get it to work. Solved it by using the criterium 'Like [Parameters].[EmployeeCode] In the Parameter table I enter a * Now I'm working on a way to enter a between criterium, so I can enter three criteria < date > date between dates I have two...
  14. Michelangelo

    Passing criteria to parameter query

    Hi, I want to create a parameter query for which the criteria are defined on the fly. To do this I've created a table called Parameters with several fields and only one record, and I use this one for all the queries. Then, depending on which query I want to use I fill the table with the correct...
  15. Michelangelo

    how to Convert date into Week number

    And what about changing it back to a date so something like date = function(weeknr,weekday)
  16. Michelangelo

    One form, two tables

    I don't think it is possible to link 1 form to more than one table. however U could use subforms, and link each subform to a different table. HTH. M.
  17. Michelangelo

    Error Class not Registered (ADO)

    Hmmm, I could try that. I don't have a dedicated test machine, but something should be possible. I'll post my findings when I have them. In the meantime, thanks for your effort to try and solve this issue. M.
  18. Michelangelo

    Error Class not Registered (ADO)

    Yes I have Microsoft ADO Ext. for DDL and Security selected. And the others you mentioned. Tried it several times with new db's. Even un and re installed office. No luck. I also found out that something is wrong with the Microsoft Jet 4.0 provider When I try to open a table using this...
  19. Michelangelo

    Open a custom help-file

    Thanks, First worked great, forgot the hh.exe bit. The second one works also, but displays a message the the to be opened file can be harmful. The docmd.setwarning false command is of no influence So I stick with the first one M.
  20. Michelangelo

    Open a custom help-file

    Hi, I've got a custom help file (.chm). I want to open it on the click of a commandbutton. I've tried the shell command, but it doesn't work. If I open it directly from the explorer then it works perfectly, just can't do it in code. Any help? M.
Back
Top Bottom