andyswarbs Posted February 11, 2006 Share Posted February 11, 2006 This snippet I call in absolutely every program I write. It was the first library function I wrote & has stood the test of time. It ain't long, and it doesn'y do a lot, but I could not live without it. ; _MsgBoxExit Does a normal message box and then exits if either no exit control is specified or if the specified button is clicked. Func _MsgBoxExit($mbeFlag,$mbeTtl,$mbeTxt,$mbeExitIf=0,$mbeTime=0) Local $mbeRtn If $mbeTime>0 Then $mbeRtn=MsgBox($mbeFlag,$mbeTtl,$mbeTxt,$mbeTime) Else $mbeRtn=MsgBox($mbeFlag,$mbeTtl,$mbeTxt) EndIf If $mbeRtn=$mbeExitIf Or 0=$mbeExitIf Then Exit Return $mbeRtn EndFunc Licensing.au3Extended _Max & _Min_MsgBoxExitVarious extensions to _GuiCtrl...Run Dos programs output into an array etc (Updated 19-Feb-06)Extensions to Array library, primarily in two dimensions (updated 20-Feb-06)Version dependency calculator, _IsVer1GEVer2User Management, answering some domain questions (updated 19-Feb-06, various bugfixes and new functions added)Extensions to registry manipulation, including a recursive search & replaceDelimited string library (updated 19-Feb-03, added _DelimListSort)String library extensionsTerminal Server supportFile libraryCommand line parser (added 18-Feb-06)(UDF homepage) (Scit4Au3 UserCallTips added 21-Feb-06) Link to comment Share on other sites More sharing options...
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