Click here to Skip to main content
16,004,806 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: registry for dummies Pin
LokmanHakim5-Feb-04 12:00
LokmanHakim5-Feb-04 12:00 
Generalerror BC30652: Reference required to assembly Pin
Jonathan de Halleux4-Feb-04 6:47
Jonathan de Halleux4-Feb-04 6:47 
GeneralRe: error BC30652: Reference required to assembly Pin
Dave Kreskowiak4-Feb-04 8:35
mveDave Kreskowiak4-Feb-04 8:35 
QuestionHow to change ethernet transfer settings Pin
Ranson4-Feb-04 5:32
Ranson4-Feb-04 5:32 
GeneralCombobox and Database Pin
gls2ro4-Feb-04 2:14
gls2ro4-Feb-04 2:14 
GeneralRe: Combobox and Database Pin
Pugman8124-Feb-04 13:49
Pugman8124-Feb-04 13:49 
QuestionHow to sort the listview on the basis of the clicked column Pin
Tasnim4-Feb-04 1:22
Tasnim4-Feb-04 1:22 
AnswerRe: How to sort the listview on the basis of the clicked column Pin
Vi24-Feb-04 4:26
Vi24-Feb-04 4:26 
Look at SortKey Property.

<msdn>
SortKey Property (ListView Control)

Returns or sets a value that determines how the ListItem objects in a ListView control are sorted.

...

Remarks

The Sorted property must be set to True before the change takes place.

It is common to sort a list when the column header is clicked. For this reason, the SortKey property is commonly included in the ColumnClick event to sort the list using the clicked column, as determined by the sort key, and demonstrated in the following example:

Private Sub ListView1_ColumnClick (ByVal ColumnHeader as ColumnHeader)
   ListView1.SortKey=ColumnHeader.Index-1
End Sub





With best wishes,
Vita
GeneralBut I want it in Vb.net Pin
Tasnim4-Feb-04 23:19
Tasnim4-Feb-04 23:19 
GeneralRe: But I want it in Vb.net Pin
Dave Kreskowiak5-Feb-04 9:32
mveDave Kreskowiak5-Feb-04 9:32 
GeneralCouldnt find it!!! Pin
Tasnim5-Feb-04 23:20
Tasnim5-Feb-04 23:20 
GeneralRe: Couldnt find it!!! Pin
Dave Kreskowiak6-Feb-04 3:24
mveDave Kreskowiak6-Feb-04 3:24 
GeneralThx Pin
Tasnim6-Feb-04 19:20
Tasnim6-Feb-04 19:20 
GeneralBut ... Pin
Tasnim8-Feb-04 21:16
Tasnim8-Feb-04 21:16 
GeneralHelp Help Help Me in Combo,,Anyone Pin
Het21093-Feb-04 23:41
Het21093-Feb-04 23:41 
GeneralRe: Help Help Help Me in Combo,,Anyone Pin
John Kuhn4-Feb-04 8:05
John Kuhn4-Feb-04 8:05 
GeneralI am working in VB.Net Pin
Het21095-Feb-04 1:34
Het21095-Feb-04 1:34 
GeneralRe: Help Help Help Me in Combo,,Anyone Pin
John Kuhn5-Feb-04 7:19
John Kuhn5-Feb-04 7:19 
GeneralRuntime error Pin
GSekar3-Feb-04 20:12
GSekar3-Feb-04 20:12 
GeneralRe: Runtime error Pin
Matthew Hazlett3-Feb-04 20:40
Matthew Hazlett3-Feb-04 20:40 
GeneralRe: Runtime error Pin
Matthew Hazlett3-Feb-04 20:47
Matthew Hazlett3-Feb-04 20:47 
GeneralRe: Runtime error Pin
GSekar4-Feb-04 0:06
GSekar4-Feb-04 0:06 
GeneralSimple Problem With ListBoxes Pin
Pugman8123-Feb-04 18:04
Pugman8123-Feb-04 18:04 
GeneralRe: Simple Problem With ListBoxes Pin
John Kuhn3-Feb-04 19:18
John Kuhn3-Feb-04 19:18 
GeneralRe: Simple Problem With ListBoxes Pin
Pugman8124-Feb-04 12:22
Pugman8124-Feb-04 12:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.