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 Wanet Telecoms Ltd 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. Phalanx1

    can a port polymorph into any port number??

    Thany You Paul!!! EffeTEch RULEs! well alonging with Heiw.exe... WAIT ASM OWNS!!!! YA go ASM!!!! STAR FOR U THOUGH :p
  2. Phalanx1

    Embedding IE in a Perl/Tk Widget?

    heres a start? use Win32::OLE; my $IE = Win32::OLE->new('InternetExplorer.Application'); $IE->{'Visible'} = 1;# if you want to see what's going on $IE->Navigate("about:blank");# in other words go to any site... u must capture $IE somehow from here and place it in the widget
  3. Phalanx1

    can a port polymorph into any port number??

    Windows XP Home edition and 2003 server sorry about that... Both have perl on them and that the trick i wanna catch all incoming connections to a wide variety of ports.. like ftp, https, and http and store the packets in comma deliminated database so they can be accessed and searched for any...
  4. Phalanx1

    can a port polymorph into any port number??

    Ok this is the concept no actual code as of yet but that is comin along nicely so here we go. What i want to do is make a executable that takes over a few null ports and listens for all incomin connections on those ports but being null it has to read the incoming packets and change to the...
  5. Phalanx1

    Can Handle numbers be passed from vbs to perl

    LOL that's a good one, but what im soing with it is this. i have this program that does'nt like to be minimixed and has no minimize button, what i plan on doin with the handle is some thing like this use Win32::API::Prototype; ApiLink( 'user32.dll', 'HWND FindWindow( LPCTSTR pszClass...
  6. Phalanx1

    Can Handle numbers be passed from vbs to perl

    I made this script that searchs for specific processes and spits out information on them, i want to pass some information into a HTA page and do some stuff there with perlscript. heres my vbs script searchs for some information on the required files. On Error Resume Next strComputer = "." Set...
  7. Phalanx1

    easiest script not working, help

    <html> <head> <script language="vbscript"> sub calc() document.getElementById("result").value = (document.getElementById("xxx").value) + (document.getElementById("yyy").value) end sub </script> </head> <body <form method="post" action="" id="frm"> <input type = "text" name = "xxx" value="">...
  8. Phalanx1

    Monitoring Subprocesses

    absolute gold my friend, a star for you. this puts me many steps further towards solving, my current problem, reffered to in my post about IO::Socket for System Administration of windows 2003 server thread219-780353, please take a look at this thread and tell me what you think, my best plan of...
  9. Phalanx1

    HTML that uses WScript that calls HTA without prompt

    PHV is right in his regard but I get the inclination that you think applicationName is the actual path to the executable to be called and displayed, in the hta. This is not so my friend you have to call an exe some other way. like the registry, then you have to setup bindings in the hta, and...
  10. Phalanx1

    script that sends email w attachment automatically

    alright Larry, here it is a SMTP or Simple Mail Transfer Protocol server is exactly like it sounds, most xp, 2000, 2003 servers had them installed are are an option. These servers usually run on port 25, unless configured otherwise, plus the 2 configuration fields are needed to send all the...
  11. Phalanx1

    Javascript Shell for calling a .HTA program

    See My Post at thread329-677780 Cheers Phalanx
  12. Phalanx1

    how to use Perlscript To collect data from a web page.

    here is our simple form, standard name address phone number with our form with or post method and action <html> <head><meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5"> </head> <body> <form name="myForm" action="myPage.asp" method="post"> <br...
  13. Phalanx1

    How to use ASP perlscript to To Query values for a form

    here is our simple form, standard name address phone number with our form with or post method and action <html> <head><meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5"> </head> <body> <form name="myForm" action="myPage.asp" method="post"> <br />...
  14. Phalanx1

    Refine popup request with SELECT value

    I also suggest what jemminger is saying - thats why i gave him a star. But a good place to start is W3C World Wide Web Consortium at http://www.w3.org/ or the w3schools at http://www.w3schools.com/ . Not only does having proper syntax matter, but it may prevent your web page from being dispayed...
  15. Phalanx1

    Obtain local IP of users machine

    sorry about the script onslaught, thats how i, ahh?? visualize.. yeah thats it, I didn't read the rest of what you said after Kahts post, and i gave, my best to convert it, and then i read it, so i realized you need to use...
  16. Phalanx1

    Obtain local IP of users machine

    nailed it [2thumbsup] [code] <%@ Language="JScript" %> <html> <head> <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> </head> <body> <% var IP = Request.ServerVariables("REMOTE_ADDR"); try { var DNS = new ActiveXObject("TCPIP.DNS"); var ClientIP = DNS.GetIPByHost(IP); var...
  17. Phalanx1

    Obtain local IP of users machine

    another stab [tongue] <%@ Language="JScript" %> <html> <head> <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> </head> <body> <% var IP = Request.ServerVariables("REMOTE_ADDR"); try { var DNS = new ActiveXObject("TCPIP.DNS"); var ClientIP = DNS.GetHostByIP(IP); var...
  18. Phalanx1

    Obtain local IP of users machine

    Did some research, and some thinkin, and here it is in JSP(JScript Server Pages) [afro] it needs help though, i tried. [sadeyes] <%@ Language="JScript" %> <html> <head> <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> </head> <body> <% function GetHostIP() { try { var DNS =...
  19. Phalanx1

    who wants to play perl golf, the easy way.

    golf points based on overall functionality =5 points and uniqness = 5 points, and readablity =10 points. Suggestions for the topic? 1 socket server to send html preformatted messages to clients of a cgi web app. if you have a topic, post it, and i will give it my best. good luck
  20. Phalanx1

    Dynamic Server Pushing from Perl to the webpage

    idea-o-matic(ideas) more or less pseudo code. get $size the eay you do while ($size=1) { push(@_, $size); for each $_ (@_) { print "<table width = 100% border = \"1\"><hr><td width = " . pop(@_). "%>A</td><td>A</td></hr></table>"; }

Part and Inventory Search

Back
Top