Click here to Skip to main content
15,917,862 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Visual Basic 6.0 Skinning?? Pin
r i s h a b h s16-Feb-04 19:45
r i s h a b h s16-Feb-04 19:45 
GeneralRe: Visual Basic 6.0 Skinning?? Pin
erikkloeze17-Feb-04 3:22
erikkloeze17-Feb-04 3:22 
GeneralRe: Visual Basic 6.0 Skinning?? Pin
Wilbur J. Pereira18-Feb-04 7:54
Wilbur J. Pereira18-Feb-04 7:54 
GeneralVB.NET for SQL Server problem Pin
bensoncd14-Feb-04 2:56
bensoncd14-Feb-04 2:56 
GeneralRe: VB.NET for SQL Server problem Pin
Ian Darling14-Feb-04 3:36
Ian Darling14-Feb-04 3:36 
GeneralOK: VB.NET for SQL Server Pin
bensoncd16-Feb-04 11:12
bensoncd16-Feb-04 11:12 
Generaltabpage seting foucs Pin
aynka200014-Feb-04 2:49
aynka200014-Feb-04 2:49 
GeneralRe: tabpage seting foucs Pin
Matthew Hazlett14-Feb-04 4:36
Matthew Hazlett14-Feb-04 4:36 
Are you talking about when you right click on a tab setting it to focused before you "do stuff" to the tabpage. If so I was having this problem the other day and fixed it with a little workaround.

VB.NET
'------------------------------------------------------------------------
' A backhanded way to get the tab we clicked on
'
Private Sub tabFromClick(ByVal e As System.Windows.Forms.MouseEventArgs)
    Dim thisTab As Integer

    For thisTab = 0 To Me.TabCount - 1
        Dim tabRect As Rectangle = Me.GetTabRect(thisTab)
        If tabRect.Contains(New Point(e.X, e.Y)) Then
            Me.SelectedIndex = thisTab
        End If
    Next
End Sub

GeneralFSO FileSystemObject Pin
djbugzy13-Feb-04 20:43
djbugzy13-Feb-04 20:43 
GeneralRe: FSO FileSystemObject Pin
Hesham Amin13-Feb-04 22:57
Hesham Amin13-Feb-04 22:57 
GeneralUserform using text boxes Pin
EZ-V13-Feb-04 18:11
EZ-V13-Feb-04 18:11 
GeneralRe: Userform using text boxes Pin
Nadroj13-Feb-04 18:44
Nadroj13-Feb-04 18:44 
GeneralCannot create Enum Type from Type.GetType("EnumName") Pin
Dallas Matthews13-Feb-04 8:39
Dallas Matthews13-Feb-04 8:39 
GeneralRe: Cannot create Enum Type from Type.GetType("EnumName") Pin
Matthew Hazlett13-Feb-04 9:00
Matthew Hazlett13-Feb-04 9:00 
GeneralRe: Cannot create Enum Type from Type.GetType("EnumName") Pin
Dallas Matthews13-Feb-04 9:08
Dallas Matthews13-Feb-04 9:08 
GeneralRe: Cannot create Enum Type from Type.GetType("EnumName") Pin
Matthew Hazlett13-Feb-04 9:56
Matthew Hazlett13-Feb-04 9:56 
GeneralRe: Cannot create Enum Type from Type.GetType("EnumName") Pin
Dallas Matthews14-Feb-04 7:23
Dallas Matthews14-Feb-04 7:23 
GeneralRe: Cannot create Enum Type from Type.GetType("EnumName") Pin
Matthew Hazlett14-Feb-04 7:44
Matthew Hazlett14-Feb-04 7:44 
GeneralRe: Cannot create Enum Type from Type.GetType("EnumName") Pin
Dallas Matthews16-Feb-04 3:38
Dallas Matthews16-Feb-04 3:38 
Generalkeyboard hooking in VB.net Pin
matthew kelly13-Feb-04 6:01
matthew kelly13-Feb-04 6:01 
GeneralRe: keyboard hooking in VB.net Pin
Dave Kreskowiak13-Feb-04 9:46
mveDave Kreskowiak13-Feb-04 9:46 
GeneralRe: keyboard hooking in VB.net Pin
matthew kelly18-Feb-04 13:48
matthew kelly18-Feb-04 13:48 
GeneralRe: keyboard hooking in VB.net Pin
Dave Kreskowiak18-Feb-04 19:29
mveDave Kreskowiak18-Feb-04 19:29 
GeneralRe: keyboard hooking in VB.net Pin
Matthew Hazlett13-Feb-04 10:20
Matthew Hazlett13-Feb-04 10:20 
QuestionHow can i make or modify a .cpl file Control panel applet Pin
Saeed Tabrizi13-Feb-04 5:55
Saeed Tabrizi13-Feb-04 5:55 

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.