Link to home
Start Free TrialLog in
Avatar of cmg05
cmg05

asked on

TSR's

I need to run a TSR that will re-open an Access program
when ever the it is closed by the user.  But I don't
know much about TSR's.
Avatar of kayton
kayton

TSR stands for "Terminate and Stay Resident".  It means that you run a program and is stays running in the background, usually displaying a Win95 icon in the System Tray (lower right corner of the screen).  If there is no icon, it usually will appear on the Win95 "Close Programs" list that you get with CTL-ALT-DEL.  You don't need to know how it works.  Just execute it by typing the name of the EXE file.

If you are running DOS or Win 3.x, you will see the TSR by typing MEM at the DOS prompt.  It will be one of the items listed as taking up memory.  

Sometimes TSRs cause problems since they interfere with other things that are trying to run.  If not notice weird behavior after running it, blame it on the TSR!
Avatar of cmg05

ASKER

How do I go about makinf a exe file I write TSR?
Avatar of cmg05

ASKER

How do I go about making a exe file I write TSR?
Sorry, I don't know how.  Maybe somebody else can answer this one.
ASKER CERTIFIED SOLUTION
Avatar of bluepet
bluepet
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
To create a TSR, you must work under DOS, because a TSR doesn't exist as such at Win level.

Of course, you must use programming languages wich support TSR techniques, as asm, Pascal, etc.. If you're working, i.e., with Fox or Clipper, don't even dream of it.

Avatar of cmg05

ASKER

This Is the type of program I had proposed but it needs to be
invisable to the user, this will still apear in the start bar
and can be easily closed with the mouse.

All I realy need to know is how to hid it from the start bar.
(thats where TSRs come in I think)
Avatar of cmg05

ASKER

This Is the type of program I had proposed but it needs to be
invisable to the user, this will still apear in the start bar
and can be easily closed with the mouse.

All I realy need to know is how to hid it from the start bar.
(thats where TSRs come in I think)