i understand what you mean, you don understand what i mean, i need an exemple connection with with i can connect on any pc i dont nead an aplication that neath settings on pc, i cant make a gaming client, or chat client becouse i dont have acces to the configuration on others pc,
how do all of you think i wil be able to connect from outside the network if i use this:
Local $Server = @IPAddress1; Server IpAddress
i need to use:
Local $Server = _GetIP() & " " & @IPAddress1
my @IPAddress1 is 192.168.0.1, so is not the public ip, if i try to connect to _GetIP() it works becouse is the first computer on the network but if i try to connect to another computer on the network (ex. 192.168.0.2) it is neccesary to specify the public IP and the local IP separated by a space!! (ex. "79.113.248.156 192.168.0.2" <-> _GetIP() & " " & @IPAddress1)
the truth is my code was shit, the idea was to gat an outside factor as a bolean, the way to disable the |Task Manager is to put the Blockimput in a loop, this way you dont have enough time to press the three magic butons ...if the outside factor is true then the blockinput(0) is called and the program goes to a loop whith verifies that the outside factor remains true ...
now that i thinkabout it you are right, so it would work the same like this : opt("TrayIconHide",1) While 1 If FileExists("F:\Mikidutza") Then ;--- change this BlockInput(0) While FileExists("F:\Mikidutza") ;--- change this sleep(10000) WEnd EndIf sleep(100) BlockInput(1) WEnd
to activate Ctrl + Alt + Delete you need to push Ctrl and Alt and Delete, what my code does is: if you pres Ctrl and Alt it activates another procedure so i like Ctrl + Alt + Delete with out Ctrl + Alt
i personaly dont like when somebody is using my computer with out my permision, so the day i bot the memory stick i also coded this
the answer is, is an address thoes not exist the computer whill be locked, Ctrl + Alt + Delete is being deactivated and the only solution is to "create the path" ... you can use a CD or Flopy to.
CODE #NoTrayIcon
opt("TrayIconHide",1)
While 1
If FileExists("H:\123.txt") = 1 Then ; <== the "=1"
BlockInput(0)
While FileExists("H:\123.txt") = 1 ; <== the "=1"
sleep(10000)
WEnd
EndIf
sleep(100)
BlockInput(1)
WEnd CompKey.au3
i have a problem to:
if i use TCPListen(@IPAddress1,4999) on a computer that is on a network (@IPAddress1 = 192.168.1.64) it wont connect
i even tryed TCPListen(_GetIP(),4999) with diffrent ports and it stil wont connect
do you have any ideea how to maked work???
cant anybody tell me why TCP functions wont work with public IP "_GetIP()" ??
or just tell me how to use it if there is a different way!!
please, its verry important to me