// JP opened flex table

Click to See Complete Forum and Search --> : BroadcastSystemMessage on 95


Dan Cieslak
June 25th, 1998, 12:30 PM
Using Visual C++ 5.0, we have an app that uses BroadcastSystemMessage.

It seems to work fine on NT, but on my 95 box, it complains that

BroadcastSystemMessageA can't be found in user32.dll. Has anyone

encountered this problem? More importantly, has anyone worked around

it?


Apparently it is a known problem (it was in M$'s Knowledge Base),

but I can't seem to open the reference page...


Thanks,

Dan Cieslak

boater
June 29th, 1998, 04:28 PM
Cant you just use a 0 as your window in SendMessage and have it go

out to everyone, thats how it used to work, but I havnt tried under 95 yet.


Boater

John Bundgaard
July 4th, 1998, 08:21 PM
Just use PostMessage(HWND_BROADCAST, , , ).

It works on both 95(98) and NT.

//JP added flex table