The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I've some questions about windows datagrid control.
1.Can I format numerical data in column?
2.Can I prevent sort of only some columns?
3.Can I prevent the resize of only some columns?
4.Can I retrieve if data change and in what cell?
5.Can I change the cursor for only some columns?
Thanks a lot
Paola Vincenzi
YES
> I've some questions about windows datagrid control.
>
> 1.Can I format numerical data in column?
> 2.Can I prevent sort of only some columns?
> 3.Can I prevent the resize of only some columns?
> 4.Can I retrieve if data change and in what cell?
> 5.Can I change the cursor for only some columns?
>
> Thanks a lot
>
> Paola Vincenzi
>
PApaolaJune 6, 2003 02:42 AM
Thanks for your reply.... but How can I do these things??
sorry for my bad english.....
Paola
> YES
>
> > I've some questions about windows datagrid control.
> >
> > 1.Can I format numerical data in column?
> > 2.Can I prevent sort of only some columns?
> > 3.Can I prevent the resize of only some columns?
> > 4.Can I retrieve if data change and in what cell?
> > 5.Can I change the cursor for only some columns?
> >
> > Thanks a lot
> >
> > Paola Vincenzi
> >
>
MImikeJune 9, 2003 08:04 AM
To create new columnstyles,
1. Create a new class
2. Inherit from the DataGridTextBoxColumn.
3. Format it as you wish.
'short example
Public Class DataGridDateColumnStyle
Inherits DataGridTextBoxColumn
Public Sub New()
MyBase.Format = "d"
End Sub
End Class 'DataGridDateColumnStyle
> Thanks for your reply.... but How can I do these things??
>
> sorry for my bad english.....
>
> Paola
>
>
> > YES
> >
> > > I've some questions about windows datagrid control.
> > >
> > > 1.Can I format numerical data in column?
> > > 2.Can I prevent sort of only some columns?
> > > 3.Can I prevent the resize of only some columns?
> > > 4.Can I retrieve if data change and in what cell?
> > > 5.Can I change the cursor for only some columns?
> > >
> > > Thanks a lot
> > >
> > > Paola Vincenzi
> > >
> >
>