Jump to content

Mozzy

Members
  • Posts

    4
  • Joined

  • Last visited

Mozzy's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. till i posted...thanks for replys
  2. i cant find the edit your talking about
  3. Hi guinness, Sorry, i will make sure for next time. i did search and found the same link that you posted, i'm really a beginner, it looks to me like a easy 5 line code, but i cant seem to figure it out, can any one please write the code for me? ( i'm not a programmer). Thank you very much
  4. i'm new here, Hi to all i'm not a programmer, i need help making a small program, thanks in advance to anyone that can help. i need a small app that will ask you to input any url you want to block, and it will block it in the hosts (e.i. 127.0.0.1 www.google.com). an easy to use and friendly tool:) here is the code i came up with so far: #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= Global $Form1 = GUICreate("blocking app", 330, 66) Global $Block = GUICtrlCreateButton("Block", 256, 8, 65, 49) Global $Input1 = GUICtrlCreateInput("", 8, 32, 241, 21) GUICtrlSetBkColor(-1, 0xFFFFFF) Global $Enter = GUICtrlCreateLabel("Enter url to block and click on 'Block'", 8, 8, 179, 17) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Input1 = @SystemDir & "\drivers\etc\hosts" EndSwitch WEnd
×
×
  • Create New...