Why not a datagridview ?
Main Topics
Browse All Topicsi found below listviewEx which can do listview edit on subitems. can some one help to convert it to vb.net 2008. and add below feature.
when i able checkbox on this listviewEx. it will auto checked when user doube click on subitem to do edit. how to i disable the auto checked.
http://www.codeproject.com
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
hi jpaulino,
let say i need to display data like below and have checkbox in fron before the Desc .
Can Datagribview do below requiment??
if user edit column from either Q'ty , USD, Exchange,MarkUp,DPrice ,RPrice and SPrice . can datagridview do calculation with below fix fomula.
USD* Exchange*MarkUp=DPrice
DPrice/0.7= RPrice
user need to check on the checkbox to save.
user also need to double click on either DPrice or RPrice to save either one.
Desc Part#1 Part#2 Q'ty USD Exchange MarkUp DPrice RPrice SPrice Total
5seat 5s 5SUV 1 9,000 2.4 0.9 21,600 24,000 34,285
2seat 2s 2Sport 1 19,000 2.4 0.9 45,600 50,666 72,380
9seat 9s 9MPV 1 15,000 2.4 0.9 36,000 40,000 57,142
if datagribview can do pls provide some vb.nt 2008 code.
Thank You
the DB source already loaded into a dataTable . below is the code.
Using adapter As New MySqlDataAdapter(strQuery3
Dim rs3 As New DataTable()
Try
adapter.Fill(rs3)
Catch ex As Exception
'In case if any error occurs
MsgBox("Database Connection Error", vbCritical, "Library Management System")
Exit Sub
End Try
Pls advice.
the DB source only have below column. the rest will be calculation base the fomula.
Desc Part#1 Part#2 Q'ty USD Exchange MarkUp
Below fomula to generate DPrice RPrice SPrice
USD* Exchange*MarkUp=DPrice
DPrice/0.95= RPrice
RPrice/0.7= SPrice
Ok,
You can then add and an expression column like this:
rs3.Columns.Add("Total").E
(just change to your formula with the right column names)
Then define for the datagridview datasource your datatable:
Me.DataGridView1.DataSourc
And finally add the checkbox column:
Dim check As New DataGridViewCheckBoxColumn
check.Width = 20
Me.DataGridView1.Columns.I
i need to populate Datagridview column by column.
so that i can trim data and do dbnull and use diffrence header to display on datagridview.
i try below code but don't work.
Do While r.Read()
DataGridView1.Columns.Inse
DataGridView1.Item(1, i).Value = r.GetString("Desc")
DataGridView1.Item(2, i).Value = r.GetString("Part#1")
DataGridView1.Item(3, i).Value = r("Part#2")
DataGridView1.Item(4, i).Value = r("Qty")
DataGridView1.Item(5, i).Value = r("Qty")
i = i + 1
Loop
Pls find below code
Dim cnString3 As String = My.Settings.McsysplCon
Dim strQuery3 As String = "SELECT LTrim(RTrim(commentt.Desc)
Using adapter As New MySqlDataAdapter(strQuery3
Dim rs3 As New DataTable()
Try
adapter.Fill(rs3)
Catch ex As Exception
'In case if any error occurs
MsgBox("Database Connection Error", vbCritical, "Library Management System")
Exit Sub
End Try
error msg: Database Connection Error
i use MySQL database.
but with the same code when the SQL Part Number no space like PartNumber it work
Dim strQuery3 As String = "SELECT LTrim(RTrim(commentt.Desc)
Business Accounts
Answer for Membership
by: planoczPosted on 2009-01-29 at 10:59:37ID: 23501057
Check this link,,,, in there I have a Listview with textboxes sample... e.com/Prog ramming/La nguages/.N ET/ Visual_ Basic.NET/ Q_23466629 .html
http://www.experts-exchang