CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2001
    Location
    Denmark
    Posts
    453

    Question Share definitions between VB6 and C++

    First of all:
    Is there something in VB that is equivalent to C++'s #define statements?

    Then to my real question:
    I would like to have a file that is shared between Visual C++ 6 and VB6. It is a list of keywords for communications between the two (actually XML tag names). It is my hope to ensure, that there will be no risk of communications errors due to misspellings of tag names (which might then just be ignored on the receiver side.

    Thanks in advance.

  2. #2
    Join Date
    Dec 2001
    Posts
    6,332

    Re: Share definitions between VB6 and C++

    Sure. You could have a simple text file, with one word per line, or concatenate the words with a comma or other appropriate character.
    Please remember to rate the posts and threads that you find useful.
    How can something be both new and improved at the same time?

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