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