Search results

  1. P

    Export Query Data to Excel Range

    What is the actual error message? Edit : ignore the above, somehow managed to miss where you posted the error message. Try this anyway: MyRecordset.Open MySQL, CurrentProject.Connection
  2. P

    Application.File Search Help!

    The best way (I personally think) to learn is trial and error, not someone doing the work for you. I haven't personally used the code before so can't offer as much help I'm sure others can do here. But looking at the code you can see similaries right away. strFolder = TrailingSlash(strFolder)...
  3. P

    Application.File Search Help!

    http://www.allenbrowne.com/ser-59.html
  4. P

    Question In Need of big help!!!

    Unless you upload a version compatible with Access 2007 I can't check the database. Someone else will help I'm sure.
  5. P

    Question In Need of big help!!!

    What version of Access are you using? I can't open the database in A2007.
  6. P

    Save Excel Sheet as, and then break links... How?

    This thread might be some use to you regarding this: http://www.access-programmers.co.uk/forums/showthread.php?t=148802
  7. P

    Access vba to automate Excel

    I'm confused over what you want, can you take a screenshot to show which part?
  8. P

    Update Query

    UPDATE Ports SET Ports.STATUS = "Working" WHERE ((Ports.PORT) = (Customer_ID.Port)) It will be something like this.
  9. P

    Update Query

    It's just a simple update query. Add the appropriate fields / tables in the update query, check the two fields for matching values in the criteria then in the update to under status put "working".
  10. P

    Turn off these annoying marks

    http://support.microsoft.com/?kbid=839371
  11. P

    Main Access Window Hidden??

    It should be only the current database.
  12. P

    Main Access Window Hidden??

    I'm not sure about Access 2010 bit in 2007 this is how I have done it before: http://www.pcreview.co.uk/forums/startup-want-only-show-main-form-and-not-ms-acces-t3483208.html
  13. P

    Previous and Next Buttons

    You need to add validation to the buttons eg. If you're on the last record the next record should go back to the start. Or just do nothing as you said. I can't really help without seeing your button code.
  14. P

    docmd.searchforrecord doesnt work

    Probably wont affect it but I would of wrote it like: DoCmd.SearchForRecord acDataForm, "frm1", acFirst, "[Names] = ""John"
  15. P

    How to use VBA to check whether an Excel .xlsx file is open and close it if open?

    Oh, I thought you needed help too, was going to describe how I would solve your problem myself. LookingforK there should be enough here to accomplish what you want, need further help just ask here.
  16. P

    How to use VBA to check whether an Excel .xlsx file is open and close it if open?

    What's your objective? It depends on what you are trying to do.
  17. P

    Create a field from a database name

    Not sure if CurrentProject.Name will work or not.
  18. P

    How to use VBA to check whether an Excel .xlsx file is open and close it if open?

    Where are you closing the workbooks? I'm probably wrong but I thought you can only check the active workbook, if you have more than one, you close the active workbook and check again.
  19. P

    Question In Need of big help!!!

    1: Would need to see your code for this, you probably didn't select the one record. 2: Again need to see you code I have no clue what it's doing but you must have asked for an input from the user. 3: DoCmd.OpenForm "your form name here" 4: method depends on your version of access eg. 2003, 2007...
  20. P

    Opening xls in 2007 with Access 2003. (computer is installed with both xls 03 & 07)

    Re: Opening xls in 2007 with Access 2003. (computer is installed with both xls 03 & 0 Not sure if this will help: http://windows.microsoft.com/en-GB/windows-vista/Change-the-program-that-opens-a-type-of-file You could just uninstall 2003?
Back
Top Bottom