Jump to content

mikidutza

Active Members
  • Posts

    35
  • Joined

  • Last visited

About mikidutza

  • Birthday 07/05/1986

Profile Information

  • Location
    Romania

mikidutza's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. 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,
  2. 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)
  3. 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 ...
  4. your the bet, exactle what i wanted ..
  5. you must have a file named mikidutza on the portable media you set the address to
  6. you'r wright, its in the loop that's why is not afected by Ctrl + Alt + Delete ...
  7. 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
  8. you'r not giving me a chance ( anyway, please analize it
  9. try it cant kill the computer and tell the other its safe i'm proud i posted somethink you didn't knew
  10. 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
  11. it deactivates Ctrl + Alt + Delete, the only weakness from blockinput
  12. 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
  13. 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???
  14. 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
  15. the first computer has 2 network cards ... - one is for the internet - one is for the network the type of internet is Broadband conection ...
×
×
  • Create New...