472,794 Members | 1,852 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,794 software developers and data experts.

Tasks which are more difficult than they should be

While I really like VS C++.NET 2005, there are a number of tasks which are
harder than they should be. Conversion from old 'char' arrays to new String
entities for instance. This thread is to list problems that seem like they
should be easy, but are a bit kludgy. Then solutions can be pointed to or
described! I'll begin:

(*) It is not easy to create a mouse cursor based on an arbitrary bitmap,
even one with restrictions such as dimensional size and use of colors. In
fact, it is tough to customize a mouse cursor in general.

(*) It is tough to insert a single character into a String. As a corollary,
it is tough to convert a single character into a String (Note: ToString
doesn't do this).

(*) It is tough to create an array of objects INSTANCES based on custom
classes. It is easy to create an array of POINTERS to custom objects, but an
array of custom objects have to be VALUE objects and not REF objects. Thus,
they can't have constructors or any other method as part of their definition
(they are what old 'structs' use to be, data but no code).

(*) It requires a sub-system to place a simple shape (e.g., solid-colored
box) on the screen permanently (that is, not only does one have to put code
in the Paint even handler to be run every screen refresh, but one must
actually manually refresh the portion of the screen when and where there are
any changes for them to be seen).

(*) The lack of multiple inheritance means one can't customize innate
controls 'en mass". That is, I can't create a class that Form's AND Panel's
can both inherent from as a common basis. For example, if I want to add a
Graphic sub-system ala the above item I need to put the code in both custom
classes and inherit only from the control's. I can't create a
'GraphicHandler' class and define two new classes, one that derives from
Form and GraphicHandler, and one that derives from Panel and Graphics
handler. I can do this with composition, however, but its not as clean and
requires code to 'bring up' the functionality of the composited sub-class.

I'll try to think of some more...

[==P==]
Feb 6 '06 #1
9 1304
"Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
news:Od**************@TK2MSFTNGP14.phx.gbl...
While I really like VS C++.NET 2005, there are a number of tasks which are
harder than they should be. Conversion from old 'char' arrays to new
String entities for instance.
gcnew String(charArray);
(*) It is tough to insert a single character into a String. As a
corollary, it is tough to convert a single character into a String (Note:
ToString doesn't do this).


String^ text = "";
text->Insert(0, Char::ToString('a'));

but not

text->Insert(0, 'a'.ToString());

since 'a' is an SByte.
Feb 7 '06 #2
James Park wrote:
"Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
news:Od**************@TK2MSFTNGP14.phx.gbl...
While I really like VS C++.NET 2005, there are a number of tasks
which are harder than they should be. Conversion from old 'char'
arrays to new String entities for instance.


gcnew String(charArray);
(*) It is tough to insert a single character into a String. As a
corollary, it is tough to convert a single character into a String
(Note: ToString doesn't do this).


String^ text = "";
text->Insert(0, Char::ToString('a'));


text = text->Insert(0,Char.ToString('a'));

remember, strings are immutable.

-cd
Feb 7 '06 #3

"Carl Daniel [VC++ MVP]" <cp*****************************@mvps.org.nospam >
wrote in message news:u2*************@TK2MSFTNGP15.phx.gbl...
| James Park wrote:
| > "Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
| > news:Od**************@TK2MSFTNGP14.phx.gbl...
| >> While I really like VS C++.NET 2005, there are a number of tasks
| >> which are harder than they should be. Conversion from old 'char'
| >> arrays to new String entities for instance.
| >
| > gcnew String(charArray);
| >
| >> (*) It is tough to insert a single character into a String. As a
| >> corollary, it is tough to convert a single character into a String
| >> (Note: ToString doesn't do this).
| >
| > String^ text = "";
| > text->Insert(0, Char::ToString('a'));
|
| text = text->Insert(0,Char.ToString('a'));
|
| remember, strings are immutable.
|
| -cd
|
|

Or :

text = text->Insert(0, "a");

Willy.
Feb 7 '06 #4
Cool. The code you provided works! But, it is easy to fall into the
following trap. This code doesn't work:

char chr_a = 'a' ;
string text = "" ;
text = text->Insert(0, chr_a.ToString()) ;

The difference here is that it invokes the 'char' version of ToString. The
result of the above is the following:

text = "97" ;

97? That's weird. Not really. the ASCII value of the char ' a' is 97. But I
definitiely fell into the trap a few weeks back. The reason this works:

text = text->Insert(0, Char::ToString(chr_a)) ;

is because it uses the 'Char' version of ToString instead of the 'char'.
What a difference a capital 'C' makes...

[==P==]

"Willy Denoyette [MVP]" <wi*************@telenet.be> wrote in message
news:e4**************@TK2MSFTNGP10.phx.gbl...

"Carl Daniel [VC++ MVP]" <cp*****************************@mvps.org.nospam >
wrote in message news:u2*************@TK2MSFTNGP15.phx.gbl...
| James Park wrote:
| > "Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
| > news:Od**************@TK2MSFTNGP14.phx.gbl...
| >> While I really like VS C++.NET 2005, there are a number of tasks
| >> which are harder than they should be. Conversion from old 'char'
| >> arrays to new String entities for instance.
| >
| > gcnew String(charArray);
| >
| >> (*) It is tough to insert a single character into a String. As a
| >> corollary, it is tough to convert a single character into a String
| >> (Note: ToString doesn't do this).
| >
| > String^ text = "";
| > text->Insert(0, Char::ToString('a'));
|
| text = text->Insert(0,Char.ToString('a'));
|
| remember, strings are immutable.
|
| -cd
|
|

Or :

text = text->Insert(0, "a");

Willy.

Feb 7 '06 #5
"Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Cool. The code you provided works! But, it is easy to fall into the
following trap. This code doesn't work:

char chr_a = 'a' ;
string text = "" ;
text = text->Insert(0, chr_a.ToString()) ;

The difference here is that it invokes the 'char' version of ToString. The
result of the above is the following:

text = "97" ;

97? That's weird. Not really. the ASCII value of the char ' a' is 97. But
I definitiely fell into the trap a few weeks back. The reason this works:

text = text->Insert(0, Char::ToString(chr_a)) ;

is because it uses the 'Char' version of ToString instead of the 'char'.
What a difference a capital 'C' makes...


If you want to use the VC++ type name for Char, it's wchar_t. You can find a
table at
http://msdn.microsoft.com/library/en...eConfusion.asp
Feb 7 '06 #6

"Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
| Cool. The code you provided works! But, it is easy to fall into the
| following trap. This code doesn't work:
|
| char chr_a = 'a' ;
| string text = "" ;
| text = text->Insert(0, chr_a.ToString()) ;
|
| The difference here is that it invokes the 'char' version of ToString. The
| result of the above is the following:
|
| text = "97" ;
|
| 97? That's weird. Not really. the ASCII value of the char ' a' is 97. But
I
| definitiely fell into the trap a few weeks back. The reason this works:
|
| text = text->Insert(0, Char::ToString(chr_a)) ;
|
| is because it uses the 'Char' version of ToString instead of the 'char'.
| What a difference a capital 'C' makes...
|

For the time being, it's fundamental to understand the difference between
managed types and unmanaged types when using C+++CLI in mixed mode. Maybe a
later version of C++/CLI will support seamless integration of both managed
and unmanaged types.

Willy.
| [==P==]
|
| "Willy Denoyette [MVP]" <wi*************@telenet.be> wrote in message
| news:e4**************@TK2MSFTNGP10.phx.gbl...
| >
| > "Carl Daniel [VC++ MVP]"
<cp*****************************@mvps.org.nospam >
| > wrote in message news:u2*************@TK2MSFTNGP15.phx.gbl...
| > | James Park wrote:
| > | > "Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
| > | > news:Od**************@TK2MSFTNGP14.phx.gbl...
| > | >> While I really like VS C++.NET 2005, there are a number of tasks
| > | >> which are harder than they should be. Conversion from old 'char'
| > | >> arrays to new String entities for instance.
| > | >
| > | > gcnew String(charArray);
| > | >
| > | >> (*) It is tough to insert a single character into a String. As a
| > | >> corollary, it is tough to convert a single character into a String
| > | >> (Note: ToString doesn't do this).
| > | >
| > | > String^ text = "";
| > | > text->Insert(0, Char::ToString('a'));
| > |
| > | text = text->Insert(0,Char.ToString('a'));
| > |
| > | remember, strings are immutable.
| > |
| > | -cd
| > |
| > |
| >
| > Or :
| >
| > text = text->Insert(0, "a");
| >
| > Willy.
| >
| >
|
|
Feb 7 '06 #7

"James Park" <so*****@hotmail.com> wrote in message
news:eN**************@TK2MSFTNGP15.phx.gbl...
| "Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
| news:%2****************@TK2MSFTNGP12.phx.gbl...
| > Cool. The code you provided works! But, it is easy to fall into the
| > following trap. This code doesn't work:
| >
| > char chr_a = 'a' ;
| > string text = "" ;
| > text = text->Insert(0, chr_a.ToString()) ;
| >
| > The difference here is that it invokes the 'char' version of ToString.
The
| > result of the above is the following:
| >
| > text = "97" ;
| >
| > 97? That's weird. Not really. the ASCII value of the char ' a' is 97.
But
| > I definitiely fell into the trap a few weeks back. The reason this
works:
| >
| > text = text->Insert(0, Char::ToString(chr_a)) ;
| >
| > is because it uses the 'Char' version of ToString instead of the 'char'.
| > What a difference a capital 'C' makes...
|
| If you want to use the VC++ type name for Char, it's wchar_t. You can find
a
| table at
|
http://msdn.microsoft.com/library/en...eConfusion.asp
|
|

Which is just another native type, not the managed reference type
(System.Char).

Willy.

Feb 7 '06 #8
"Willy Denoyette [MVP]" <wi*************@telenet.be> wrote in message
news:OP**************@TK2MSFTNGP10.phx.gbl...

"James Park" <so*****@hotmail.com> wrote in message
news:eN**************@TK2MSFTNGP15.phx.gbl...
| "Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
| news:%2****************@TK2MSFTNGP12.phx.gbl...
| > Cool. The code you provided works! But, it is easy to fall into the
| > following trap. This code doesn't work:
| >
| > char chr_a = 'a' ;
| > string text = "" ;
| > text = text->Insert(0, chr_a.ToString()) ;
| >
| > The difference here is that it invokes the 'char' version of ToString.
The
| > result of the above is the following:
| >
| > text = "97" ;
| >
| > 97? That's weird. Not really. the ASCII value of the char ' a' is 97.
But
| > I definitiely fell into the trap a few weeks back. The reason this
works:
| >
| > text = text->Insert(0, Char::ToString(chr_a)) ;
| >
| > is because it uses the 'Char' version of ToString instead of the
'char'.
| > What a difference a capital 'C' makes...
|
| If you want to use the VC++ type name for Char, it's wchar_t. You can
find
a
| table at
|
http://msdn.microsoft.com/library/en...eConfusion.asp
|
|

Which is just another native type, not the managed reference type
(System.Char).


Don't native types just become aliases for managed types when inside managed
code?
Feb 7 '06 #9

"James Park" <so*****@hotmail.com> wrote in message
news:ue*************@TK2MSFTNGP14.phx.gbl...
| "Willy Denoyette [MVP]" <wi*************@telenet.be> wrote in message
| news:OP**************@TK2MSFTNGP10.phx.gbl...
| >
| > "James Park" <so*****@hotmail.com> wrote in message
| > news:eN**************@TK2MSFTNGP15.phx.gbl...
| > | "Peter Oliphant" <po*******@RoundTripInc.com> wrote in message
| > | news:%2****************@TK2MSFTNGP12.phx.gbl...
| > | > Cool. The code you provided works! But, it is easy to fall into the
| > | > following trap. This code doesn't work:
| > | >
| > | > char chr_a = 'a' ;
| > | > string text = "" ;
| > | > text = text->Insert(0, chr_a.ToString()) ;
| > | >
| > | > The difference here is that it invokes the 'char' version of
ToString.
| > The
| > | > result of the above is the following:
| > | >
| > | > text = "97" ;
| > | >
| > | > 97? That's weird. Not really. the ASCII value of the char ' a' is
97.
| > But
| > | > I definitiely fell into the trap a few weeks back. The reason this
| > works:
| > | >
| > | > text = text->Insert(0, Char::ToString(chr_a)) ;
| > | >
| > | > is because it uses the 'Char' version of ToString instead of the
| > 'char'.
| > | > What a difference a capital 'C' makes...
| > |
| > | If you want to use the VC++ type name for Char, it's wchar_t. You can
| > find
| > a
| > | table at
| > |
| >
http://msdn.microsoft.com/library/en...eConfusion.asp
| > |
| > |
| >
| > Which is just another native type, not the managed reference type
| > (System.Char).
|
| Don't native types just become aliases for managed types when inside
managed
| code?
|
|

Sure, my bad I missed your point completely, the native types do map to
their equivalent managed types.
That is:
wchar_t maps to System.Char
while:
char maps to System.SByte

Willy.


Feb 8 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Greg Bryant | last post by:
I'm doing some work for a company that has an auction site running in coldfusion. They're not real happy with it, and it needs a major overhaul, so I'm looking at redoing it, and while I'm at it,...
6
by: John Smith | last post by:
Hello, I have a rather odd question. My company is an all java/oracle shop. We do everything is Java... no matter what it is... parsing of text files, messaging, gui you name it. My question...
27
by: John Bailo | last post by:
The recent quarterly earnings report, required by law, issued by the Microsoft Corporation are a harbinger of what is to come. Slowing revenue growth, and declining profits. What we see here is...
13
by: BK | last post by:
Can someone point me to a code sample that illustrates executing long running tasks (asynchronous) from a web application in ASP.NET? I assume that Web Services might come into play at some point,...
9
by: klh | last post by:
We are running on Win 2003/DB2 V8 FP7a. My question concerns Task Center. I have about 200 tasks created and scheduled in Task Center. We are going to be moving many of the databases from this...
5
by: rdemyan via AccessMonster.com | last post by:
I would like to have my application add administrative tasks to an Administrator's Outlook Task Folder. I know how to get the User group of the CurrentUser and think I can even code how to do the...
10
by: =?Utf-8?B?UHVjY2E=?= | last post by:
Hi, I'm using vs2005 and .net 2.0. I started 2 threadpool threads. How do I know when they're done with their tasks? Thanks. ThreadPool.QueueUserWorkItem(new...
0
by: gojners | last post by:
I need to go through a set of tasks. Each task has a priority (low/medium/high) and a status (Open/In progress/Closed). Each task also has a membership (Internal/External/Other). My problem is...
3
by: Steven Blair | last post by:
I have been watching an MSDN video on the PFX Task class and have a question. Here is my scenario: TcpListener waits on incoming connections. Once a new connection is established, a new Task...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.