The DataGridView is a Windows Forms control found in the .NET Framework starting at version 2.0. It is used to display and edit tabular data from many different kinds of data sources.
2
votes
0answers
15 views
DataGridView Image Layout Stretch Bug
I'm using a DataGridView to display some data, including an image which I'm displaying in an "Image Column". To display the image properly, I set the Image Layout property to Stretch; however, I'm ...
0
votes
0answers
6 views
SortableBindingList in Visual C++
I'm just stuck on this. Need to use sorting on DataGridView. As DataSource I'm using BindingList, but it does not support Sorting.
I haven't found any solution how to do that. I'm newbie to Visual ...
0
votes
0answers
26 views
Why can't I assign a string value to a DataGridViewCell?
I've filled a grid and am trying to iterate through the rows and change the value of a specific cell within each row. The cell currently contains an integer ID and when I locate the string Name ...
0
votes
0answers
22 views
Datagridview image column refresh issue [FIXED]
I have issue with refreshing image column in a DataGridView. First of all I am getting information from a database and I am populating my DataGridView with no problem.
There's the code to populate it ...
0
votes
2answers
42 views
How to send DataGridView's data as email message?
I'm retrieve the data from SQL server and store it in a DataGridView. After this I need to send mail to my client. Whatever data is in DataGridView, I need to sent the DataGridView data to client as ...
0
votes
2answers
27 views
How to hide DataGridView Column?
i have a simple class like below. And a List<Person>. I bind this list to the DataGridView in the Form.
class Person {
public int ID {get; set;}
public string Name { get; set; }
public ...
0
votes
0answers
20 views
how to make vb.net datagrid print
here is my code for printing datagridview, on print preview my data in the table not showing full data ... how to set the table so it can expend follow my data and show al
Private Sub ...
0
votes
2answers
57 views
C# multiple SQL server selection [closed]
I want to connect to a SQL server and select data from multiple tables using the SQL statements in the image below. SQL connection information is stored in the table. Finally, I want to show all the ...
0
votes
0answers
19 views
DataGridView Selected Columns changing
In Visual Studio 2010, I have a Windows Forms application with a data bound DataGridView that I have selected a single field in the Columns property's Selected Columns. Occasionally, all the other ...
0
votes
0answers
25 views
C# DefaultValuesNeeded in a databound datagridview
I'm running into some problems in my datagridview in a C# forms project. I have a datagridview with 20 columns. The datasource is a dataset which simply runs a stored proc and fills the columns.
I ...
0
votes
1answer
30 views
how to retrieve data in mySQL and put it in specific cell in the datagridview
I want to put the column quantity from my database in the datagridview which in the first place has data loaded in it, 5 columns together with the column quantity. Now I tried to load the column ...
2
votes
2answers
25 views
open form with crystalreportsviewer using C#
I'm working on one application. in datagridview I have created event dataGridView1_CellContentDoubleClick which would supposed to open another form that has crystalreportviewer component, then pass ...
2
votes
0answers
41 views
How to Hide selected item from a databounded combobox (Datagridviewcombobox)
I have a bounded combobox inside datagridview ( DataGridViewComboBoxColumn ) and
I want to hide selected item of that combobox in the next row of the grid
for example :
combo box values are,
...
0
votes
0answers
26 views
Windows Forms/SQL Database/Datagridview: Rapid search through large quantity of data
I have a MySQLCe database of double integers 0.00 to 1000.00 in intervals of .01 (so 100,000 rows). I'm using the Sterling Activex API. It's kind of obscure and difficult to explain, but basically all ...
0
votes
2answers
35 views
How to identify dataGridView cell that was right clicked on for ContextMenuStrip?
User right clicks on a cell within a DGV, then makes a selection in the ContextMenuStrip. Based on their CMS selection, I want to do something (copy, hide, filter). My problem is identifying the ...
0
votes
3answers
32 views
Why do I get an error when I am declaring a Matrix/Array as a global variable?
When I press Start in "Visual Studio 2011 Ultimate 12", where I am working, it says:
"InvalidOperationException was unhandled, an exception was caught by the debugger, and user settings indicate that ...
1
vote
4answers
43 views
Binding List<T> to DataGridView in WinForm
i have a class like below.
class Person{
public string Name {get; set;}
public string Surname {get; set;}
}
And i create a List<Person> then add some items to this list and bind ...
1
vote
2answers
29 views
Error with Sort method in DataGridView [closed]
We have DataGridView which is bound to an List and gets its data from there ( the List gets the data from a txt file) ...
0
votes
2answers
36 views
MySQL updates from modified datagridview in c#
I have a form that contains a filtered datagridview (that hides entries marked "closed") based on a dataset and tableadapter from a MySQL database. I am stuck on one part that involves the launching ...
0
votes
1answer
35 views
Datagrid Rows Loop
I am attempting to take the id of each row of the datagrid dgGrid that has a checkbox selected and place it into an array ruleids. I've looked up examples online and noticed that this loop comes up.
...
0
votes
0answers
20 views
Application crashes with too many custom controls on data gridview
I have a dataGridView with custom control painted on it. It contains data of around 100 users for a whole month (31 days). I place my custom control of 3 link labels at each and every cell. Now while ...
0
votes
0answers
16 views
Specified argument was out of the range of valid values - dataGridView maskedTextBox
I am trying to host a masked textbox in a dataGridView column. The user is supposed to enter valid date values in the format dd/mm/year and i was following the example here ...
0
votes
1answer
25 views
how to maintain checkbox check status on paging link click in datagridview in C#
I need to create paging in datagridview and I was found a demo in programCall.com successfully and that’s link ProgramCall.com
Below is screen shot of downloaded demo Form:-
Now I update this ...
0
votes
0answers
13 views
Databound Datagridview Add rows to the top of the grid after grid sorting
I have a datagridview which is binded to xml dataset at the start.
After that, I will continue to receive new data to add to the datagridview using the following.
System.Data.DataSet ds = ...
0
votes
2answers
49 views
Autogenerate Serial Number for DataBound DataGridView gives StackOverflowException
I am generating serial number for a column in Datagridview using the following code it gives me error...,
private void dgvQttnfrm_DataBindingComplete(object sender, ...
0
votes
0answers
7 views
Does Gridview shows the empty table when debugging the code
In gridview, without entering any data or datasource into the gridview, or datagridview. Does it shows empty cells or table while debugging the code.
0
votes
2answers
32 views
How can I make an array to show clicks made over a whole datagridview?
The pourpose is to build a 3xn array (3 columns,n rows),which shows/enumerate the clicks made all over the datagriview.
3 Columns Column1: number of click, first click all over the datagridview. ...
0
votes
1answer
22 views
DataGridView not rendering random cells
I have a datagridview which I am populating from a datasource using dgv.DataSource = table. I then use a cell formatting event to change the color of specific cells in the datagridview depending on a ...
0
votes
4answers
43 views
Determine if a DataGridView's horizontal scroll bar exists?
Visual Basic 2010, .NET 3.5
Is there a way to pragmatically determine if a DataGridView's horizontal scroll bar is active or visible? I need to move a few items about when the DGV's horizontal scroll ...
1
vote
1answer
45 views
How to add row in between two rows in datagridview in c#
I have an application that include a 'datagridview' that use to type the contents directly.
It appears like a notepad.
Right now I need a solution that I want to add a row in between two already ...
0
votes
1answer
36 views
DataGridViw ComboBox Column Event SelectedindexChanged
in tha datagridview there are five columns as
1 -Product ID 2- Product Name 3-Description 4-Price and the fifth one is
select-country which is comboboxcolumn
...
0
votes
0answers
8 views
Devcomponents SuperGrid Primary column not set
hi
i use dotnetbar supergrid fo winform but i cant set my desired column as primary column to show tree buttons and lines .i fill gridwiew in my cod and not by binding to data source.there is some ...
0
votes
0answers
29 views
C# winform, how to set DataGridView VirtualMode in one or more DataGridView
I'm working on a windows form project. In my form I have two DataGridViews.
I'd like to set two DataGridViews to DataGridView.VirtualMode.
Is there any efficient way to do this task except creating ...
0
votes
2answers
31 views
Is there a quick way to set all columns of DataGridView invisible?
I don't want to loop through all the columns and set each column's Visible to false. I wonder if there is a quick way to do so.
Thank you!
-2
votes
0answers
19 views
Data Grid View Out Of My Main Layout ASPX [closed]
I have a problem with my aspx GUI.
I use a DataGridView that go outof my main layout of my web page.
I would like to know how to solve the problem, I tried to change the values of the columns in the ...
0
votes
0answers
17 views
Selecting a row from a datagridview using unique cell reference
Afternoon all,
Background: I am displaying the results of a sql query in a DataGridView, when the user clicks on the row, more information is displayed in the form. The user can then edit various ...
0
votes
0answers
10 views
Extending a DataGridViewColumn in Windows Forms
I want to extend a DataGridViewColumn and customize it. I am able to find resources that do a specific task but not resources that explain exactly what goes on with the DataGridViewColumn in the ...
0
votes
1answer
19 views
Perform filters in datagrid
I have excel data pulled into datagridview. Using SQL commands or any other commands in C#.NET is it possible to perform filters and display the filtered data?
0
votes
2answers
31 views
property return text from each row datagridview
I need a property that returns text for each row from my datagridview. I don't know if the way how I am doing may work .It says on get that i is not in the current context . My code:
TextBox[] ...
1
vote
1answer
29 views
How to filter / selectively copy values from one DataGridView to another DataGridView
I have 2 DataGridViews: productsDataGridView and promotionsDataGridView.
The first one, productsDataGridView, which reads ALL values from a file with this method:
public static List<Products> ...
-1
votes
0answers
21 views
Fill DataGrid with a custom query
I'm trying to fill my DataGrid with a custom query I have written which binds two tables. The query is stored in my dataset (dbPBDataset.xsd) under the table adapters (TransactionTableAdapter) and ...
0
votes
0answers
68 views
Copy specific column from 1 datagridview and automatically load it in another
I am creating a PC VB.Net application to program an EEPROM on an alarm system I am building. I have 2 datagridviews being filled from different tables in an Access Database. For this example, they're ...
0
votes
0answers
39 views
how to make DataGridViewCheckBoxColumn single checked like checkboxlist?
I create a DataGridViewCheckBoxColumn in a winfrom datagirdview .
the bould type is string(not bool).
I want to do : after checked one row checkboxcolumn,other row will checked false.
I write code ...
0
votes
0answers
20 views
How to clear the added rows from a datagridview binded using a BindingSource c# .net
Its a Windows Form Application.
Database is MS Access.
Using Typed DataSet.
I am having a datagridview, which i only use to insert data into database.
I want to clear all the rows added as soon as I ...
0
votes
4answers
78 views
How can I create a better looking DataGridView? [closed]
I'd like to create a nicer-looking DataGridView to display data from my SQL database in. Specifically, I'm looking to replicate something like this:
Is there some sort of add-on for Visual Studio ...
3
votes
2answers
44 views
Refresh DataGridView after executing SQL Command?
Here is my code:
cn.Open()
cmd.CommandText = "insert into Student values('" ......
cmd.ExecuteNonQuery()
cn.Close()
After closing the connection I want my DataGridView to ...
0
votes
2answers
46 views
How can I make a variable to accumulate clicks made over a datagridview?
I want to acumulate the number of clicks made of clicks made on a datagridview but I always obtain 1 click
Private Sub ClickMouse(sender As Object, e As DataGridViewCellMouseEventArgs) Handles ...
0
votes
2answers
30 views
How to display the members of a second Class in a Datagridview
I have an ArrayList of objects (for example Employees).
Employee Class Properties:
name (String),
email (String),
telephone (String),
workgroup (Workgroup)
The Employee class has a property ...
0
votes
2answers
26 views
Datagridview and properties to Contained Objects
I have a BindingList of objects. The objects contain public properties to be displayed by a databindingview. Unfortunately I can't get the properties that return field data of contained objects to ...
0
votes
1answer
28 views
record cellmouseclicks in a datagridview - use indexes of clicks made in datagridview as indexes in a matrix or array
I hope you could help me. Many thanks in advance.
My question is related with catching the number of mouseclicks in a datagridview. I am using Visual Basic in Visual Studio 2012.
I am building a ...







