SP2 (beginner)

  • Thread starter Thread starter Ricardo LP
  • Start date Start date
R

Ricardo LP

I´m visual studio 2003 user and I want to update my system to use the new
..net compact framework sp2.

What do I have to download and install to update my system?

I´ve download and Install the .NET Compact Framework 1.0 SP2 Redistributable
but in my project I can´t see for example the forecolor,backcolor property
of a button or the keyup, keydown, keypress events.

What can I do to use the SP2?

Thanks in advance.
 
There are no changes to the development tools to expose the new properties.
Although you can't set them through the designer you can add them in your
code e.g.

myControl.ForeColor = Color.Red

Peter
 
Back
Top