Is TabIndex not supported?

  • Thread starter Thread starter gh
  • Start date Start date
G

gh

I was trying to compile some code in the dos prompt for the PPC. It keeps
telling me, however, that TabIndex is not supported. I get:

Dice.cs(90,4): error CS0117: 'Dice.WinForm' does not contain a definition
for
'SuspendLayout'

and

Dice.cs(108,4): error CS0117: 'System.Windows.Forms.Button' does not contain
a
definition for 'Name'

and

Dice.cs(120,4): error CS0117: 'System.Windows.Forms.Button' does not contain
a
definition for 'TabIndex'

I am very confused? I thought C# was the same everywhere? How do I know
what is supported or not?
 
-----Original Message-----
I am very confused? I thought C# was the same everywhere? How do I know
what is supported or not?

TabIndex is part of the framework, not C#. To know what
is implemented, just check if it says "Supported by
the .NET Compact Framework" in the "all members" list of a
class, and, if reading the description for a specific
member, if it says ".NET Compact Framework - Windows
CE .NET" in the Platform Requirements at the bottom of the
page. If you don't see that, it's not supported by
the .NET CF.
 
Back
Top