mircea Posted April 18, 2007 Posted April 18, 2007 #include <GuiConstants.au3> $username = InputBox("Username", "Introdu Username-ul") Msgbox("Username", "username-ul tau este $username") well is not really my first script but i dont get it here well the problem is how do i show in a MSGBOX the username ??? ( P.S Introdu USername = Enter USername) can someone help me here i am a begginer in this but is much easier then C++ and by the way is this like C++ or some differences?
hmsSurprise Posted April 18, 2007 Posted April 18, 2007 #include <GuiConstants.au3> $username = InputBox("Username", "Introdu Username-ul") Msgbox("Username", "username-ul tau este $username") well is not really my first script but i dont get it here well the problem is how do i show in a MSGBOX the username ??? ( P.S Introdu USername = Enter USername) can someone help me here i am a begginer in this but is much easier then C++ and by the way is this like C++ or some differences? Try #include <GuiConstants.au3> $username = InputBox("Username", "Introdu Username-ul") Msgbox(0, "Username", "username-ul tau este " & $username)
mircea Posted April 18, 2007 Author Posted April 18, 2007 yes now i find it ~X( i am a jackas so simple is like C++ and i dont know how to use AH ~X( thank you very much
hmsSurprise Posted April 18, 2007 Posted April 18, 2007 yes now i find it ~X( i am a jackas so simple is like C++ and i dont know how to use AH ~X( thank you very muchNo, if that were the case I could win the jackass of the list award. Just ask, .... well, a lot of list folks.
PsaltyDS Posted April 18, 2007 Posted April 18, 2007 No, if that were the case I could win the jackass of the list award. Just ask, .... well, a lot of list folks.You got my vote! Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
hmsSurprise Posted April 18, 2007 Posted April 18, 2007 You got my vote! I seriously thought about putting PsaltyDS or a whistle.gif in the stead of the .... in my post.Everybody is good at something. Thanks for your support! B4 posting in the future I will try to find all my answers in the forum and you know... the help file.I suppose I could write lines - "I must look in the help file and search the forums" but I guess that is old school with cut and paste....
Bert Posted April 18, 2007 Posted April 18, 2007 To get the username to show up, use the Macro @username. it can be found in the helpfile: mk:@MSITStore:C:\Program%20Files\AutoIt3\AutoIt3.chm::/html/macros.htm The Vollatran project My blog: http://www.vollysinterestingshit.com/
PsaltyDS Posted April 18, 2007 Posted April 18, 2007 hmsSurprise: $String = "I must look in the help file and search the forums." _Detention($String, 100) Func _Detention($sText, $iTimes) For $n = 1 To $iTimes ConsoleWrite($sText & @LF) Next EndFunc ;==>_Detention Teacher: "No, I meant on the blackboard, with the chalk, and you know it!" Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now