Listview design in .net



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

Post New Answer

More ASP.NET Code Interview Questions

Code for a Simple Way to Write XML in .NET (XmlTextWriter)

1 Answers  


How to get Dynamically Linked Comboboxes Set?

0 Answers   HCL,


how to track links visited in google using iframes

0 Answers  


Give coding for Exception Handling Techniques in ASP.NET?

3 Answers   Microsoft,


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 use ajax in asp.net through javaScript. Please givee me an example.

0 Answers  


Coding for Synchronizing Cache Access in ASP.NET?

0 Answers  


how to convert Dataset to Object Array or list in c# .net

4 Answers  


What is the code of Password Recovery or Forget your password? Plz tell in c # language.

0 Answers  


How to send e-mail from an ASP.NET application?

16 Answers   DataPoint, Infosys, Persistent, Radar, TCS, Wipro,


HOw to Build a Nested GridView Control with ASP.NET?

2 Answers  


Code for Creating a Form Using PlaceHolder Controls?

0 Answers   Arena, JSA,


Categories
  • ASP.NET Code Interview Questions ASP.NET Code (46)
  • VB.NET Code Interview Questions VB.NET Code (9)
  • C Sharp Code Interview Questions C Sharp Code (51)
  • ADO.NET Code Interview Questions ADO.NET Code (8)