hi könnt ihr mir helfen ich will eine suchmachine basteln
die die daten von google benutzt wie geht das ? könnt ihr mir das machen alles andere hab ich schon ![]()
Spoiler anzeigen
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 341, 161, 194, 124)
GUISetIcon("C:\Programme\Kong\Kong.exe")
GUICtrlCreateInput("", 16, 32, 305, 21)
GUICtrlSetBkColor(-1, 0xD8E4F8)
$Button1 = GUICtrlCreateButton("Suchen", 16, 64, 305, 25, 0)
GUICtrlSetBkColor(-1, 0xD8E4F8)
$Button2 = GUICtrlCreateButton("Bye Bye", 16, 96, 305, 25, 0)
GUICtrlSetBkColor(-1, 0xD8E4F8)
$Label1 = GUICtrlCreateLabel("Copyright tom12345mes", 112, 136, 117, 17)
GUICtrlSetBkColor(-1, 0xD8E4F8)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd