Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 530629
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:13:01+00:00 2026-05-13T09:13:01+00:00

I need to send a VARIANT value to another application using COPYDATASTRUCT. Here is

  • 0

I need to send a VARIANT value to another application using COPYDATASTRUCT. Here is the structure i’m using to send messages.

struct {
   int     i_MsgId;
   VARIANT variant_Value;
}Message;

In my code I initialize the VARIANT to type BSTR and allocate a string as follows.

Message structMessage;
VariantInit(&structMessage.variant_Value);
structMessage.var_Value.vt = VT_BSTR;

structMessage.variant_Value.bstrVal = ::SysAllocString(L"I am a happy BSTR");

Then I send this using COPYDATASTRUCT as follows.

    COPYDATASTRUCT structCDS;

structCDS.cbData = sizeof(structMessage);
structCDS.dwData = 12;
structCDS.lpData = (LPVOID)(&structMessage);

::SendMessage(this->m_RemoteWindow,WM_COPYDATA,(WPARAM)this->GetSafeHwnd(),(LPARAM)&structCDS);

This message successfully receives to my second application, HOWEVER, when I cast it back to the original struct, “bstrVal” indicates a bad pointer.

I’m struggling with this error, so expecting your valuable help. Please note that other varinat types (int, double) can be successfully convert back, and this error ocus only with bstr. 🙁

Thank You

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:13:01+00:00Added an answer on May 13, 2026 at 9:13 am

    WM_COPYDATA will share your data structure (the one referenced by lpData) with the other application. Anything that is contained inside the data structure will be accessible by the other app. However, bstrVal is a pointer that references memory in your application, and when the other app tries to reference it, it is going to fail.

    Here’s one solution; it does require extra work on both the sides.

    On the sender side, when you allocate your data structure (structMessage), add enough extra space to hold your string. Append the string to the end of the data structure (and be sure to increase dwData by the appropriate size).

    On the receiver side, you can retrieve the string and use the SysAllocString call at that point to assign the bstrVal. Don’t forget to call SysFree when you’re done.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to send MMS thought a C# application. I have already found 2
I need to send emails to a list of IDs from the contact application,
I am working on a simple application in which I need send sms programmatically
I need to send messages to the GUI thread which should be processed the
I need to send signed emails from within my C# .NET application. Which is
I need to send documents to a network printer (\myserver\myprinter). I'm using the System.Printing
I need to send/receive faxes through my web application, and I am not sure
I need to send a piece of code from another thread (Excel Interop) to
I need to send hundreds of newsletters, but would like to check first if
I need to send and receive data over serial connections (RS-232 and RS-422). How

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.