Hi,
I am using SlickEdit Version 11.02. I am using the "definit" within my own custom macro with arg(1)!=L to detect when the user has invoked the editor. Using that I intend to display the splash screen every time the user opens the slick edit editor. This is shown below in red.
It manages to show the splash screen. Unfortunately when I invoke the operation "Find In Files" and hit OK, it also has the effect of calling definit() with arg(1)!=L resulting in the splash screen being displayed.
Anyone any ideas please on why the "Find In Files" operation has this effect and if it is easy to prevent? No other slick edit operations seem to have this effect? If not, any other suggestions on when I can show a splash screen every time the user invokes slick edit.
Thanks,
Don
definit()
{
if (arg(1)!="L") {
form_wid=show('StartUpSplashScreen');
delay(200,"K");
form_wid._delete_window();
}
}