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

Ask A Question

Stats

  • Questions 318k
  • Answers 318k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Thanks for the response. I got it to work using:… May 13, 2026 at 11:52 pm
  • Editorial Team
    Editorial Team added an answer Let's start with the query itself the cos(radians(geoname.latitude)) and other… May 13, 2026 at 11:52 pm
  • Editorial Team
    Editorial Team added an answer I haven't worked with it myself but I think StatSVN… May 13, 2026 at 11:52 pm

Related Questions

I need to create a thread in Delphi with the following characteristics: Waits until
I need to send a very specific (non-standard) string to an FTP server: dir
I need to send a CSV file in HTTP response. How can I set
I need to send a email from application with text in the from field.
I need to send a JavaScript array via querystring to my .ashx. In my

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.