Jump to content

my first simple script


Recommended Posts

#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?

Link to comment
Share on other sites

#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)
Link to comment
Share on other sites

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! :shocked:

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
Link to comment
Share on other sites

You got my vote! :shocked:

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....

Link to comment
Share on other sites

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!"

:shocked:

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
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...