Listview design in .net
Answer / subha
first Place the list view control in form.(vb.net)
and place textbox and button.
coding:
In form load:Add the columns in list view.
listview1.columns.add("empname",100,HorizontalAlignment.left)
listview1.columns.add("dept",100,HorizontalAlignment.left)
Button click event:
dim str(15) as string
dim itm as ListviewItem
str(0)=txtname.text
str(1)=txtdept.text
itm=new ListviewItem(str)
listview1.items.add(itm)
| Is This Answer Correct ? | 4 Yes | 0 No |
how to convert Dataset to Object Array or list in c# .net
How to add checkbox to datagrid?
What do you create for easier access of data?
what is software testing
How to integrate the regional language in asp.net and c# like Telugu, Hindi etc,. send a sample program
3 Answers Concept, NIIT, Wipro,
How we implement the paypal in my website and how we make a payment through Credit Card.
Code for Document Validation in XML.NET?
hold checkbox values
Code for Creating a Form Using PlaceHolder Controls?
how can we close a web page in asp.net without using jscript?
How to get the row index on checking a Checkbox in a ListView
How to get the row index on checking a Checkbox in a ListView