TSR
-
Hi!! i need to know about TSR(terminate and stay resident) programs in C#... plz.. guide me... i wanna learn how to make TSR programs in C#
TSR? I haven't seen that notion for the last 10 years. If you mean a program that loads once, and sits idle waiting to help you somehow, maybe visible in the task bar (with a NotifyIcon and a ContextMenu), yes those are just plain Windows applications. Examples are plenty here and elsewhere; I have one here: LP#TrayIconBuster[^] :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use < PRE > tags for code snippets, it preserves indentation, and improves readability.
-
Hi!! i need to know about TSR(terminate and stay resident) programs in C#... plz.. guide me... i wanna learn how to make TSR programs in C#
Since Windows allows multiple programs to be loaded at the same time, TSR is no longer something special. Your C# programs are already TSR programs.
-
Hi!! i need to know about TSR(terminate and stay resident) programs in C#... plz.. guide me... i wanna learn how to make TSR programs in C#
TSRs are rare (Extinct?) these days, I don't think it is possible in .net. You can look at writing a service in .net (plenty of stuff on the Internet about .net services), this will probably achieve what you need. [edit] You can tell who the old people are on this forum, because we know what a TSR is :-) !
Dalek Dave: There are many words that some find offensive, Homosexuality, Alcoholism, Religion, Visual Basic, Manchester United, Butter. Pete o'Hanlon: If it wasn't insulting tools, I'd say you were dumber than a bag of spanners.
-
Hi!! i need to know about TSR(terminate and stay resident) programs in C#... plz.. guide me... i wanna learn how to make TSR programs in C#
My flight sim requires 620k of base memory do I don't like pesky TSR's.
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. A man said to the universe: "Sir I exist!" "However," replied the universe, "The fact has not created in me A sense of obligation." --Stephen Crane
-
My flight sim requires 620k of base memory do I don't like pesky TSR's.
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. A man said to the universe: "Sir I exist!" "However," replied the universe, "The fact has not created in me A sense of obligation." --Stephen Crane
Make sure you have sufficient EMS and XMS. And write the IRQ and DMA for your sound card on the side of the monitor...
-
My flight sim requires 620k of base memory do I don't like pesky TSR's.
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. A man said to the universe: "Sir I exist!" "However," replied the universe, "The fact has not created in me A sense of obligation." --Stephen Crane
Wow, I forgot all about that, kicking TSRs into upper memory with EMM386 when wanting to play F15 Strike Eagle. Happy days!
Dalek Dave: There are many words that some find offensive, Homosexuality, Alcoholism, Religion, Visual Basic, Manchester United, Butter. Pete o'Hanlon: If it wasn't insulting tools, I'd say you were dumber than a bag of spanners.
-
Wow, I forgot all about that, kicking TSRs into upper memory with EMM386 when wanting to play F15 Strike Eagle. Happy days!
Dalek Dave: There are many words that some find offensive, Homosexuality, Alcoholism, Religion, Visual Basic, Manchester United, Butter. Pete o'Hanlon: If it wasn't insulting tools, I'd say you were dumber than a bag of spanners.