Talk:Main Page: Difference between revisions

From AutoIt Wiki
Jump to navigation Jump to search
 
(3 intermediate revisions by one other user 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


== Article management ==
MsgBox(0,64,$OStype)


Adjusted the Delete template a bit. So a optional reason can be added to the Delete tag (see doc: [[Template:Delete]]).  Also added a auto category to it ([[:Category:Candidates for deletion]]) for easier management by admins. --[[User_talk:IEvKI3gv9Wrkd41u|<i><font color="#666" size="2px">.MvGulik.</font></i>]] 23:34, 8 November 2012 (GMT)
ElseIf $OStype == "X86" Then
MsgBox(0,32,$OStype)


== Wiki headers (Jaberwocky6669) ==
EndIf
 
EndFunc
Just in case. Wiki headers are not just text headers, but also serve as edit blocks. Or: Two or more users can edit the same page without conflicts when they all are editing a different section. (they are also useful as additional edit description when only editing a header/section instead of the whole page.) --[[User_talk:IEvKI3gv9Wrkd41u|<i><font color="#666" size="2px">.MvGulik.</font></i>]] 00:12, 9 November 2012 (GMT)
 
Is this a response to some question I had forgotten about?  [[User:Jaberwocky6669|Jaberwocky6669]] ([[User talk:Jaberwocky6669|talk]]) 20:31, 10 November 2012 (GMT)
 
:No. It was in responds to this [http://www.autoitscript.com/w/index.php?title=SciTE4AutoIt3&diff=prev&oldid=10877 this] edit. Was just wondering if you already knew those facts about headers. (You can delete this section, as its just a informational note.) --[[User_talk:IEvKI3gv9Wrkd41u|<i><font color="#666" size="2px">.MvGulik.</font></i>]] 21:17, 10 November 2012 (GMT)
 
I see.  Thanks for the heads up and I'll keep that in mind. [[User:Jaberwocky6669|Jaberwocky6669]] ([[User talk:Jaberwocky6669|talk]]) 00:27, 11 November 2012 (GMT)
 
== Helpfile Pages in the Wiki ==
 
Are they necessary?  There is the helpfile and the online version.

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