Re: Figured it out: Re: Perplexing Problem with DDE

Tech-Archive recommends: Speed Up your PC by fixing your registry



"Steve Easton" <admin@xxxxxxxxxxxxx> wrote in message
news:ej8APNfJHHA.1252@xxxxxxxxxxxxxxxxxxxx
It needs the linkmode set to none to clear any existing DDE links

With Label1
.Caption = ""
.AutoSize = True
.LinkMode = NONE

Do you have Option Explicit set? If not, you should add that. The line
above should be
.LinkMode = vbLinkNone

.LinkTopic = "IExplore|WWW_GetWindowInfo"
.LinkItem = "0xFFFFFFFF"
.LinkMode = 2

Rather than use a magic number I'd make that
.LinkMode = vbLinkManual

.LinkRequest

BTW, you'd do better replying to an existing post and not changing the
subject line. Your posts are showing up separated and disjointed.

--
Reply to the group so all can participate
VB.Net: "Fool me once..."

.



Relevant Pages