Sending 'popup messages' from VB6 
Author Message
 Sending 'popup messages' from VB6

Greetings VB Gurus!

Does anybody out there know off-hand how to send the little
popup messages (net send <pc> message) from VB6
without calling up a DOS prompt?

I'd appreciate any advice or pointers in the right direction!

Jon Wells



Sun, 29 Jul 2001 03:00:00 GMT  
 Sending 'popup messages' from VB6

<Does anybody out there know off-hand how to send the little
<popup messages (net send <pc> message) from VB6
<without calling up a DOS prompt?
<
<I'd appreciate any advice or pointers in the right direction!

Hi Jon,
    One way would be to  use the attached .tlb file.
Just set a reference to it from VB.  This works from
VB4.  Should work from VB6. The usage is:

  Dim strPC As String
  Dim strMsg As String

  strPC = "MyPC"               'the name of the recipient
  strMsg = "This is a test."   'the message

  Call NetMessageBufferSend(0&, strPC, 0&, strMsg, _
            buflen:=LenB(strMsg))

HTH
--
Paul Marshall



Sun, 29 Jul 2001 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. MAPI message Send method puts message in Outbox but it isn't actually sent

2. Button For 'Save Sent Messages'

3. 'Poke'ing and 'peek'ing other process's memory in VB6

4. HELP : Popup menu doesn't popup ??

5. CDO Won't Send My Messages (sometimes)

6. CDO Won't Send My Message (sometimes)

7. COM popup form gets 'lost'

8. COM popup form gets 'lost'

9. Changing the Outlook folder's default message class by VB6.0

10. VB5 - send popup message?

11. send message popup

12. Determining a message's 'Sent Date' using CDO

 

 
Powered by phpBB® Forum Software