AutoCompleteExtender - Detecting ZERO results For these two questions, you can set it as appropriate color if the text is empty in onblur of TextBox You can also attach onkeypress event to check if text of TextBox is empty
Custom Validator and 2 Buttons. - social. msdn. microsoft. com there are 2 buttons Add and Delete and 1 Customvalidator Now on Add button click event i have to check only that Two Text Boxes Name and Number are blank or not and on Delete Button click event i have to check only that any single record is checked in gridview or not Now how can i do it using Single customvalidator???
How to Count the Occurrences of a Word in a Text File I have VBA code that loops through multiple text files in multiple folders This code works fine What I can't really figure out is how to count the occurrences of a specific word in each text file Can someone post some code that would do this?
Edit Listview subItem - social. msdn. microsoft. com Answers 0 Sign in to vote Check this example it works on double click: Private hitinfo As ListViewHitTestInfo Private editbox As New TextBox () Private Sub Form1_Load (ByVal sender As System Object, ByVal e As System EventArgs) Handles MyBase Load editbox Parent = ListView1 editbox Hide () AddHandler ListView1 MouseDoubleClick, AddressOf listView_MouseDoubleClick CreateMyListView () End Sub