|
You last visited: Today at 06:14
Advertisement
Hey Leute ich nochmal^^
Discussion on Hey Leute ich nochmal^^ within the AutoIt forum part of the Coders Den category.
12/31/2009, 14:18
|
#1
|
elite*gold: 0
Join Date: May 2009
Posts: 634
Received Thanks: 794
|
Hey Leute ich nochmal^^
ok ...miest Ich stell mal die Frage anders^^
Also hab nen Gui:
Quote:
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("BF Heroes", 170, 135, 192, 124)
$Button1 = GUICtrlCreateButton("LOS!", 8, 72, 153, 57, $WS_GROUP)
$Input1 = GUICtrlCreateInput("", 40, 8, 121, 21)
$Input2 = GUICtrlCreateInput("", 40, 40, 121, 21)
$Label1 = GUICtrlCreateLabel("I-Mail:", 8, 8, 32, 17)
$Label2 = GUICtrlCreateLabel("pw:", 8, 40, 21, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
|
Dazu möchte ich gerne wissen wie der befehl heist damit es auf der
 Seite ausgegeben wird^^
|
|
|
12/31/2009, 14:30
|
#2
|
elite*gold: 0
Join Date: Apr 2006
Posts: 103
Received Thanks: 5
|
Hi.
Erstmal,
Schreib Codes bitte in den [Code] Tag's. Der Übersicht zuliebe  .
Ist $oForm, bzw. $oPass überhaupt richtig ?! Hast du $oForm überhaupt einen Wert gegeben ?
|
|
|
12/31/2009, 16:52
|
#3
|
elite*gold: 0
Join Date: Apr 2008
Posts: 1,079
Received Thanks: 438
|
Mit GUICtrlRead kannst du die eingegebenen Werte aus deiner GUI auslesen und dann damit arbeiten.
|
|
|
12/31/2009, 16:56
|
#4
|
elite*gold: 0
Join Date: Apr 2006
Posts: 103
Received Thanks: 5
|
Wie |Moep| Gesagt hat, auslesen mit GUICtrlRead und dann _IESetValue* setzen.
|
|
|
12/31/2009, 21:05
|
#5
|
elite*gold: 0
Join Date: May 2009
Posts: 634
Received Thanks: 794
|
THX schon aml aber jetzt hänge ich hier xD
Quote:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include<IE.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("xD", 195, 150, 192, 124)
$Label1 = GUICtrlCreateLabel("Email", 16, 16, 36, 17)
$Label2 = GUICtrlCreateLabel("pw", 16, 40, 36, 17)
$Input1 = GUICtrlCreateInput("", 72, 16, 113, 21)
$Input2 = GUICtrlCreateInput("", 72, 40, 113, 21)
$Button1 = GUICtrlCreateButton("GO", 8, 72, 177, 73, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $button1
_IECreate("http://www.battlefieldheroes.com/")
GUICtrlRead($Input1)
_IESetValue()
EndSwitch
WEnd
|
|
|
|
12/31/2009, 22:32
|
#6
|
elite*gold: 20
Join Date: Feb 2007
Posts: 3,080
Received Thanks: 4,294
|
vielleicht schreibst du noch dazu was nicht funktioniert? zum beispiel kenne ich die funktion _IESetValue() nicht
|
|
|
01/01/2010, 01:53
|
#7
|
elite*gold: 0
Join Date: May 2009
Posts: 634
Received Thanks: 794
|
Habs jetzt nochaml anders gemacht ... aber 1 problem ist noch da ^^
Quote:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("xD", 299, 54, 192, 124)
$Input1 = GUICtrlCreateInput("", 16, 16, 121, 21)
$Button1 = GUICtrlCreateButton("blub", 152, 16, 129, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $button1
$Ini = @ScriptDir & "/testini.ini"
IniWrite($ini, "Section","Key",$input1)
$iniread = IniRead($ini,"Section","Key","Sorry es hat nicht geklappt")
MsgBox(0,"Iniread","In der IniDatei Steht : " & $iniread)
EndSwitch
WEnd
;das problem ist das es gibt nur 3 aus
|
|
|
|
01/01/2010, 05:40
|
#8
|
elite*gold: 20
Join Date: Feb 2007
Posts: 3,080
Received Thanks: 4,294
|
guictrlread($input1)
|
|
|
01/01/2010, 09:46
|
#9
|
elite*gold: 0
Join Date: May 2009
Posts: 634
Received Thanks: 794
|
THX jetzt gets:Hier nochmal der code^^
Quote:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("xD", 299, 54, 192, 124)
$Input1 = GUICtrlCreateInput("", 16, 16, 121, 21)
$Button1 = GUICtrlCreateButton("blub", 152, 16, 129, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $button1
$Ini = @ScriptDir & "/testini.ini"
IniWrite($ini, "Section","Key",$input1)
$iniread = GUICtrlRead($input1)
MsgBox(0,"Iniread","In der IniDatei Steht : " & $iniread)
EndSwitch
WEnd
|
|
|
|
01/01/2010, 10:09
|
#10
|
elite*gold: 0
Join Date: May 2009
Posts: 634
Received Thanks: 794
|
THX jetzt gets:Hier nochmal der code^^
Quote:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("xD", 299, 54, 192, 124)
$Input1 = GUICtrlCreateInput("", 16, 16, 121, 21)
$Button1 = GUICtrlCreateButton("blub", 152, 16, 129, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $button1
$Ini = @ScriptDir & "/testini.ini"
IniWrite($ini, "Section","Key",$input1)
$iniread = GUICtrlRead($input1)
MsgBox(0,"Iniread","In der IniDatei Steht : " & $iniread)
EndSwitch
WEnd
|
|
|
|
01/01/2010, 10:21
|
#11
|
elite*gold: 0
Join Date: May 2009
Posts: 634
Received Thanks: 794
|
so von einem zum anderen PRoblem xD
Quote:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include<IE.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("xD", 193, 126, 192, 124)
$Label1 = GUICtrlCreateLabel("Email", 8, 8, 36, 17)
$Input1 = GUICtrlCreateInput("", 56, 8, 129, 21)
$Input2 = GUICtrlCreateInput("", 56, 32, 129, 21)
$Label2 = GUICtrlCreateLabel("pw", 8, 32, 36, 17)
$Button1 = GUICtrlCreateButton("GO!", 8, 64, 177, 57, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $button1
$Ini = @ScriptDir & "/testini.ini"
$iniread = GUICtrlRead($input1)
$iniread = GUICtrlRead($input2)
$oIE = _IECreate ("https://www.battlefieldheroes.com/")
$oAdress = _IEFormElementGetObjByName($oIE, "Email:") ; hier solte er die Email lesen
$oPass = _IEFormElementGetObjByName ($oIE, "password:") ;hier das pw
$oEmail = _IEFormElementGetValue($oAdress)
_IEFormElementSetValue ($oPass, GUICtrlRead($input2)) ; hier solte er es schreiben
_IEFormElementSetValue ($oEmail,GUICtrlRead($input1)) ;hier auch xD
EndSwitch
WEnd
|
Ich bin woscheinlich zu doof das auf die seite anzupassen oder? xD
pls help^^
|
|
|
 |
Similar Threads
|
!!!!!suche leute die mir bei ner hp helfen und leute für den server !!!und2 fragen
10/04/2009 - Metin2 Private Server - 5 Replies
1Frage wie kann ich das pw von der db ändern das nicht alle den ich den server gebe sie umstellen können
2: wie erstelle ich neue acc die nicht das pw 12345 haben
3:suche 5test spieler
mfg
dercoole1
|
Hi leute ich suhe leute die fly for fame hacken wohlen,können
02/18/2009 - Flyff Private Server - 8 Replies
hi ich suche leute die sich gut mit Häcks aukennen und fff hacken wohlen
ich will ein gm acc hacken oder die log-ing dateien herausfienden
Sry für fehler
thx Ihn voraus^^
pmt mich wer ff hacken können wohlen!!!
|
So Leute wollt mich nochmal bedanken bei euch wegen dem rootkit
03/09/2008 - Kal Online - 10 Replies
jo leute auf Nareaha bin ich jetzt der bekannteste hacker den es gibt wenn ihr DumpArch..... kennt ^^ auf jeden fall haben mir manche leute sehr geohlfen special Thanks an ReaVe auf jeden fall bin ich grad mit meinem knight geimpte waffen an der speedrampe am verkaufen:D
|
All times are GMT +1. The time now is 06:15.
|
|