Talk:Main Page: Difference between revisions

From AutoIt Wiki
Jump to navigation Jump to search
 
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Homepage talk page ==
'''For discussions about the AutoIt Wiki "Main Page".'''<br>
''(See the [[AutoIt_Wiki:Community_portal|Community portal]] page for general info on AutoIt Wiki)''<br>
''(Use the [[AutoIt_Wiki_talk:Community_portal|Community portal discussion]] page for general AutoIt Wiki talk)''


== FAQ, Cookbook, Examples ==
== How to use if else with @OSArch ==


Provide one centralised area with a list of examples instead of three separate places where questions are answered on the front page. Preferably categorized like the cookbook is at the moment.
Hi All,
[[User:Manadar|Manadar]] 11:49, 15 May 2009 (UTC)


:http://www.autoitscript.com/autoit3/docs/history.htm [[User:Manadar|Manadar]] 13:33, 15 May 2009 (UTC)
Thanks in advance for the help


:: I put it on the main page. The old page can be seen here: [[http://www.autoitscript.com/w/index.php?title=Main_Page&oldid=8084]] [[User:Manadar|Manadar]] 16:15, 17 May 2009 (UTC)
I have some code which is running successfully but not giving the output.


== mdiesel wrapper ==
here it is


I am considering adding a Wrapper page, and copy + paste that thread into here. It would be much easier than constntly having to find the thread (I'm not sure how it didn't get sticky). I am busy compiling the page now, so that'll get done. I think it will be too long to put in examples or udf's.


: There is already a wrapper page created and maintained by Valuater: http://www.autoitscript.com/forum/index.php?showtopic=19370 . It would be good to have that ported to the Wiki. Oh, and please sign your posts with four tilde (~) signs. [[User:Manadar|Manadar]] 11:02, 28 May 2009 (UTC)
Func BitCompatibility()
Local $OStype
$OStype = @OSArch
If $OStype == "X64" Then
 
MsgBox(0,64,$OStype)
 
ElseIf $OStype == "X86" Then
MsgBox(0,32,$OStype)
 
EndIf
EndFunc

Latest revision as of 05:42, 18 September 2013

For discussions about the AutoIt Wiki "Main Page".
(See the Community portal page for general info on AutoIt Wiki)
(Use the Community portal discussion page for general AutoIt Wiki talk)

How to use if else with @OSArch

Hi All,

Thanks in advance for the help

I have some code which is running successfully but not giving the output.

here it is


Func BitCompatibility() Local $OStype $OStype = @OSArch If $OStype == "X64" Then

MsgBox(0,64,$OStype)

ElseIf $OStype == "X86" Then MsgBox(0,32,$OStype)

EndIf EndFunc