Click here to Skip to main content
16,018,318 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionRe: immediate window Pin
Sonia Gupta4-May-07 22:34
Sonia Gupta4-May-07 22:34 
AnswerRe: immediate window Pin
Xandip4-May-07 22:41
Xandip4-May-07 22:41 
AnswerRe: immediate window Pin
Dave Kreskowiak5-May-07 3:46
mveDave Kreskowiak5-May-07 3:46 
QuestionLogin Form Pin
Hakmeh Mohannad4-May-07 13:23
Hakmeh Mohannad4-May-07 13:23 
AnswerRe: Login Form Pin
Paul Conrad4-May-07 13:58
professionalPaul Conrad4-May-07 13:58 
AnswerRe: Login Form [modified] Pin
Xandip4-May-07 22:35
Xandip4-May-07 22:35 
AnswerRe: Login Form Pin
Hakmeh Mohannad6-May-07 23:55
Hakmeh Mohannad6-May-07 23:55 
QuestionSorting ListViewSubItems Pin
weirbear4-May-07 11:50
weirbear4-May-07 11:50 
I have a compare to sort the order of SubItems in a ListView and it works great, but... If the ListView shows Groups nothing is sorted. Here's the compare function from my class. How can I make it work when Groups are shown?
<br />
Public Function Compare(ByVal x As Object, ByVal y As Object) As Integer _<br />
    Implements IComparer.Compare<br />
<br />
        Dim ItemA As String<br />
        Dim ItemB As String<br />
<br />
        Try<br />
            ItemA = CType(x, Windows.Forms.ListViewItem).SubItems(_Column).Text<br />
        Catch<br />
            ItemA = ""<br />
        End Try<br />
<br />
        Try<br />
            ItemB = CType(y, Windows.Forms.ListViewItem).SubItems(_Column).Text<br />
        Catch<br />
            ItemB = ""<br />
        End Try<br />
<br />
        If _Ascending Then<br />
            Return [String].Compare(ItemA, ItemB)<br />
        Else<br />
            Return [String].Compare(ItemB, ItemA)<br />
        End If<br />
    End Function<br />


Cheers
QuestionMonochrome uncompressed BMp Saving in vb.ne Pin
satishns4-May-07 8:24
satishns4-May-07 8:24 
QuestionHow to search through arrays Pin
HurricaneDan4-May-07 7:17
HurricaneDan4-May-07 7:17 
AnswerRe: How to search through arrays Pin
Dave Kreskowiak4-May-07 7:37
mveDave Kreskowiak4-May-07 7:37 
GeneralRe: How to search through arrays Pin
HurricaneDan4-May-07 8:42
HurricaneDan4-May-07 8:42 
AnswerRe: How to search through arrays Pin
nlarson114-May-07 7:47
nlarson114-May-07 7:47 
GeneralRe: How to search through arrays Pin
HurricaneDan4-May-07 8:42
HurricaneDan4-May-07 8:42 
QuestionXML -> VB.NET -> SQL Pin
Ziaous4-May-07 6:26
Ziaous4-May-07 6:26 
AnswerRe: XML -> VB.NET -> SQL Pin
Kevin Nicol4-May-07 6:49
Kevin Nicol4-May-07 6:49 
GeneralRe: XML -> VB.NET -> SQL Pin
Ziaous4-May-07 7:52
Ziaous4-May-07 7:52 
AnswerRe: XML -> VB.NET -> SQL Pin
andyharman4-May-07 7:48
professionalandyharman4-May-07 7:48 
GeneralRe: XML -> VB.NET -> SQL Pin
Ziaous4-May-07 9:08
Ziaous4-May-07 9:08 
QuestionAdd menu items to the context menu Pin
chakor1234-May-07 5:15
chakor1234-May-07 5:15 
AnswerRe: Add menu items to the context menu Pin
Dave Kreskowiak4-May-07 6:40
mveDave Kreskowiak4-May-07 6:40 
QuestionVista and a .NET application on a shared network Pin
EMSDeveloper4-May-07 4:20
EMSDeveloper4-May-07 4:20 
AnswerRe: Vista and a .NET application on a shared network Pin
Dave Kreskowiak4-May-07 4:54
mveDave Kreskowiak4-May-07 4:54 
QuestionRe: Vista and a .NET application on a shared network Pin
EMSDeveloper4-May-07 5:46
EMSDeveloper4-May-07 5:46 
AnswerRe: Vista and a .NET application on a shared network Pin
Dave Kreskowiak4-May-07 6:34
mveDave Kreskowiak4-May-07 6:34 

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.