My Update Tip for those who are afraid using an early Beta:
Install one version (DO10 or DO11) to the standard path and export the other version to somewhere on your harddisk which is possible using the USB export feature with the "Dongle" option. You'll need to fully exit DOpus and also kill dopusrt.exe using taskmanager before you can start the exported version (and of course have the USB stick you used as a dongle plugged in). To make this procedure an one-click-action I'm using a little nircmd script (DOpusExported.ncl) which I call from a button:
Button code
[path]\nircmd.exe script "[path]\DOpusExported.ncl"
DOpusExported.ncl
exec show ""[path]\dopusrt.exe" /cmd Close PROGRAM"
wait 200
killprocess "dopusrt.exe"
exec show "[exported version path]\DOPUS.exe]"To switch back to your standard Installation you'll need to create a similar second Script (DOpusLocal.ncl) with exec show "[local version path]\dopus.exe]" as the last line and of course a button that calls this script on your exported version.