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. macwill

    HELP!!! XML and JS access denied

    No one has any ideas? Please anything would be great. The main goal here is to somehow incorporate an external xml news feed that I have formatted with xsl into an html document. thanks MAC
  2. macwill

    HELP!!! XML and JS access denied

    Okay here is the deal. If I use the below script on a file from my hard drive (example C:\\file.html) it works great. HOWEVER when I upload file.html and gandmtest.xsl to my web server (I don't have control over server settings) I get an "access denied" error. Please, Please, Please...
  3. macwill

    Help with windows registry

    That's strange it works on my machine??? Maybe we need third party help here... sorry Mac
  4. macwill

    Help with windows registry

    you can pick through this... ############################## #======================= sub SettingsSave_Click { #======================= $Menu->{SettingsSave}->Checked(!$Menu->{SettingsSave}->Checked()); $PmxSaveSettings = $Menu->{SettingsSave}->Checked(); my $key...
  5. macwill

    Windows 98 Free Server (Using My Computer as Host For My Website&Etc)

    I dont know if they do, it's the first I hear of it but I think you would be happy with a free server such as apache for you purpose. checkout the apache site it's a great server mac
  6. macwill

    "parallel port"

    Hi, I have used the above code and it works. The only problem is once it sends the data the program frezes. basicaly its a button and when you click on it it sends a one to the parallel port but after that the program just frezes?? any ideas... thanks M. By the way how would you read from the...
  7. macwill

    perl script accessing Microsoft Outlook

    Hi, Sounds like an interesting idea. I think maybe you should look into OLE, I am assuming you are using "windows" and I think this module has what you are looking for. Check this page out...
  8. macwill

    "parallel port"

    I have one question if you don't mind... would the syntax for sending a one (#1) be open(PARALLEL, ">LPT1") or die "$!"; print PARALLEL 1; close(PARALLEL); ??? thanks
  9. macwill

    "parallel port"

    Thanks alot!!!
  10. macwill

    "parallel port"

    hi me again. Please if anyone has any idea how... I am thinking devices??? please help
  11. macwill

    Enter data into cell of an existing excel spreadsheet

    Hi, I think you can do this with Win32::OLE . Actually I am pretty sure of it I just have never done it. check this page out http://aspn.activestate.com/ASPN/Reference/Products/ActivePerl/faq/Windows/ActivePerl-Winfaq12.html hope this helps mac P.S. if you know anything about parallel ports...
  12. macwill

    how do i write a news paging type script

    you can read the file with a script like this #!/usr/local/bin/perl use LWP::UserAgent; my $URL = 'http://www.cnn.com'; print "Fetching $URL ...\n"; $ua = new LWP::UserAgent; $req = new HTTP::Request 'GET' => "$URL"; $res = $ua->request($req); if ($res->is_success) {...
  13. macwill

    "parallel port"

    Hello, I am trying to write to the parallel port using perl but I am not sure what the syntax should be. please help... advice, links, or any code would help thanks MAC

Part and Inventory Search

Back
Top