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

how to upload an excel in c# ASP.Net?

3 Answers  


Code for Presenting Parent/Child Data in a Data Grid Row?

0 Answers   TCS,


Coding for .NET Delegates?

0 Answers  


i have a gird with columns all are coming from database,this will bind in item templete in gridview as textboxex.and i have button below named Update.i want to update all the records in the grid,but if user change the value of one textbox,what is the easy way 2 do this

0 Answers   Crompton Greaves,


Give coding for Implementing a Fixed GridView Header in ASP.NET?

1 Answers  


How to get Dynamically Linked Comboboxes Set?

0 Answers   HCL,


Code for Communicating over Sockets?

0 Answers  


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

1 Answers  


Give coding for Exception Handling Techniques in ASP.NET?

3 Answers   Microsoft,


how to design a ListView control?

1 Answers  


Coding for Synchronizing Cache Access in ASP.NET?

0 Answers  


How to Snap the Cursor to a Button?

1 Answers  


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)