Ursie Posted December 27, 2006 Posted December 27, 2006 Hi to you all folks, I want to show a table lined as follow in the function InputBox. Value1.1 - Value 1.2 - Value 1.3 Value2.1 - Value 2.2 - Value 2.3 Value3.1 - Value 3.2 - Value 3.3 The var's value are different from size so i can't depend on that. But because the text shown inside the InputBox function is of the type TrueType I can't line the text just by simply adding " ". Is there any other way i can handle this ? Thnx for the help
Thatsgreat2345 Posted December 27, 2006 Posted December 27, 2006 (edited) Could you please specify what you want further I do not understand. Edit: Just making sure your using AutoitX not Autoit V3 Edited December 27, 2006 by Thatsgreat2345
Ursie Posted December 27, 2006 Author Posted December 27, 2006 Well what i want is to create a completly lined table inside the InputBox function. But because the inputbox function uses TrueType fonts (most probably standard windows setting) I can't pin point how to line out the table of multiple strings. Is there an other way how i can do this ? I hope my info clarifies what i want :-D
Valuater Posted December 27, 2006 Posted December 27, 2006 maybe... $Info = "Value 1.1" & @TAB & "- Value 1.2 " & @TAB & "- Value 1.3" & @CRLF & _ "Value 2.1 " & @TAB & "- Value 2.2 " & @TAB & "- Value 2.3" & @CRLF & _ "Value 3.1 " & @TAB & "- Value 3.2 " & @TAB & "- Value 3.3" InputBox("Please Select", $Info) 8)
Richard Robertson Posted December 28, 2006 Posted December 28, 2006 I don't think tabs take effect in labels. That's all the text string is on an InputBox, a label.
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