Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jkl0
  • Order by date
  1. jkl0

    Commandline copy with Wildcard mask

    copy longText??.* longText??VerB.* Use the maximum amount of question marks for your number(s). The above will change single or double numbers.
  2. jkl0

    Commandline copy with Wildcard mask

    Sorry, I spoke to soon. Does not work.
  3. jkl0

    Commandline copy with Wildcard mask

    copy longText*.ext longText*VerB.ext should work.
  4. jkl0

    Office 2003 long pauses when trying to change folders to access files on local drive. Windows 7 64

    The only way to really rule out mapped drives would be to unmap (while disconnected from network) all mapped drives and then see if the problem persist.
  5. jkl0

    Screen Resolution

    Will work with Access 97 thru 2007. I have not seen where anyone has tried this with 2010 or 2013. http://www.tek-tips.com/faqs.cfm?fid=2562
  6. jkl0

    on openform error 2501

    The error is probably coming from somewhere else and is showing up when you open the form. The following link discusses it some. http://www.access-programmers.co.uk/forums/showthread.php?t=122481
  7. jkl0

    Installer runs every time I open a different version of Access

    No easy work-around. http://windowssecrets.com/forums/showthread.php/124184-How-to-run-multiple-versions-of-Access-on-one-co
  8. jkl0

    Hide the Access Window

    From the example you are using: 5. Finally, to allow reports to be previewed...in every report you will need to put: In the OnOpen: DoCmd.RunMacro "mcrRestore" In the OnClose: DoCmd.RunMacro "mcrHide"
  9. jkl0

    Hide the Access Window

    If you just run the report and not preview, you will not get an error.
  10. jkl0

    DOS Batch file to ping a user entered IP address

    This may point you in the right direction. http://snipplr.com/view/14953/
  11. jkl0

    MS Virtual PC 2007 locks up.

    Another post with similar problem. http://superuser.com/questions/60783/copy-and-paste-from-virtual-pc-has-stopped-working
  12. jkl0

    MS Virtual PC 2007 locks up.

    You may also want to look and the addons if you haven't already loaded them to see if any of them can fix your problem.
  13. jkl0

    open form from other form access 2003

    Check the properties of the employee form and make sure that it does not have a filter saved in it also "Allow Filters" = Yes and "Filter on Load" = No.
  14. jkl0

    Remove Focus

    We need to see the code that you are using to help you troubleshoot.
  15. jkl0

    Remove Focus

    A quick and easy method would be to open a user form to simulate a messagebox with some generic message and an OK button. This will take the focus away from your form. Then in the OnOpen event of your new form, you can loop through the controls, on the original form, that you want to turn off...
  16. jkl0

    Windows 98SE Suddenly Won't Boot With 2GB RAM

    I don't know if the motherboard or bios has any affect, but I ran into this problem this past weekend. After decreasing the RAM, 98SE was finally able to boot with 1 GIG. This is just my experience. And also keep the Vcache setting that you changed to.
  17. jkl0

    Requerying Combos Causes Form to Revert to First Record

    The below might work: After saving the current ContactID to varID DoCmd.GoToRecord , , acGoTo, varID
  18. jkl0

    Enable Content with vba

    If you just rename the extension from ".accdb" to ".accdr" you will then just get a security notice. But, the DB will run in a runtime environment, which means, make sure that your error checking can take care of most problems that may happen.
  19. jkl0

    Trouble with Rename command

    Try this method. ren ???????????????????????APPROVED.pdf ???????????????????????SUPERCEDED.pdf just tested and this seems to work The question mark is a wild card for any character and you also have to represent the spaces with a question mark. I counted 20 characters (including spaces) in...
  20. jkl0

    HP 2320 scan multiple pages to one file

    It sounds like you are defaulting to a ".jpg" file If you can scan directly to a "Word" or "PDF" file, that would be the simplest way. The only native picture format that I know of that will create multiple pages is a ".tif" file. (Off the top of my head)

Part and Inventory Search

Back
Top