Recent content by SeanD

  1. S

    Update form

    Never Mind, found it ^^ I didn't see this: You can still add a "Save" button, if some users expect it, merely having it set up to move to a new record. The users will still be asked to confirm the save, from the code above, but experienced Access users can run the app the way they know it's...
  2. S

    Update form

    The code works perfect. I would like to save the modifcations when I press an 'update'-button and I want to execute this beforeupdate-event only when I didn't press the 'update'-button. How can I do this?
  3. S

    Update form

    Cool ^^ I'll give it a try =D
  4. S

    Update form

    It isn't a problem anymore ^^ The users are well aware of this thing. I think the solution will be to complicated ^^
  5. S

    Sort table before export

    Oke, Thanks ^^
  6. S

    Sort table before export

    Is that the only way? isn't it possible with VBA code?
  7. S

    Sort table before export

    Hi all, I would like to sort my table before I export it. I'll want my table sorted Ascending on Column 'Time'. How is that possible? To export the table, I use this code: DoCmd.OutputTo acOutputTable, "LogTable", acFormatXLS, , False Thanx!
  8. S

    changing date automatically in a table field

    try to add 21 days in stead of 3 weeks ;) Maybe that should do the trick ^^
  9. S

    Checkbox Yes/No/... ?

    Drop down list is a bit a lot of work to enter all the 100 values ;) Thats why i wanted check boxes. The value property only accepts numeric values ?
  10. S

    Checkbox Yes/No/... ?

    I know what you mean. In a form it is possible. I have 3 options. 1, 2 and 3 1 = Yes, 2 = No, 3 = Unknown. If I want to add these values into the table I need to work whit ifs: If blabla = 1 Then Blabla = "Yes" ElseIf blabla = 2 Then Blabla = "No" ... Then I Insert all the data with SQL. But...
  11. S

    changing date automatically in a table field

    Like I said, I'm not an expert ^^ Maybe this will help. http://www.techonthenet.com/access/functions/date/dateadd.php
  12. S

    changing date automatically in a table field

    I'm not an expert, but maybe you could do it with some code. How do you enter the date? Like dd/mm/yyyy? In VBA there are function who takes characters out of a string from a textbox. Put them all into variables. (dd = day, mm = month, yyyy = year) Add 3 weeks ( = 21 days) to the date. U need to...
  13. S

    Checkbox Yes/No/... ?

    Hi all, I'm a little familiar with Access. If you have 3 possible values for a field, u can use format property text and add as validation ="Value1" OR "Value2" OR "Value3". Is there a way to do it with a checkbox who has 3 values? The checkboxes Yes/No, True/False, .. have only 2 values. Any...
  14. S

    Update form

    Is there an other way ?
  15. S

    Display earliest date from query on form

    add ORDER BY DATE to the query ??
Back
Top Bottom