VOGONS

Common searches


First post, by anwershah

User metadata
Rank Newbie
Rank
Newbie

Hi, new to DOSBox, running an old accounting software in full-screen, need to be able to terminate the DOSBox shell when the accounting program exits (so the user does not have to exit full-screen then close the DOSBox window). Can this be done?

Reply 1 of 2, by Vince.Bloodworks

User metadata
Rank Newbie
Rank
Newbie

Hi anwershah,

one way is to use a batch.
It could maybe look like this:

@ECHO OFF
ECHO ------------------------
ECHO Starting program....
ECHO ------------------------

<PROGRAMNAME HERE>
EXIT

Hope that's what you need

Vince