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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Using System.Diagnostics 3
Firing event from thread in a component 5
changes with Radiobutton selection 3
Radiobutton 1
interface implementation 5
VSTO Outlook 2007 1
Panel 2
Membership GetUser() not defined 2

Back
Top