Search results

  1. Oldsoftboss

    try to move data from excel to access

    Thus my question. Is this being done when using Excel, not Access?
  2. Oldsoftboss

    Can This Be Done

    What I posted is what I used on all my Db's, so you might try checking references etc. Apart from that, try puting the code in the DOUBLECLICK event of one of the fields. Make sure the forms name is correctly spelt also. Dave
  3. Oldsoftboss

    just what i needed

    Distractions (0)(0) what distractions (.)(.)
  4. Oldsoftboss

    Can This Be Done

    Does the Subform record source have a primary key (ID) (I presume so). If so, create a normal form based on the same record source, then on the subform double click event: Dim rs as Object Docmd.OpenForm "YourFormName" Set rs = Forms!YourFormName.Recordsource.clone rs.findfirst "IDFieldName =...
  5. Oldsoftboss

    try to move data from excel to access

    If you are moving data FROM excel, then this should be in the Excel thread. If you want to import data from Excel, when using Access, then I maybe able to help. Dave
  6. Oldsoftboss

    US Daylight Savings Time Ends 4 Nov 2007

    In Australia we start DLS at the end of October, but in 2000 when had the olympics, the east coast started it in August, so it was dark until about 9.00 am and seemed to get dark at around the normal time. Really stuffed me up.
  7. Oldsoftboss

    US Daylight Savings Time Ends 4 Nov 2007

    Thanks for that, will come in handy here in Australia !!
  8. Oldsoftboss

    Automating UserID/Password Info

    Well, I tried :D Lame answer, maybe, but sometimes you can spend hours or days stuffing around just cos "you SHOULD be able to do this". In the end you have to weigh up if it is really worth it. Or is the a home project and would just be nice to have it automated.
  9. Oldsoftboss

    Automating UserID/Password Info

    Why not just write them on a piece of paper :p
  10. Oldsoftboss

    VBA Help!!!

    Try this.....
  11. Oldsoftboss

    VBA Help!!!

    Sorry :p This was my effort..... Nowhere near as efficient, but I am still learning
  12. Oldsoftboss

    VBA Help!!!

    Looks like a challenge. I'm prepared to give it a try.
  13. Oldsoftboss

    Link to back-end in access 2007

    My bad. The form frmLinkManager has a menu property MRHSKeyRegister. Find and remove this in the form properties and you should be right. Dave
  14. Oldsoftboss

    One Liners; Tidbits; Wise Sayings

    Three sheep walk into a bar. Bartender says "Sorry my boss said i'm not allowed to serve ewes"
  15. Oldsoftboss

    Access database secured across network

    And read, read, read, and make backup copies of your Db's Many efforts to secure database have been completely screwed (including myself - I gave up in the end) and locking yourself out of all your databases. Keep us posted.
  16. Oldsoftboss

    Link to back-end in access 2007

    I have tried to cut out most of the BS. Hopefully you can understand a fair bit of it (I dont understand much of the basRetrieveBackEnd), but is reliable and easy to use and customise. If you copy the table tblDataFile to your Db, and hide it, then if the Split Database Wizard is used, this...
  17. Oldsoftboss

    Link to back-end in access 2007

    If you look at the Db, all the code in a couple of modules, and all you have to change is the number of tables to link (this changes the way the progress bar updates) Import these module into your database. Then look at the splash form, If I remember rightly the form timer has something like...
  18. Oldsoftboss

    Forms for Word using different records

    Did you update the row source of List0?
  19. Oldsoftboss

    Forms for Word using different records

    You could do this to the LHS Listbox also if you prefer.
  20. Oldsoftboss

    Forms for Word using different records

    This is because the code is looking for the field [txtProductBowlImage] which is not on the form. I inserted an extra column to the RHS list box so the rowsource now reads: SELECT qryPrintProducts.intProductID, qryPrintProducts.txtProductBowlImage, qryPrintProducts.txtProductBowlCode AS Code...
Back
Top Bottom