Click here to Skip to main content
15,900,725 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Why no more CDaoRecordset Class Wizard Pin
Steve S10-Feb-04 1:35
Steve S10-Feb-04 1:35 
GeneralPerformance Issues with C++ .NET Pin
Tank_Aviator4-Feb-04 11:09
Tank_Aviator4-Feb-04 11:09 
GeneralRe: Performance Issues with C++ .NET Pin
Roman Rodov11-Feb-04 14:50
Roman Rodov11-Feb-04 14:50 
GeneralComboBox SelectedIndex Pin
Mike Osbahr4-Feb-04 8:08
Mike Osbahr4-Feb-04 8:08 
GeneralRe: ComboBox SelectedIndex Pin
Gerald Leslie Jones8-Feb-04 23:41
Gerald Leslie Jones8-Feb-04 23:41 
GeneralCompact Framework and Remoting Pin
Bertrand Boichon4-Feb-04 6:20
Bertrand Boichon4-Feb-04 6:20 
GeneralSimple Problem With ListBoxes Pin
Pugman8123-Feb-04 17:31
Pugman8123-Feb-04 17:31 
GeneralRe: Simple Problem With ListBoxes Pin
John Kuhn3-Feb-04 19:19
John Kuhn3-Feb-04 19:19 
Try this...

Private Sub ListBox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles ListBox1.MouseDown<br />
    Dim item As Integer<br />
    For j As Integer = 1 To ListBox1.Items.Count<br />
        Dim rect As System.Drawing.Rectangle = ListBox1.GetItemRectangle(j - 1)<br />
        If rect.Contains(e.X, e.Y) Then<br />
            item = j - 1<br />
            Exit For<br />
        End If<br />
    Next<br />
    ListBox1.SelectedIndex = item<br />
End Sub

Question.NET included with IE7? Pin
Judah Gabriel Himango3-Feb-04 6:21
sponsorJudah Gabriel Himango3-Feb-04 6:21 
AnswerRe: .NET included with IE7? Pin
Arun Bhalla5-Feb-04 8:32
Arun Bhalla5-Feb-04 8:32 
GeneralRe: .NET included with IE7? Pin
Judah Gabriel Himango5-Feb-04 11:20
sponsorJudah Gabriel Himango5-Feb-04 11:20 
GeneralRe: .NET included with IE7? Pin
Arun Bhalla5-Feb-04 11:48
Arun Bhalla5-Feb-04 11:48 
GeneralRe: .NET included with IE7? Pin
Ian Darling5-Feb-04 14:20
Ian Darling5-Feb-04 14:20 
GeneralRe: .NET included with IE7? Pin
Judah Gabriel Himango6-Feb-04 4:18
sponsorJudah Gabriel Himango6-Feb-04 4:18 
GeneralRe: .NET included with IE7? Pin
Kevin McFarlane18-Feb-04 6:27
Kevin McFarlane18-Feb-04 6:27 
GeneralRe: .NET included with IE7? Pin
Judah Gabriel Himango19-Feb-04 8:29
sponsorJudah Gabriel Himango19-Feb-04 8:29 
GeneralRe: .NET included with IE7? Pin
Kevin McFarlane20-Feb-04 2:38
Kevin McFarlane20-Feb-04 2:38 
GeneralRe: .NET included with IE7? Pin
Judah Gabriel Himango20-Feb-04 5:43
sponsorJudah Gabriel Himango20-Feb-04 5:43 
GeneralRe: .NET included with IE7? Pin
Kevin McFarlane20-Feb-04 23:11
Kevin McFarlane20-Feb-04 23:11 
GeneralRe: Linux Pin
Kevin McFarlane20-Feb-04 2:52
Kevin McFarlane20-Feb-04 2:52 
GeneralRunning C# programs Pin
Anonymous3-Feb-04 5:43
Anonymous3-Feb-04 5:43 
GeneralRe: Running C# programs Pin
John Kuhn3-Feb-04 17:58
John Kuhn3-Feb-04 17:58 
GeneralRemoting Problems... Pin
jnewman2-Feb-04 18:50
jnewman2-Feb-04 18:50 
GeneralRe: Remoting Problems... Pin
Guillermo Rivero4-Feb-04 2:45
Guillermo Rivero4-Feb-04 2:45 
GeneralRe: Remoting Problems... Pin
jnewman4-Feb-04 19:08
jnewman4-Feb-04 19:08 

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.