473,786 Members | 2,334 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

System.Windows. Forms.DataGrid question.

Hello everyone.
Normally, the cell of the System.Windows. Forms.DataGrid could be inputed.
How can I let the cells only show something and not be inputed?

Jul 21 '05 #1
3 1666
Hi Steven,

The DataGrid doesn't have that kind of control, but a DataView does. Assuming you use the first DataTable in a DataSet called 'ds'

ds.Tables[0].DefaultView.Al lowNew = false;
ds.Tables[0].DefaultView.Al lowEdit = false;

AllowNew set to false prevents the blank new line at the bottom.

--
Happy coding!
Morten Wennevik [C# MVP]
Jul 21 '05 #2
Rod

"Steven.Xu" <St******@discu ssions.microsof t.com> wrote in message
news:5F******** *************** ***********@mic rosoft.com...
Hello everyone.
Normally, the cell of the System.Windows. Forms.DataGrid could be inputed.
How can I let the cells only show something and not be inputed?


by using DataGridTableSt yles you can make individual columns read only
Jul 21 '05 #3
You can control that by DataGridColumnS tyle, you can reach a specific column
style object and control its readonly property:

yourGrid.TableS tyles["TableName"].GridColumnStyl es["ColumnName "].ReadOnly =
true;

or you can higher control when you access the TextBox control hosted in the
cell, accessing a TextBox properties of a cell will be like this:

((DataGridTextB oxColumn)(this. yourGrid.TableS tyles["TableName"].GridColumnStyl es[""])).TextBox.Read Only = true;

Note: To reach the text box, you reach first the ColumnStyle object and cast
it to DataGridTextBox Column refrence to be able to access "TextBox" property
that allows you to control the textbox objects hosted in that column cells.

Hope that work with you, good luck
---
Ahmed Ghozzy
"Steven.Xu" wrote:
Hello everyone.
Normally, the cell of the System.Windows. Forms.DataGrid could be inputed.
How can I let the cells only show something and not be inputed?

Jul 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2155
by: max | last post by:
I can generate this error by NOT assigning a tableName to the view: at System.Windows.Forms.DataGrid.AddNewRow() at System.Windows.Forms.DataGridAddNewRow.OnEdit() Is there any possibility of getting an event from the AddNewRow()? I would like to make some changes to the row prior to the user typing in the DataGrid. Thanks,
2
1989
by: Tom P | last post by:
I'm trying to use DataGrid.HitTestInfo in my OnMouseDown event but firstly I cannot see it in Intellisense, secondly when I try to use it I get strange 'COMPILE' errors when building the app I'll be happy to provide more details if anyone has any answers I've read some forums and someone else had similar problem but there were no solutions provided Can anyone from MS comment on this?
3
2405
by: scott | last post by:
hi all, hope some one can help iv created a datagrid that points to a DataView. the data view takes in a DataTable. The DataTable then adds the columns using DataColumn. All fine so far. The table is set up and i can add stuff to it (text). however i had made it so that u can't change the text wtih in the table,
4
2766
by: elime | last post by:
Hi all I load datas from an SQL server to a Datagrid. The datagrid columns are basically read only but one column is not -> the checkboxcolum. The user needs to be able to check or uncheck this column for selection. Now at the end of the datagrid (last row) there is another row with a * in front of it. Once a user clicks on that, at the position of the checkboxcolumn, it'll add a new row to the datagrid with NULL values. You can even...
1
4048
by: Dmitry V. Markin | last post by:
Good day! Here is my problem: I need to have a radiobutton column in my DataGrid for a representation of a bool column, where only row can be checked at one time(only one value in bool column can be true). So I've created a class inheriting from DataGridColumnStyle and added the following code to the class: protected RadioButton rb ; ....
6
319
by: Steven.Xu | last post by:
Hello everyone. Normally, the cell of the System.Windows.Forms.DataGrid could be inputed. How can I let the cells only show something and not be inputed?
0
9491
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10357
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9959
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7510
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6744
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5397
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5532
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3668
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.