MariusN Posted April 11, 2013 Share Posted April 11, 2013 Hi folks...Just want to know IF there exists a "clear function buffer" command...I know about the clear FILE command/handle, but is there something to clear the buffer of a repeatedly function? tia Link to comment Share on other sites More sharing options...
BrewManNH Posted April 11, 2013 Share Posted April 11, 2013 You'll have to explain what exactly you mean a lot better than you did, because I have no idea what you're asking about. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
James Posted April 11, 2013 Share Posted April 11, 2013 Hi folks...Just want to know IF there exists a "clear function buffer" command...I know about the clear FILE command/handle, but is there something to clear the buffer of a repeatedly function?Do you mean the Adlib stuff? AdlibDisable() would do it. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ Link to comment Share on other sites More sharing options...
MariusN Posted April 11, 2013 Author Share Posted April 11, 2013 (edited) i have a while-wend opperation...sometimes i get a "stack overflow" message...It is a LOTTO program i wrote a couple of years ago where you actually "click" a button, and it will throw out 6 numbers. It so happens, that sometimes the SAME number gets kicked out, but i have a "Try Again" button instead that will pop-up and ask you to try again...it WILL work when it gets a diff no. So, i have decided to take out the "Try Again" button and throw the function to just repeat itself...instead of hitting "Try Again" Edited April 11, 2013 by MariusN Link to comment Share on other sites More sharing options...
BrewManNH Posted April 11, 2013 Share Posted April 11, 2013 It's called a recursion error, and there's a Wiki article about how to avoid it when it's not necessary (such as in this case). You shouldn't have a function call itself, or call another function that loops back to the first function unless there's a good reason for it. MariusN 1 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
MariusN Posted April 11, 2013 Author Share Posted April 11, 2013 thx folks ( and to BrewMaNH )....stupid me...i just did a "return ($var)" and it worked...many a thanks 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