Talk:Main Page: Difference between revisions

From AutoIt Wiki
Jump to navigation Jump to search
m (→‎Article management: Delete candidates: User_talk + User)
 
(8 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


== 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)


 
EndIf
'''Additional Delete candidates:'''
EndFunc
* Most of the current '''User_talk''' pages:
**- most are IP talk pages.
**- some(none IP talk page) have a edit issue, and some others are from (still?) unregistered users.
* A bit of the same for the current '''User''' pages. With "MBT Shoes ..."(=spam) and 64.124.222.176 as easy pickings.
--[[User_talk:IEvKI3gv9Wrkd41u|<i><font color="#666" size="2px">.MvGulik.</font></i>]] 00:53, 9 November 2012 (GMT)
 
== Wiki headers (Jaberwocky6669) ==
 
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)

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