Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
149 views

I write a C# winforms application using the MVVM pattern. Data is stored in EF Core. The objective is to show datasets of an EF core entity in a datagridview object. The problem is that the ...
user5717448's user avatar
0 votes
0 answers
120 views

I'm Trying to make bindingsource add new only limit one row in DataGridView with vb.net So if the user doubles tab in the keyboard, two empty rows appear in the DataGridView or avoiding double addnew(...
dlaksmi's user avatar
  • 213
0 votes
1 answer
189 views

I'm Trying to refresh via bindingsource in DatagridView in the main form when updating in other forms without closed or not in VB.NET Please Guide me Thanks Code in autocompledatagridview (Form main) ...
dlaksmi's user avatar
  • 213
0 votes
1 answer
72 views

I'm Trying to refresh ComboBox from BindingList to BindingSource in VB.NET, but it didn't work. Is there something wrong with my code? Whether it can be reset via BindingSource or BindingList or with ...
dlaksmi's user avatar
  • 213
0 votes
1 answer
80 views

I'm Trying to update from textbox to database when filtering bindingsource from textbox via dapper vb.net. so I use a textbox control to filter the datagridview TXTNAME and TXTDATE but I have a ...
Tam88's user avatar
  • 81
0 votes
1 answer
161 views

I'm trying to set the data source manually and print RDLC reports directly without report viewer control from list in VB.NET. below I am attaching my code may not be perfect please guide me. Thanks ...
user avatar
-1 votes
1 answer
107 views

I'm trying to reset BindingSource/BindingList sequence number update to database with VB.NET or something went wrong in my code implementation. actually this refers to the link to this post a link! ...
user avatar
0 votes
1 answer
63 views

I am trying to filter a bindingsource and display it in a datagridview. But it doesn't work. The binding source is filled by a database request Here is my code : private void SecteurForm_Load(...
Eraaz's user avatar
  • 19
0 votes
0 answers
42 views

I am making a windows app that generates words with the letters the user enters. I use a database with 50k words. For each word, I compare the letters entered by the user with the number of letters in ...
egem's user avatar
  • 11
-1 votes
1 answer
64 views

How to solve the field match between lower and proper so that the results become one row in the DataGridView and only update the number. Is there something wrong with my code? and please guide me. is ...
user avatar
0 votes
0 answers
125 views

I have thousands of data like uPVC Elbow 2"-D uPVC Elbow 6"-D uPVC Elbow 8"-B uPVC Elbow 10"-B uPVC Elbow 4"-D uPVC Elbow 12"-B uPVC Elbow 5"-B uPVC Elbow 3"-B ...
Zahid Islam's user avatar
2 votes
1 answer
152 views

I've been working on a windows forms application, written in vb.net for several months now. I've had a LOT of problems with my binding sources and table adapters not updating the connected access (....
Masieu Dilesiano's user avatar
1 vote
0 answers
52 views

Problem: I'm trying to bind a Dictionary<string key, string value> to BindingSource and use it as DataSource for a ListBox control in a form but it did not work. Later I found that Dictionary ...
Abhinav Pandey's user avatar
0 votes
0 answers
85 views

Per screen capture below: bindingSource1.AddNew() works as expected. A new item appears and becomes current. bindingSource1.CancelNew() does nothing. Per debug messages my button handler is clearly ...
amonroejj's user avatar
  • 653
0 votes
1 answer
97 views

I have a form with three text boxes, of which the first and second are bound to the same data binding source. When the form loads, I need the first text box to populate so that the second can use it's ...
Pendonep's user avatar
0 votes
0 answers
54 views

I has the followinng code to make update of more control refers to the same variable on windows form. I make it to update more than one control by asingle operation on update datatable. This working ...
user15536099's user avatar
1 vote
0 answers
80 views

I want when filtering rows in the textbox then the database is updated from other applications then I do a refresh I want the datagridview that I filter in the textbox in a fixed position and also ...
roy's user avatar
  • 729
-1 votes
1 answer
35 views

I have 2 pairs of Master-Details (dgvs) datagridviews that are linked together. I also use binding sources for each table. See image. Table Relationships When I click on a row for the ...
SerialCoder's user avatar
0 votes
1 answer
597 views

is there a solution for events in the textbox for binding source filters for string types. The example screenshot below with the code "1000*" should appear directly appear cell gridvivew but ...
roy's user avatar
  • 729
0 votes
0 answers
146 views

I have BindingSource that attached to grid control like this private BindingSource listDepartmentDto = new(); private async Task LoadDataAsync() { listDepartmentDto.DataSource = await ...
M.Bouabdallah's user avatar
0 votes
1 answer
39 views

When I clear the search box in the form, the table shows the same info (I want the table to show the original one, without any query). Code: Private Sub Button4_Click(sender As Object, e As EventArgs) ...
GauravFTW's user avatar
0 votes
0 answers
893 views

I have a DataGridView that loads data from a file. I also want to use the DropDownFilter Column - I've used the one from Karl Erickson on Microsoft. It works all good while the columns are set in the ...
netrag's user avatar
  • 3
1 vote
1 answer
306 views

I don't have much experience yet. I'm trying to filter rows which contain the input text. In order.. I use MailKit to receive incoming messages and put data from them in Grid public void ShowMessages(...
eugenes's user avatar
  • 151
1 vote
0 answers
114 views

I have a DataTable that is attached to a DataGridView via BindingSource. My grid (and data) are dynamic - the BindingSource has a filter rule and every second, one value is changed and the filter is ...
user3584783's user avatar
1 vote
1 answer
148 views

This is my code in C# with Visual Studio 2019: private String[] getClientData(String clientName) { DataTable table = labelPrinterDBDataSet.Tables["clients"]; DataRow[] datatable = ...
user avatar

1
2 3 4 5
14