CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: use of LINK

  1. #1
    Join Date
    Sep 1999
    Posts
    12

    use of LINK

    How Can I use linkOpen,LinkTopic procedures for Communcating between two TextBoxs in Two different Forms.
    Please Help me


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: use of LINK

    you "need" these properties only if your forms are in two separate applications.
    Within one application you can easily set the properties of any contorl on any form using the following syntax:
    formN.controlNamen.Property = value

    The link-properties are DDE related, and DDE is rather obsolete protocol.
    Better use (OLE) automation.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured