Jump to content

bluerein

Active Members
  • Posts

    126
  • Joined

  • Last visited

Profile Information

  • Location
    Manchester UK

bluerein's Achievements

Adventurer

Adventurer (3/7)

0

Reputation

  1. think this works http://www.autoitscript.com/forum/index.php?showtopic=36731&view=findpost&p=600350 edit... works on win 7 anyway
  2. Not sure where to start with it to be honest... http://msdn.microsoft.com/en-us/library/aa930260.aspx How would I call it ?? Any pointers would be great.. Cheers
  3. lol... not really ... its a valid point but doesnt bother me to much... dont think there is an alternative ..
  4. only ever used it on my netgear dg834gt for getting my stats in realtime on my desktop.... i use $STATS = _INETGETSOURCE("http://admin:password@192.168.0.1/s_status.htm") and it logs me in just fine be interesting to see which routers it works on then
  5. had the same problem when I wanted to access my router... the only solution I found was to use a registry fix which allows the "username:password@" bit to work save this as a .reg file and run it REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE] "iexplore.exe"=dword:00000000 "explorer.exe"=dword:00000000
  6. Having problems listening to a port... Im running TVersity media streamer on port 41952 on ip 192.168.0.3 , problem is the cpu keep sleeping whilst streaming so basically all im trying to do is check the port to see if its active or not .. tried $g_IP = @IPAddress1 ; 192.168.0.3 -ip of server ; Start The TCP Services ;============================================== TCPStartUp() ; Create a Listening "SOCKET" ;============================================== $MainSocket = TCPConnect($g_IP, 41952) If $MainSocket = -1 Then msgbox(16,"",@error) Else msgbox(16,"","success!!") Endif which should of worked but returns an error of "10013" tried TCPconnect and that worked ok $g_IP = @IPAddress1 ; 192.168.0.3 -ip of server ; Start The TCP Services ;============================================== TCPStartUp() ; Create a Listening "SOCKET" ;============================================== $MainSocket = TCPConnect($g_IP, 41952) If $MainSocket = -1 Then msgbox(16,"","error") Else msgbox(16,"","success!!") Endif but this doesnt help me as the servers running 24/7 so the connection as always there Any ideas or a better way to do it?? Cheers
  7. dimensions?? _GDIPlus_ImageGetHeight _GDIPlus_ImageGetWidth
  8. could you pm me the opf as I cant get it to work.. Thanks >_<
  9. hey Mobius.. I have obsidium and never could get it to work.. what settings are you using?? cheers
  10. the widows media center remote control (rc6)..... detect when a button is pressed
  11. anyone know how to detect media center remote key presses?? cant find a thing!! cheers
  12. try Run(@ScriptFullPath & " /restart") sleep(500) exit only works with compiled exe edit.. Martin beat me to it
  13. Im having problems with error handling here heres the snippet from the full code $pids= _INetGetSource($site & "index.php?showtopic=" & $output[$i] & "/") if @error = 1 then _temps() $desc = _StringBetween($pids,'<meta name="description" content="',': " />') if @error = 1 then _temps() $new_desc1= StringReplace($desc[0],"&58;",":") now the problem is the last line , it errors now and again .. giving a message like "non-array value , $desc[0]" it shouldnt have even got that far with the error handling the code above loops 10 time btw and it doesnt do it all the time just now and again Thanks
×
×
  • Create New...