Search Result
Collapse
22 results in 0.0027 seconds.
Keywords
Members
Tags
-
I need to do a post with comments. help
hello i need to do a post with comments, im using a listview to view the posts, and comment too, but the list view only lets me see the posts when the table comment has data... even if the table post is full of data it wont display because the table comment has no data... how can i overcome this?? -
How to call update pane refreshing by list view row click
Hi!
I have ListView with such markup:
Code:<asp:UpdatePanel ID="updateMyDocs" UpdateMode = "Always" runat="server"> <ContentTemplate> <asp:ListView ID="dataViewFiles" ItemPlaceholderID="itemPlaceholder" runat="server" DataKeyNames="Id" OnItemDataBound="dataViewFiles_ItemDataBound"
-
How do i save the contents of a list view?
I am currently making a database which will save the items selected in a listview to a list. Each list is unique. I was hoping to use ListID as the primary key, with the listview displaying a check box, and the ItemName.
Currently the List table is: (Subject to change from the help)
ListID
ItemID
ItemSelected
The item table is:
ItemID
ItemName
The items above only adds one item to the list,... -
Opening new Form from a selected listview item (VB.NET)
Hi, i used in MS ACCESS 2007/2010 this code to open a new form (with a new table) when hit double click over a listview valeu, fexp, i had a listview with names and when i double click a name a had a new form with this name data. I dpn't know how to re-write it for VB.NET and i need help from anu=yone. Thanks a lot. (Ivan, Brazil)
Code:Option Compare Database Private Sub Lista31_DblClick(Cancel As Integer)
-
Function from another form
I have a Public function in 1 form, its purpose is to load data into a listview, but why it doesn't work when i called it in another form?
I used these line of codes but they doesn't work:
Code:Call form1.loadAudit Form1.loadAudit
-
Get client's IP address and PC name in ListView
hello, i want to show the client's ip and machine name in ListView. Please help.
i also created code the collection for the listview collection
Code:class ClientCollection { public string userIpadd { get; set; } public string userPcname { get; set; } public ClientCollection() { } }
-
ghe magno started a topic How to get values of textbox in listview and perform calculations in javascript?in ASP .NETHow to get values of textbox in listview and perform calculations in javascript?
image of my listview:
[imgnothumb]http://img26.imageshac k.us/img26/4043/listview.png[/imgnothumb]
I want to total every row from my listview
tallies total infected people and percentage
_______________ _______________ _______________ _______________ ________
CityID | City | Population | Male | Female | Total | Percentage |
Population, male, and female columns are user inputs
total... -
Add to cart button in ListView
Hi,
I am quite a newbee at VB2008 and trying to build my first ecommerce website. I have an Access database and I have created the UI. For my product pages I used a ListView binded to selected items in the database depending on product category. It looks good but when I tried to add an "AddToCart" Imagebutton to each record I got stuck and in the code behind file I get an error message that the btnAdd.click doesnt exist.
Also,... -
Editing a Grouping Grid with LinqDataSource and ListView Controls
Hi i found this article to build nested lists....
http://mattberseth.com/blog/2008/01/...grid_with.html
But the problem is now i don't know how to enable the inner list for editing, i have given the inner list a editingitemtemp late, but clicking on the edit button does nothing but a normal postback.
Code:<EditItemTemplate> <tr id="row" runat="server">
-
Bind ListView on onchange event of textbox (search operation)
hi everyone,please help me .i'm a newbie
see i have a form in that i have following controls
.combobox
.textbox
.listview
the combobox contains all the column names of listview like docid,firstname ,surname etc
when the form is loaded the listview is populated with some data from the database.
is there is anyway to autopopulate the listview control based on search term entered... -
What listview event fired when mouse over column header
I notice that when the mouse is over a column header of a listview control, that column header is focused (or highlighted). In this case, what event is fired ?
The reason I ask is I have listview control with 14 columns,
I also have labels that I want to drag-n-drop the labels over the listview column headers. When that occurs, I will change the column header text to the label text.
I have all the codes done... -
Listview Flickering/Redraw Problem often be caused by CreateParams
I've seen hundreds of unanswered posts on the ListView and related control flicking issues. This arise in the form of an unsuccessful paint of the ListView where edges are not completed or excessive flickering occurs. This seem very prevalent when the ListViews are inserted on tab controls it panels.While optimizing my app I added the following code:
[code=C#]
protected override CreateParams CreateParams
{... -
arrange items in rows (vertically) in a list view
Hi.
I have a listview , and when items are allocated to it, they get displayed in rows, ie, one next to the other, whereas i would prefer it to place each item in a new line such that it is arranged vertically, is there any way of doing this? -
Show image in Listview when populating with an array.
Hi
I am trying to add an image to a listview box. I have the below code and according to me this should work. However, the image does not show at all. I can add an image when I manually add each item but not when I add the items as an array.
Can someone please tell me what is going wrong?
Code:this.lstUser.View = View.Details; this.lstUser.GridLines = true;
-
Tooltip in VS2005 controls
Hello Everyone,
While working with list view control in VB 2005, I observed a behavior that the tooltip for the control is not consistent i.e. if we closely observe that when the tooltip displays then one can find that some time when you move the cursor in the control, tooltip won’t be displayed.
For further investigation I tried to observe the behavior of other such controls e.g. Treeview, listbox and textbox (Multiline). I have...