Server OS is Windows Server 2003.
IIS version 6.0
Access version - Access 2002
We have an old CAD drawing list Access database with 54,000+ drawing descriptions in one table, with one search form and one result form. The engineers use it to keyword search the descriptions to find the CAD drawing number, then go to the drawing cabinet to pull the drawing, which may not be the one they wanted. I was asked to make their life easier, since they have a lot of the drawings in .TIFF format that can be loaded to this server. My first choice, which works for me as an administrator, was to add a button on the results form that would extract and build the file name for the .TIFF file, then use the following code to open the drawing file so they could look at it to see if it had what they wanted.
strFileName = "http://webservername/Engineering/CADdrawings/sect" & strFolder & "/" & strSection & "d_" & strNumber & ".tif"
stAppName = "C:\Program Files\Internet Explorer\iexplore.exe"
Call Shell(stAppName & " " & strFileName, 1)
This works okay for me, but not for the engineers who would be IUSR_servername logins, or Browsers, I think. As I've read over the last several days this is not a good way to do it, but I have had no luck using the .asp option mostly due to the new security "enhancements" on Windows 2003 and IIS 6.0, which I know little about. I can't get around the 800a1eba error when the page tries to open the database.
If the direct Internet Explorer option is not the best way, is the .asp option the way to go or is there another way that I haven't stumbled on yet? We don't have an SQL server I can bum space off of, so I am limited to this web server for any options that are open. I just need to be pointed to the proper option for this application.
Thanks,
Greg
IIS version 6.0
Access version - Access 2002
We have an old CAD drawing list Access database with 54,000+ drawing descriptions in one table, with one search form and one result form. The engineers use it to keyword search the descriptions to find the CAD drawing number, then go to the drawing cabinet to pull the drawing, which may not be the one they wanted. I was asked to make their life easier, since they have a lot of the drawings in .TIFF format that can be loaded to this server. My first choice, which works for me as an administrator, was to add a button on the results form that would extract and build the file name for the .TIFF file, then use the following code to open the drawing file so they could look at it to see if it had what they wanted.
strFileName = "http://webservername/Engineering/CADdrawings/sect" & strFolder & "/" & strSection & "d_" & strNumber & ".tif"
stAppName = "C:\Program Files\Internet Explorer\iexplore.exe"
Call Shell(stAppName & " " & strFileName, 1)
This works okay for me, but not for the engineers who would be IUSR_servername logins, or Browsers, I think. As I've read over the last several days this is not a good way to do it, but I have had no luck using the .asp option mostly due to the new security "enhancements" on Windows 2003 and IIS 6.0, which I know little about. I can't get around the 800a1eba error when the page tries to open the database.
If the direct Internet Explorer option is not the best way, is the .asp option the way to go or is there another way that I haven't stumbled on yet? We don't have an SQL server I can bum space off of, so I am limited to this web server for any options that are open. I just need to be pointed to the proper option for this application.
Thanks,
Greg