Datagridview?????

View: New views
5 Messages — Rating Filter:   Alert me  

Datagridview?????

by John McD :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi there,

I'm new to linux and mono and I'm trying to convert an existing Winforms/C# (with which I am very proficient) project to mono (which I am completely new to).
I imported the solution and have also put it through Moma.  I am using KDE and opensuse 10.3.

my application is multithreaded and comprises several forms each of which contains a highly editable datagridview.

The datagridviews display a lot of rapidly changing data so I have to refresh single cells without redrawing the whole grid.
Occasionally the datagridviews must be editable.

I don't see a datagrid control displayed in the toolbox, but I see people discussing datagrids on the mono forums.
Can someone please explain to me how to get the code/components for a datagrid control and how to get started with it?  Any and all help is very welcome because I;m having a hard time of it right now and need to get a proof of concept ASAP.

Thanks in advance,
            John.

Re: Datagridview?????

by John McD :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Since I first posted this question I discovered this implementation of DataGridView by Pedro Martínez Juliá:
http://www.koders.com/csharp/fid9A7D075CC6E947ECB094F4C49E54E964D0D87082.aspx

unfortunately I get 32 errors when I attempt to compile it.

Am I missing something?
Is there a working, stable version of DataGridView that I can use?

Thanks,
         John.

John McD wrote:
Hi there,

I'm new to linux and mono and I'm trying to convert an existing Winforms/C# (with which I am very proficient) project to mono (which I am completely new to).
I imported the solution and have also put it through Moma.  I am using KDE and opensuse 10.3.

my application is multithreaded and comprises several forms each of which contains a highly editable datagridview.

The datagridviews display a lot of rapidly changing data so I have to refresh single cells without redrawing the whole grid.
Occasionally the datagridviews must be editable.

I don't see a datagrid control displayed in the toolbox, but I see people discussing datagrids on the mono forums.
Can someone please explain to me how to get the code/components for a datagrid control and how to get started with it?  Any and all help is very welcome because I;m having a hard time of it right now and need to get a proof of concept ASAP.

Thanks in advance,
            John.

Re: Datagridview?????

by Sandy Armstrong :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I believe DataGridView is not 100% implemented, but it is better with
each version of Mono.  What version do you have installed (test with
"mono --version")?

Sandy

On Sat, Apr 5, 2008 at 12:56 PM, John McD <judetherude@...> wrote:

>
>  Since I first posted this question I discovered this implementation of
>  DataGridView by Pedro Martínez Juliá:
>  http://www.koders.com/csharp/fid9A7D075CC6E947ECB094F4C49E54E964D0D87082.aspx
>
>  unfortunately I get 32 errors when I attempt to compile it.
>
>  Am I missing something?
>  Is there a working, stable version of DataGridView that I can use?
>
>  Thanks,
>          John.
>
>
>
>  John McD wrote:
>  >
>  > Hi there,
>  >
>  > I'm new to linux and mono and I'm trying to convert an existing
>  > Winforms/C# (with which I am very proficient) project to mono (which I am
>  > completely new to).
>  > I imported the solution and have also put it through Moma.  I am using KDE
>  > and opensuse 10.3.
>  >
>  > my application is multithreaded and comprises several forms each of which
>  > contains a highly editable datagridview.
>  >
>  > The datagridviews display a lot of rapidly changing data so I have to
>  > refresh single cells without redrawing the whole grid.
>  > Occasionally the datagridviews must be editable.
>  >
>  > I don't see a datagrid control displayed in the toolbox, but I see people
>  > discussing datagrids on the mono forums.
>  > Can someone please explain to me how to get the code/components for a
>  > datagrid control and how to get started with it?  Any and all help is very
>  > welcome because I;m having a hard time of it right now and need to get a
>  > proof of concept ASAP.
>  >
>  > Thanks in advance,
>  >             John.
>  >
>
>  --
>  View this message in context: http://www.nabble.com/Datagridview------tp16510455p16517281.html
>
>
> Sent from the Mono - WinForms mailing list archive at Nabble.com.
>
>  _______________________________________________
>  Mono-winforms-list maillist  -  Mono-winforms-list@...
>  http://lists.ximian.com/mailman/listinfo/mono-winforms-list
>
_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list@...
http://lists.ximian.com/mailman/listinfo/mono-winforms-list

Re: Datagridview?????

by John McD :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I have 1.9 installed.
is it practical for me to use datagridview in a mono winform now?

Does anyone have a step-bystep guide to getting one up and running?

Thanks, John.


John McD wrote:
Hi there,

I'm new to linux and mono and I'm trying to convert an existing Winforms/C# (with which I am very proficient) project to mono (which I am completely new to).
I imported the solution and have also put it through Moma.  I am using KDE and opensuse 10.3.

my application is multithreaded and comprises several forms each of which contains a highly editable datagridview.

The datagridviews display a lot of rapidly changing data so I have to refresh single cells without redrawing the whole grid.
Occasionally the datagridviews must be editable.

I don't see a datagrid control displayed in the toolbox, but I see people discussing datagrids on the mono forums.
Can someone please explain to me how to get the code/components for a datagrid control and how to get started with it?  Any and all help is very welcome because I;m having a hard time of it right now and need to get a proof of concept ASAP.

Thanks in advance,
            John.

Re: Datagridview?????

by Jonathan Pobst :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

DataGridView is not really usable in the 1.9 version on Mono.  It will
be much better in 2.0, but it will still not be any where near "complete".

Jonathan


John McD wrote:

> I have 1.9 installed.
> is it practical for me to use datagridview in a mono winform now?
>
> Does anyone have a step-bystep guide to getting one up and running?
>
> Thanks, John.
>
>
>
> John McD wrote:
>> Hi there,
>>
>> I'm new to linux and mono and I'm trying to convert an existing
>> Winforms/C# (with which I am very proficient) project to mono (which I am
>> completely new to).
>> I imported the solution and have also put it through Moma.  I am using KDE
>> and opensuse 10.3.
>>
>> my application is multithreaded and comprises several forms each of which
>> contains a highly editable datagridview.
>>
>> The datagridviews display a lot of rapidly changing data so I have to
>> refresh single cells without redrawing the whole grid.
>> Occasionally the datagridviews must be editable.
>>
>> I don't see a datagrid control displayed in the toolbox, but I see people
>> discussing datagrids on the mono forums.
>> Can someone please explain to me how to get the code/components for a
>> datagrid control and how to get started with it?  Any and all help is very
>> welcome because I;m having a hard time of it right now and need to get a
>> proof of concept ASAP.
>>
>> Thanks in advance,
>>             John.
>>
>

_______________________________________________
Mono-winforms-list maillist  -  Mono-winforms-list@...
http://lists.ximian.com/mailman/listinfo/mono-winforms-list