Search results

  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 ??
  16. S

    Update form

    Ok, I get it, thx ^^
  17. S

    Update form

    Example: I have e record which has a 'name' and a 'birthday'. On the form, there are also other textboxes with for example 'Adress' For that record, in the form, the textboxes for 'name' and 'birthday' will be displayed, but not for 'adress' because it's not in the table. another record has for...
  18. S

    Update form

    The problem is, i got 44 columns in this table. I think it's not practical to write this code 44 times ? Next problem: it's not always the same textboxes that are needed to be updated. I know how to do this when you need to add a new record, but not when you need to update it :)
  19. S

    Update form

    I know a little VBA. But if the form isn't bound to a table, he will not show the values that are already in the table?
  20. S

    Update form

    I have a form to update records in a table. The problem is that I only want to put the new values into the table when I click a button. Now, if I enter 'man' into a textbox, it automaticly add this value in the table when I leave the textbox. Any suggestions?
Back
Top Bottom