Click here to Skip to main content
Licence 
First Posted 5 Oct 2004
Views 56,001
Bookmarked 12 times

Convertion from managed String* data type to LPCTSTR

By | 6 Feb 2005 | Article
a class to convert from VC++.NET String* data type to leagcy LPCTSTR

Introduction

As a VC++ programmer. and if you are using VC.NET you may try to use your old leagcy code under the .NET framwork.

When I tried to use some of my old C++ code, I encountered the problem of data types conversion in .NET framework. I thought that Microsoft will handle the data types issue in .NET in a better manner.

Any way, one of the problems I had, is to use a function that receives a parameter of LPCTSTR data type. In .NET you can use the managed String* data type but the compiler will complain as it can't convert managed String* data type to LPCTSTR data type.

The problem has been handled through the StringToHGlobalAnsi method of Marshal class provided in the .NET framework, but it's not that easy.You have to make some static casts.

I thought there might some other people who encounter the same problem, so I decided to make a small class that has just two methods to convert from managed String* data type to unmanaged LPCTSTR data type. any way I have put the code in a class, but you can use it in your manner.

The two methods are:

  1. LPCTSTR AnsiStrings::ConvertStringToLPCTSTR(String* sString)

    you only need to pass your String* variable to it and receives a LPCTSTR variable.
  2. void AnsiStrings::ReleaseLPCTSTR(LPCTSTR lpsString)

    this method will release the memory holded for our leagacy LPCTSTR varaible.

It's a small class, but I hope the begginers in VC.NET can make best use of it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

mshoukry_alkhwarazmi

Web Developer

Egypt Egypt

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalmany casts... PinmemberHumanOsc3:48 6 Oct '04  
QuestionWhy not use CString? PinmemberGeorge L. Jackson11:44 5 Oct '04  
QuestionWhy a class? PinmemberNemanja Trifunovic2:09 5 Oct '04  
AnswerRe: Why a class? Pinmembertoxcct2:30 5 Oct '04  
AnswerRe: Why a class? PinmemberPhilippe Mori3:55 5 Oct '04  
GeneralRe: Why a class? PinmemberNemanja Trifunovic4:48 5 Oct '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 7 Feb 2005
Article Copyright 2004 by mshoukry_alkhwarazmi
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid