thank you for a great program!!!
are you setting the volume to max by changing a registry setting? any chance the config file can accept other registry changes to set on startup and put back on exit? i am thinking about the setting for the connecting bubble. it can be set to not show so that when tomtom traffic is connecting, it will not disrupt navigation. the registry value is:
[HKEY_CURRENT_USER\ControlPanel\Notifications\{8ddf 46e7-56ed-4750-9e58-afc6ce486d03}]
"Options"=dword:00000000
i am not able to find a registry to disable the cannot connect bubble. but there seems to be a way to program:
HWND hwnd = ::FindWindow(L"Dialog",L"Cannot Connect");
if ( hwnd != NULL )
:: DestroyWindow(hwnd);
rather than hard coding "Cannot Connect", it could be added to the config file as well with number of seconds to check.
EDIT: found the above code
here.