Draw vertical bold lines between some columns in datagridview
I want to draw vertical bold red lines between some columns in a datagridview. I created a form and a datagridview, and this is what I want to get:But this is what I get, notice the two vertical red...
View ArticleAgenda of Contacts
Hello,I have to make an agenda of contacts. First I put my data(name,surname,mobile,..) in textboxes and after I save them in a datagridview. I have to save some checks (for example mobile must have...
View ArticleHow To Get Data From Datagridview Row In The Text Boxes
I had added a Columns to a dataGridView Like This dataGridView1.Columns.Add("mc", "Manual Columns");The dataGridview output like this From MySQL From MySQL Manual ColumnsVisual...
View ArticleAccess database and vbnet
Hi Greetings,How do i draw 2 graph in one chart from 1 database, group by month?Primary X,Y bar chart group by month, total qtySecondary Y line chart with month =((total reject)/(total qty)) ×50
View ArticleCan anyone give me the Name of the New Record image?
Hi,I am trying to locate the New Record icon. It is a gold Plus sign that appears when the user uses the database tool in VS. It looks like this:the name and location would be helpfulThanks,David Linda
View ArticleZoom multiple charts simultaneously
I have window form in which I have added multiple chart controls.So when I zoomed one chart control other chart controls should zoom accordingly.For e.g. I added Graph1, Graph2 and Graph3 in flow...
View ArticleHow can I transfer data from data grid view to datatable?
I am trying to get the string text out of a data grid view and store it in a data table so i can save the data table to a csv file. I have got 2 unbound columns that I have been able to read data to in...
View ArticleC# How to search a text in all parent & child nodes of treeview control winform
I am searching a text in all treeview's parent & child node recursively but which is not working as expected. See my below code where i am searching text in all nodes of parent & child which...
View Articlecombo chart with access database
GreetingsHow can I draw a combo graph using vb.net from access database?Y1 Y2 /\ /\| Line Chart (X1,Y2) ||...
View ArticleAfter add quantity how i can link the data i already insert to datagridview 2
Private Sub loadTransactions(ByVal transactionid As Integer) Dim dt As New DataTable Using cnn As New OleDbConnection("Provider=Microsoft.Jet.Oledb.4.0; Data Source=mydataX.mdb")...
View ArticleCheckedListBox
have Operations in checkedListBox1(datas are coming from database to checkedListBox1). But datas are come to flowLayoutPanel1 as "System.Data.Entity" I tried this...
View ArticleError en la Base de Datos de Accesos Conectados a mmi Aplicaion de vb.net
me pueden ayudar para solucionar este problema se produjo un error mientras se realizaba un error al realizar lageneración de código de lanzamiento para la propiedad 'UpdateOrder' fallado. el error...
View ArticleMultiple Chart with vbnet
Greetingsneed help on Charts that is related with vbnet and access database.i have a scenario where im using combo box that enable me to choose between 2 graph. the database condition is where it is...
View ArticleHow do I display data automatically from a selected datagridview row to a...
This is my idea but it doesn't workDataTable dt = new DataTable (); dt.Columns.Add ("_ ID"); dt.Columns.Add ("_ Tên"); dt.Columns.Add ("_ Danh tên");...
View ArticleFind value in Tree Node & if found change the node color by LINQ
i have done the job this wayprivate bool SearchRecursive(IEnumerable nodes, string searchFor) { foreach (TreeNode node in nodes) { if (node.Text.ToUpper().Contains(searchFor)) { treeView1.SelectedNode...
View ArticleDataGridView Number cells with two decimal places!
I have a DataGridView with textbox columns wich only accepts numbers. I formated it to add 2 decimal places, beeing null value 0,00 but when I edit, I change the value for example to a 5 with no...
View Articledatagridview selectedrows count always zero although I am sure I selected a...
Hi,My datagridview selectedrows count always zero although I am sure I selected a row and SelectionMode = FullRowSelect.Please help,
View Articletxtbox.DataBindings with foreign table's attribute
Sorry my question may be a bit hard to understand. I have a listbox that displays Vacancy.DescriptionlstBoxVacancy.DataSource = DM.lookingGlassDS; lstBoxVacancy.DisplayMember = "Vacancy.Description";...
View ArticleHoe to remove gray space from datagridview in c# windows form
hi, i'm trying to remove blank space from datagridview. the datagridview is bind with sqlite database.after run the projecti use this codeprivate void Form1_Load(object sender, EventArgs e) { try {...
View ArticleC# Windows Form, Print multiple pages from checked item on dataGridView row...
I am making a label print but I am stuck. This is the requirement of this label print program.1. Import table from excel sheet and display on datagridview. Checked!2. Get values from checked row and...
View Article