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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by anpfire

  1. anpfire

    USB drive does not turn on

    Hello, I have a 40 GB USB hard drive. It is a USB 2.0 enclosure (from digital123) with a laptop hard drive. I was accessing information from the drive in Windows Xp when a pop-up message flashed from the bottom right saying that some information was lost from directories whose names started with...
  2. anpfire

    Overlay of bitmap images onto a 3D model

    Hi, I have a 3D model of a building in AutoCAD. I also have numerous pictures (in .bmp and .jpg format) of all sides of the building. The 3D CAD model is an accurate representation with its dimensions reflecting the true values of the actual building. The images are obviously 2D, but I know the...
  3. anpfire

    Running a Windows executable in a CGI script on Apache

    I solved the problem. Someone else gave me another command to use: $rc = `C:/temp/program.exe`; And that worked.
  4. anpfire

    Running a Windows executable in a CGI (Perl) script

    I tried $rc=`c:/program.exe`; And that worked. Even with the system and exec command that I was originally trying, it was the backticks that was causing the problem. Thanks a lot for the help.
  5. anpfire

    Running a Windows executable in a CGI (Perl) script

    The program I'm testing right now is just a simple temporary program I created only to see whether CGI can run it. All it does is create an output file and prints out a sentence in the output file. So it is not looking for any input data. It runs without a problem in the Command Prompt window in...
  6. anpfire

    Running a Windows executable in a CGI (Perl) script

    Hi, I am running some CGI scripts (written in Perl) on an Apache server, which is on a Windows machine. I am trying to run a Windows EXE file (which takes command-line arguments) within a CGI script, which will be run server-side. I tried: system("C:/temp/program.exe"); And the browser just...
  7. anpfire

    Running a Windows executable in a CGI script on Apache

    Hi, I am running some CGI scripts (written in Perl) on an Apache server, which is on a Windows machine. I am trying to run a Windows EXE file (which takes command-line arguments) within a CGI script, which will be run server-side. I tried: system("C:/temp/program.exe"); And the browser just...
  8. anpfire

    Running a Windows executable in a CGI script

    I am writing the CGI script in Perl. I tried: system('C:/temp/program.exe'); And the browser just keeps loading the webpage (that is created by the CGI script), but never actually loads it. And no errors are reported by the Apache server. Do you know whether the server needs to be configured to...
  9. anpfire

    Running a Windows executable in a CGI script

    Hi, I'm new to CGI. I am running some CGI scripts on an Apache server, which is on a Windows machine. Is it possible to run a Windows EXE file (which takes command-line arguments) within a CGI script and will be run server-side? I appreciate any help you can give me. Thanks.
  10. anpfire

    ASP page not running on IIS

    Hi, I have been running an IIS server on a PC with Windows 2000 Operating System. I also had ASP pages that were running absolutely fine on it. But I now tried to create an IIS server on another PC (that has Windows XP) with the same ASP pages and it does not work. I get this error: Active...
  11. anpfire

    opening word document in MSWord from hyperlink

    Hi, I have a hyperlink to a Word document. The problem is that it opens up in the webpage itself when I click on it. I would like it to open in Microsoft Word. How do I force it to do this? I appreciate any suggestions. Anoop.
  12. anpfire

    Displaying in scientific notation

    Thankyou Jeff. That was exactly what I needed.
  13. anpfire

    Displaying in scientific notation

    Hi, I am displaying a table in a webpage that gets its information dynamically from an Access database. The numbers that it gets from the database have values till the 20th decimal place or more (like 0.00000834762532893428). I want to display this number in scientific notation with...
  14. anpfire

    response is undefined

    I found the problem. If Statement is fine. response.write("") was incorrect. It had to be: Response.Write("") - Capital letters!!! After I changed that, everything worked.
  15. anpfire

    response is undefined

    I got this error from the select statement: Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E14) [Microsoft][ODBC Microsoft Access Driver] Wrong number of arguments used with function in query expression 'isNull(Link,'')'.

Part and Inventory Search

Back
Top