Link to home
Start Free TrialLog in
Avatar of mvianna
mvianna

asked on

Winpopup messages

I need to build an application like winpopup message.

Note : The machines which exchange messages over the network run WIN95.

They should be able to receive and send messages to Machines, users or groups. And also receive messages from other machines which run the Winpopup.
Avatar of Mirkwood
Mirkwood

Download the file with this description
"Sends message from NT 4.0 to NT 4.0 or Win95 running winpopup"
from
http://www.geocities.com/SiliconValley/Peaks/1797/ 

Avatar of mvianna

ASKER

It works with NT. However both machines use win95.

How could I use Mailslot, as winpopup does ?
It works on win95 too as the title says.

Avatar of mvianna

ASKER

will it works from win95 to win95 ?
Avatar of mvianna

ASKER

will it works from win95 to win95 ?
yes why not?
Avatar of mvianna

ASKER

Mirkwood - I tried your solution :
 "Sends message from NT 4.0 to NT 4.0 or Win95 running winpopup"
from http://www.geocities.com/SiliconValley/Peaks/1797/ 

But the machine doesn't have NT, It's logged on NT.

Could get me a hand using MailSlots. I'd like to build an application to send and receive messages from Winpopup as https://www.experts-exchange.com/jsp/qShow.jsp?ta=vbcontrols&qid=10095936 

[]

ASKER CERTIFIED SOLUTION
Avatar of Mirkwood
Mirkwood

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mvianna

ASKER

Hey, could get me a hand with Mailslot.cls.

Do you have a project example ?

I travelled a lot on geocities and i still don't get it.
dim clsMailSlot as class_MailSlot
set clsMailSlot = new class_MailSlot
call clsMailSlot.Create("yourmailsot")
call clsMailSlot.MailWrite("Hello, how are you")
set clsMailSlot = nothing

In other process
dim clsMailSlot as class_MailSlot
set clsMailSlot = new class_MailSlot
call clsMailSlot.Create("yourmailsot")
Debug.Print clsMailSlot.Mailread()
set clsMailSlot = nothing