POFFS didnt return anything fruitful about DDE, and i couldnt find any source! - has anybody done this before???
Im just writing a client, so it just has to say "hello" to a program over DDE...
My Visual Basic code to do it is this:
And then I would just call Addline("hello")
has anybody done any DDE with PB, and would they be kind enough to post code snippets?
------------------
Im just writing a client, so it just has to say "hello" to a program over DDE...
My Visual Basic code to do it is this:
Code:
Public Sub AddLine(Newstr As String) On Error Resume Next Text1.Text = Newstr DoEvents If Text1.LinkMode = 0 Then Text1.LinkTopic = "Waynes Program|Form1" Text1.LinkItem = "Text1" Text1.LinkMode = 3 '2=MANUAL, 3=NOTIFY End If Text1.LinkPoke DoEvents End Sub
has anybody done any DDE with PB, and would they be kind enough to post code snippets?
------------------
Comment