@Thread
Thanks to all those that replied.
Basically all I needed to do was check if a file within an assign exists but without the requester popping up if the assign does not exist on someone's system.
APTR oldwin = IDOS->SetProcWindow((APTR)-1);
/* Do the stuff I want here */
IDOS->SetProcWindow(oldwin);
That does the trick - perfect
The function also looks useful for ensuring any requesters which I do want to keep will open on the application's screen instead of Workbench.
Excellent, thanks for the suggestions.
Bill.