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 gkittelson 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: *

  1. cscott

    Maximizing a Window

    Here is my script. It works okay except when opening the Access.8 file, when the file opens only the title bar is visible in the upper left hand part of the screen. The Access.10 part works fine. I have macros in the database to maximize, etc. but none of them work. I have also tried to...
  2. cscott

    Error in WSH when trying to create WScript.Shell

    Thrall: Thanks for the tip. It's doing exactly what I needed. I could have sworn that I had tried every combination of punctuation to get that, but obviously not. Thanks again
  3. cscott

    Error in WSH when trying to create WScript.Shell

    When I run: <Script Language=&quot;vbscript&quot; > Dim WshSHell Set WshShell = CreateObject(&quot;Wscript.Shell&quot;) WshSHell.run &quot;NOTEPAD.EXE&quot;,1,false </Script> I open notepad just fine BUT when I try: <Script Language=&quot;vbscript&quot;> Dim WshShell Dim strWallpaper Set...
  4. cscott

    Opening an Access Report

    I'm using the following code: <Script Language=&quot;vbscript&quot; > Dim objaccess Set objaccess = CreateObject(&quot;Access.Application.8&quot;) objaccess.OpenCurrentDatabase &quot;Reference.mde&quot; objaccess.visible=True objaccess.UserControl = True 'objaccess.CloseCurrentDatabase 'set...
  5. cscott

    CreateObject Problem

    browolf. Thanks for the reply but it looks like -- due more to blind, dumb luck than skill -- I happened on the syntax that was preventing me from opening the report. As usual, it was so simple I'm ashamed to admit it. It seems that one of the code snippets I found a day or so ago had a typo...
  6. cscott

    CreateObject Problem

    I'm trying to open an access report. I think I've tried about everything from here or Microsoft that I can find that even looks like it should work using the CreateObject methods. Does anyone have a code example that works for them. I'm using IIS. Thanks
  7. cscott

    Update Queries

    I'm trying to make an update query that will update one set of fields WHERE X=Yes and another set WHERE Y=Yes. I'm using the code like &quot;UPDATE SET Tasks.Main=-1 WHERE TASKS.ALLTASKS = Yes; Can I add another set of updates with another condition something like: &quot;UPDATE SET...

Part and Inventory Search

Back
Top