Application for pocket pc

  • Thread starter Thread starter Michael
  • Start date Start date
M

Michael

Hi to all,
I have a general question:

is it possible, that I can't use DataGrid and the method
SetDataBinding for an application running on a pocket pc?

I used the same code (comming from MSDN help-file) in an
application for pocket pc and in a windows application!

On windows forms it works fine and in the pocket pc
application, I get some errors, that the method can't be
found.

thanks for help
 
Hi Michael,
is it possible, that I can't use DataGrid and the method
SetDataBinding for an application running on a pocket pc?

It's quite possible that the Compact Framework uses stripped down versions
of some controls. MSDN documentation does not mark the SetDataBinding method
as "Supported by the .NET Compact Framework" and it is most likely missing
from the compact version.

You can however just assign the DataSource and the DataMember properties of
the DataGrid with the same effect.
 
Hi Dmitriy,
yes it's possible to assign the DataSource property, but
the DataMember is missing.

Do you have some other idea to bind the data to a
DataGrid?

thanks for help
Michael


-----Original Message-----
Hi Michael,
is it possible, that I can't use DataGrid and the method
SetDataBinding for an application running on a pocket
pc?

It's quite possible that the Compact Framework uses stripped down versions
of some controls. MSDN documentation does not mark the SetDataBinding method
as "Supported by the .NET Compact Framework" and it is most likely missing
from the compact version.

You can however just assign the DataSource and the DataMember properties of
the DataGrid with the same effect.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

Michael said:
Hi to all,
I have a general question:

is it possible, that I can't use DataGrid and the method
SetDataBinding for an application running on a pocket pc?

I used the same code (comming from MSDN help-file) in an
application for pocket pc and in a windows application!

On windows forms it works fine and in the pocket pc
application, I get some errors, that the method can't be
found.

thanks for help

.
 
Hi Michael,

You should post this question to
microsoft.public.dotnet.framework.compactframework

there may help you better.

Cheers,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

Hi Dmitriy,
yes it's possible to assign the DataSource property, but
the DataMember is missing.

Do you have some other idea to bind the data to a
DataGrid?

thanks for help
Michael


-----Original Message-----
Hi Michael,
is it possible, that I can't use DataGrid and the method
SetDataBinding for an application running on a pocket
pc?

It's quite possible that the Compact Framework uses stripped down versions
of some controls. MSDN documentation does not mark the SetDataBinding method
as "Supported by the .NET Compact Framework" and it is most likely missing
from the compact version.

You can however just assign the DataSource and the DataMember properties of
the DataGrid with the same effect.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

Michael said:
Hi to all,
I have a general question:

is it possible, that I can't use DataGrid and the method
SetDataBinding for an application running on a pocket pc?

I used the same code (comming from MSDN help-file) in an
application for pocket pc and in a windows application!

On windows forms it works fine and in the pocket pc
application, I get some errors, that the method can't be
found.

thanks for help

.
 
Back
Top