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 8647637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:07:03+00:00 2026-06-12T13:07:03+00:00

I have a CEdit and I want to extract the data using this. wchar_t

  • 0

I have a CEdit and I want to extract the data using this.

wchar_t *temp = (wchar_t*)dialog.editbox.GetBuffer(0);
dialog.editbox.ReleaseBuffer();

Now i want to save this text in a object pointer like this:

selectedShape->setText(temp);

This work perfect, but only as long as you are in the scope of the method, because when I do a file save later, the text is not in the object anymore.

Does anybody know how I can save this wchar_t* for later?

  • 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-06-12T13:07:04+00:00Added an answer on June 12, 2026 at 1:07 pm

    The temp pointer is pointing to data that goes out of scope, so you’ll need to dynamically allocate memory to store the value. Something like this should work:

    // Updated to use wstring, thanks praetorian
    std::wstring tempStr((wchar_t*)dialog.editbox.GetBuffer(0));
    

    Or:

    int length = /*figure out the length here*/;
    wchar_t *temp = new wchar_t[length];
    memcpy(temp, dialog.editbox.GetBuffer(0), length*sizeof(wchar_t));
    // dont forget to delete it like this: delete [] temp;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this Query and I want to extract the info generated and print
I have this right now: <%= f.select :credit, (0..500) %> This will result in
I have a CEdit control that I want to be able to take time
I have a (hopefully) basic question on credit card processing, particularly using Authorize.Net. This
I have CEdit control and I don't want any text to be selected by
So this is what I want to do : I have a regular rectangle
I have to handle some sensitive data in my application, such as passwords, credit
have written this little class, which generates a UUID every time an object of
I'm using QI and Phoenix, and I want to write a small grammar that
My question is on how to preserve data during the redirect when using the

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.