ProScan: Clicking Speaker Icon Mutes All Instances

KevinC

Encryption
Super Moderator
Joined
Jan 7, 2001
Messages
13,249
Location
I'm everywhere Focker!
Just like my activity indicator issue I'm sure this used to work also, but I could be wrong.

Before I uninstalled and reinstalled all my instances of ProScan I had one instance set to mute everything and that still works. Problem is when I click unmute it only unmutes that one instance and not the others. I see the other instances "blink" but they don't unmute.

Maybe @fxdscon can try this since he has the activity indicator issue like I do and confirm if it's just me or not.
 

buddrousa

Member
Premium Subscriber
Joined
Jan 5, 2003
Messages
13,176
Location
Retired 40 Year Firefighter NW Tenn
Kevin I am running Win 11 Pro I have one of my SDS200 Pro's connected network IP I put the scanner on weather it talks I hit the Proscan Spkr Icon it mutes the sound when I click the Icon again the sound returns on the laptop. The speaker on the scanner never mutes just on the Laptop.
 

KevinC

Encryption
Super Moderator
Joined
Jan 7, 2001
Messages
13,249
Location
I'm everywhere Focker!
Kevin I am running Win 11 Pro I have one of my SDS200 Pro's connected network IP I put the scanner on weather it talks I hit the Proscan Spkr Icon it mutes the sound when I click the Icon again the sound returns on the laptop. The speaker on the scanner never mutes just on the Laptop.
I’m talking about multiple instances. I have one set to mute all of them. Mute works, when I click unmute it only unmutes that one instance, the others stay muted.
 

ProScan

Software Provider
Premium Subscriber
Joined
Jul 2, 2006
Messages
8,049
Location
Ontario, Calif.
Just like my activity indicator issue I'm sure this used to work also, but I could be wrong.

Before I uninstalled and reinstalled all my instances of ProScan I had one instance set to mute everything and that still works. Problem is when I click unmute it only unmutes that one instance and not the others. I see the other instances "blink" but they don't unmute.

Maybe @fxdscon can try this since he has the activity indicator issue like I do and confirm if it's just me or not.
Can you advise on the scanner type?
Are you using the Sessions Manager to mute/unmute the other instances?
 

KevinC

Encryption
Super Moderator
Joined
Jan 7, 2001
Messages
13,249
Location
I'm everywhere Focker!
Can you advise on the scanner type?
Are you using the Sessions Manager to mute/unmute the other instances?
SDS200, BCD996XT, BCD436HP and BCD536HP.

I have the below option checked in one instance...

1746276203898.png
This worked as expected until I had uninstalled and reinstalled all my instances. I'm not using Sessions Manager.
 

ProScan

Software Provider
Premium Subscriber
Joined
Jul 2, 2006
Messages
8,049
Location
Ontario, Calif.
Thanks. Any headway on the taskbar icon activity issue? Or is that not fixable?
That's a Windows thing. Nothing can be done in ProScan. I looked into the taskbar api's and I didn't see anything that sets the taskbar icon.
The only way I know of is by setting the form icon which is different then setting the application icon. The application icon can't be changed once the program is running.
 

KevinC

Encryption
Super Moderator
Joined
Jan 7, 2001
Messages
13,249
Location
I'm everywhere Focker!
That's a Windows thing. Nothing can be done in ProScan. I looked into the taskbar api's and I didn't see anything that sets the taskbar icon.
The only way I know of is by setting the form icon which is different then setting the application icon. The application icon can't be changed once the program is running.
Ok, thanks. As long as I don't use shortcuts it works fine, so I'll just keep starting each instance from the .exe in the folder.
 

fxdscon

¯\_(ツ)_/¯
Premium Subscriber
Joined
Jan 15, 2007
Messages
7,497
Ok, thanks. As long as I don't use shortcuts it works fine, so I'll just keep starting each instance from the .exe in the folder.
Or... a small VB script to start one or more instances of ProScan from a desktop icon.
 

ProScan

Software Provider
Premium Subscriber
Joined
Jul 2, 2006
Messages
8,049
Location
Ontario, Calif.
Ok, thanks. As long as I don't use shortcuts it works fine, so I'll just keep starting each instance from the .exe in the folder.

Or... a small VB script to start one or more instances of ProScan from a desktop icon.

vbs format - [filename].vbs
Set sh = CreateObject("WScript.Shell")
sh.Run """C:\ProScan\ProScan1\ProScan.exe"""
sh.Run """C:\ProScan\ProScan2\ProScan.exe"""

batch format - [filename].bat
@Echo off
echo Run ProScan Instances
"C:\ProScan\ProScan1\ProScan.exe"
"C:\ProScan\ProScan2\ProScan.exe"
 

mikewazowski

Forums Manager/Global DB Admin
Staff member
Forums Manager
Joined
Jun 26, 2001
Messages
13,907
Location
Oot and Aboot
Or... a small VB script to start one or more instances of ProScan from a desktop icon.
Now that's a great idea but like Kevin, I can't spell VB either.

I assume I have to download VB from Microsoft or can I use the second example just to run a batch file?
 

ProScan

Software Provider
Premium Subscriber
Joined
Jul 2, 2006
Messages
8,049
Location
Ontario, Calif.
Now that's a great idea but like Kevin, I can't spell VB either.

I assume I have to download VB from Microsoft or can I use the second example just to run a batch file?
I don't believe you need to download anything to use VBScript as the engine is built into Windows. I see it's depreciated but still works.

A batch file may be just as good.
 

KevinC

Encryption
Super Moderator
Joined
Jan 7, 2001
Messages
13,249
Location
I'm everywhere Focker!
I don't believe you need to download anything to use VBScript as the engine is built into Windows. I see it's depreciated but still works.

A batch file may be just as good.
I appreciate the suggestions. using the .bat route it will open the first instance but won't open the second until I close the first. Any ideas?
 

sallen07

Member
Premium Subscriber
Joined
Dec 22, 2013
Messages
1,303
Location
Rochester, NY
I appreciate the suggestions. using the .bat route it will open the first instance but won't open the second until I close the first. Any ideas?
Well I knew how to do it in a shell script ("&") but had to look up how to do it on Windows. I think if you use the "start" command it will do what you want:

start "C:\ProScan\ProScan1\ProScan.exe"
start "C:\ProScan\ProScan2\ProScan.exe"

No, I haven't tested it. :p
 
Top