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

  1. msmamet

    Printing Dynamic Form Data Loss

    I have a PDF that I created using Acrobat 4.0 I took an existing Word Document and created a PDF from it. I then went in and added form textboxes to the new PDF. On my web site I have an ASP page that writes an FDF file that reads data from a SQL Server database and populates the acrobat fields...
  2. msmamet

    CGI.pm Set Cookie and Redirect

    Here is a simple script I developed called logout.cgi #!/usr/bin/perl use CGI; $query = CGI::new(); $logincookie = $query->cookie( -name => "login2451953.123", -value => ['', '', ''], -path => '/', -expires => '-1d' ); print $query->redirect(-cookie=>$logincookie...
  3. msmamet

    Tomcat Web Admin Tool

    I'm running Tomcat 4.1.18 on Win2000 Server. I'm using IIS 5.0 as the webserver and tomcat is serving jsp and java servlets through IIS using the isapi filter. The machine in question is our development machine, and as a result of $$ constraints the whole development team is using this 1...
  4. msmamet

    Linksys WUSB11 Not Recognized by WinXP

    Yes. I have 4 USB ports and they all work properly. To be certain, I removed my Webcam and replaced it with the wireless adapter. I know for sure that port works because my webcam was working properly.
  5. msmamet

    Linksys WUSB11 Not Recognized by WinXP

    I'm setting up a home wireless network with Linksys BEFW11S4 WAP router and Linksys WUSB11 ver 2.6 adapter. The router installed fine and is working. I'm having problems with the adapter. I'm running Win XP Home and it simply will not recognize the new hardware. I plug it into any of my USB...
  6. msmamet

    load/show/open another form

    I have an MDI Parent form (frmMain.vb) that I wish to load at my app startup. My startup location is Sub Main (inside modMain.vb). I have the following code: Module modMain Public Sub Main() Dim frm As New frmMain() frm.Show() End Sub End Module my...

Part and Inventory Search

Back
Top