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 |
What is the code of Password Recovery or Forget your password? Plz tell in c # language.
Code for Sending E-Mail with System.Web.Mail?
How to Snap the Cursor to a Button?
how to upload a photo? i need to use it in a matrimonial applicaton...
Common UI for Multiple web applications. Suppose there are 35 websites using same third party controls.These 3rd party controls are made together that all 35 websites can use these controls.If we put all 3rd party controls and use its dll in 35 websites,only class files will be accessable. But I want to use CSS,images also in all 35 websites. how I can design the N-tier solution for this project.
how to upload an excel in c# ASP.Net?
where is assembly are store
Code for Document Validation in XML.NET?
what is software testing
Give coding for Implementing a Fixed GridView Header in ASP.NET?
Data Reader Vs DataSet
How to get the row index on checking a Checkbox in a ListView