473,387 Members | 1,588 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 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 1322
"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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

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.