Here is the code I have been using -- I put it in the STARTUP part of
each apps I have
This was made from many suggestions I have seen over the past few years.

SET VAR vg_temp TEXT = NULL
SET VAR vg_temp = (ENVVAL('TEMP'))
IF vg_temp IS NOT NULL THEN
  --This will store temp files in Windows/Temp directory
  --If the Machine is Win98 on NT or 2000 it will be in the WINNT/TEMP
dir
  SET SCRATCH &vg_temp
  SET VAR delfiles TEXT = ('ERASE' & .vg_temp + '\' + '*.$$$')
  &delfiles
ELSE
  SET SCRATCH ON --This will store temp files in the current directory
  SET VAR vg_temp = (CVAL('CURRDIR'))
  SET VAR delfiles TEXT = ('ERASE' & .vg_temp + '\' + '*.$$$')
  &delfiles
ENDIF
CLEAR VAR vg_temp, delfiles
SET FILES 60

Jim Limburg

Manuel de Aguiar wrote:
> 
> Hello Everyone,
> 
> I have a customer that is suffering from what they call:
>                    THE RED BAR
> 
> It is the RBase for DOS error message display at the bottom
> 
> waiting for resourcess a   5% ..........
> 
> Sometimes is better and sometimes is worse. Can anyone enumerate some of
> the conditions that will cause this message to occurr?
> 
> TIA
> Manuel

Reply via email to