crystalburner Posted February 23, 2006 Posted February 23, 2006 Hi Im trying to search certain folders and their subfolders for a file type *.pst *.ost *.dbx $search = FileFindFirstFile("c:\*.pst") this command only looks in the current folder, what i want to do is say something like this $search = FileFindFirstFile("*.PST,*.DBX,*.OST") in "c:\documents and settings" plus all subfolders I guess the results would go into an array because there could be several folders found Or did I just make a complete idiot of myself (blush) Crystal
Valuater Posted February 23, 2006 Posted February 23, 2006 Welcome to the forumsthis does a similar thing with .txt .au3 .dat & .inihttp://www.autoitscript.com/forum/index.php?showtopic=20459#you could chage the extensions easily8)
BigDod Posted February 23, 2006 Posted February 23, 2006 Another topic worth looking at. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
crystalburner Posted February 23, 2006 Author Posted February 23, 2006 Another topic worth looking at.Thanks guys !
BlazeLondon Posted February 24, 2006 Posted February 24, 2006 Thanks guys !silly question but shouldn't the message boxes stay over the application?, like if you click on the application the message box falls behind it and then you get stuck!
BlazeLondon Posted February 24, 2006 Posted February 24, 2006 Thanks guys !silly question but shouldn't the message boxes stay over the application?, like if you click on the application the message box falls behind it and then you get stuck!
Valuater Posted February 24, 2006 Posted February 24, 2006 check out the code wizard in scite open SciTE press Tools > CodeWizard that will make message boxes for you and you can use the checkbox... set-on-top 8)
crystalburner Posted February 24, 2006 Author Posted February 24, 2006 check out the code wizard in sciteopen SciTEpress Tools > CodeWizardthat will make message boxes for you and you can use the checkbox... set-on-top8)Oh okey!um... whats SCiTE? Is there no way of just telling AutoIT to put the box always on top?
andyswarbs Posted February 24, 2006 Posted February 24, 2006 www.autoitscript.com/autoit3/scite/ (imo) provides you with the most amazing and powerful development environment for au3. 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)
crystalburner Posted February 24, 2006 Author Posted February 24, 2006 www.autoitscript.com/autoit3/scite/ (imo) provides you with the most amazing and powerful development environment for au3.so its not possible to just do this with autoIT?there is a msgbox code for always on top but its only an OKbutton and I need yes / no
BigDod Posted February 24, 2006 Posted February 24, 2006 MsgBox(262148,"Message","This message box has yes/no buttons and is always on top") Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
crystalburner Posted February 24, 2006 Author Posted February 24, 2006 MsgBox(262148,"Message","This message box has yes/no buttons and is always on top") cool! why wasn't that in the manual!?
BigDod Posted February 24, 2006 Posted February 24, 2006 cool!why wasn't that in the manual!?It is in the help fileThe flag parameter can be a combination of the following values:and** Only valid on Windows 2000/XP and above.For example, to specify a SYSTEMMODAL box with the YES/NO buttons the flag value would be 4096+4 (or 4100) If using hexadecimal flags, that would be 0x1000+0x4 (or 0x1004).Perhaps it could be a little clearer. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
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