Search results

  1. maxmangion

    Change database's creation date

    a quick google search revealed this link where it seems you need to do this for an illicit reason ... thus i can't help you any further.
  2. maxmangion

    Button to Open form to add new record with pre-filled field?

    hi and welcome to the forums search the forum for "openargs" it should solve your problem.
  3. maxmangion

    Change database's creation date

    check this link they have a freeware utility which does what you want.
  4. maxmangion

    listbox population

    search this forum for "cascading combo boxes"
  5. maxmangion

    Change database's creation date

    hi and welcome to the forums If you would like to set today's date for your database creation what you can do is create a new database (so that it will have today's date) and import all of your objects into the new database container. Hope this helps
  6. maxmangion

    Seeking suggestions for program design

    here is the link for the suggested application
  7. maxmangion

    Happ Birthyday boblarson

    Happy Birthday boblarson Happy birthday Bob :)
  8. maxmangion

    Running Access 2003 & 2007

    thx bob for the link, will keep it at hand for future reference.
  9. maxmangion

    Running Access 2003 & 2007

    if you try running multiple versions on Vista you may encounter some errors. Here is a link with the cause and some possible workarounds.
  10. maxmangion

    Showing a Picture in a Form

    i normally take the following approach in order not to bloat my databases i create an image control from the Toolbox and set the "Picture Type" property to Linked. The i use the onCurrent event of the form to set the path for each picture per record. If you do a quick search on this forum...
  11. maxmangion

    move cursor within table without mouse

    Hi, not sure i understood you question correctly but have you tried the directional arrow keys (up, down, left and right) and also the Tab Key. Moreover, i wouldn't recommend you edit data directly from a table but you should be doing that at form level.
  12. maxmangion

    Question automatic backup problem

    you're welcome, i'm glad that you sorted your problem :)
  13. maxmangion

    Select record based on row numbers...

    try using the "Top Values" property in your query properties.
  14. maxmangion

    Question automatic backup problem

    if that also fails give it a try with the decompile. 1. Make a copy of your database 2. Compact 3. With Access closed, from a command prompt enter "c:\Program Files\Microsoft office\office\msaccess.exe" /decompile "c:\My Documents\Database.mdb" 4.Compact again.
  15. maxmangion

    Question automatic backup problem

    Also try creating a new database and import all objects.
  16. maxmangion

    Question getting rid of ' ' answers

    Not sure about the reasoning why some of your users enter the quotes, but have you considered using an update query instead of the search and replace in notepad
  17. maxmangion

    Question Send email via Outlook to all members in a category

    Hi and welcome to the forums Try searching this forum for "SendObject" as there are several examples covering what you're looking for.
  18. maxmangion

    Data member not found

    If the datatype of the cboProjType is not number then you might need some more quotes [lngPrType] =" & Me.cboProjType & " [lngPrType] = '" & Me.cboProjType & "'
  19. maxmangion

    Can I automate this in a macro?

    how about trying the snapshot format instead of the rtf DoCmd.OutputTo acOutputReport, "rptName", "Snapshot Format", "Path", True Also rather than a macro you can place the above code on the onClick event of a command button
  20. maxmangion

    Form Help - For a Beginner

    Does that mean that you have an unbound combo where you select a customer and then the relevant fields should be populated? If that is the case try putting Me.Requery on the AfterUpdate event of your combo box.
Back
Top Bottom