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...
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
When I run:
<Script Language="vbscript" >
Dim WshSHell
Set WshShell = CreateObject("Wscript.Shell")
WshSHell.run "NOTEPAD.EXE",1,false
</Script>
I open notepad just fine BUT when I try:
<Script Language="vbscript">
Dim WshShell
Dim strWallpaper
Set...
I'm using the following code:
<Script Language="vbscript" >
Dim objaccess
Set objaccess = CreateObject("Access.Application.8")
objaccess.OpenCurrentDatabase "Reference.mde"
objaccess.visible=True
objaccess.UserControl = True
'objaccess.CloseCurrentDatabase
'set...
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...
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
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 "UPDATE SET Tasks.Main=-1 WHERE TASKS.ALLTASKS = Yes;
Can I add another set of updates with another condition something like:
"UPDATE SET...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.