Click here to Skip to main content
15,888,733 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: VB.NET Windows Application Pin
Richard Andrew x648-Oct-15 10:38
professionalRichard Andrew x648-Oct-15 10:38 
QuestionAccess tablet webcam Pin
Member 120415567-Oct-15 17:18
Member 120415567-Oct-15 17:18 
QuestionProblems implementing MEF Pin
Kenneth Haugland7-Oct-15 8:43
mvaKenneth Haugland7-Oct-15 8:43 
AnswerRe: Problems implementing MEF Pin
Brisingr Aerowing7-Oct-15 9:15
professionalBrisingr Aerowing7-Oct-15 9:15 
GeneralRe: Problems implementing MEF Pin
Kenneth Haugland7-Oct-15 9:32
mvaKenneth Haugland7-Oct-15 9:32 
QuestionRe: Problems implementing MEF Pin
Kenneth Haugland7-Oct-15 18:57
mvaKenneth Haugland7-Oct-15 18:57 
AnswerRe: Problems implementing MEF Pin
Kenneth Haugland7-Oct-15 20:55
mvaKenneth Haugland7-Oct-15 20:55 
Questionmouse hover over button to show sliding label and don't hide it until mouse leaves the panel. Pin
Pravas Ranjan7-Oct-15 3:11
Pravas Ranjan7-Oct-15 3:11 
i have added a button named book, and a panel below it.when mouse will hover over book button the panel will be visible (i used increment of panel height for this).but my requirement is, the panel to be visible as long as the mouse hover over the panel.

if u can't under stand what i'm saying just check this page..
flipkart. check the header menu which contains electronics, men, women etc.

i want that type of menu in my form. i hope someone will help me asap.

here is my code.
VB
Private Sub AdminPage_Load(sender As Object, e As EventArgs) Handles Me.Load
        BookPanel.Height = 0
    End Sub

Private Sub Book_MouseEnter(sender As Object, e As EventArgs) Handles Book.MouseEnter
        Do While BookPanel.Height < 210
            BookPanel.Height += 1
        Loop
    End Sub
    Private Sub Book_MouseLeave(sender As Object, e As EventArgs) Handles Book.MouseLeave
        Do While BookPanel.Height > 0
            BookPanel.Height -= 1
        Loop
    End Sub

QuestionCompiled code cannot create Excel.Application, Interpreted is fine Pin
DAH_bham6-Oct-15 1:27
DAH_bham6-Oct-15 1:27 
AnswerRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
Richard Deeming6-Oct-15 1:49
mveRichard Deeming6-Oct-15 1:49 
GeneralRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
DAH_bham6-Oct-15 2:33
DAH_bham6-Oct-15 2:33 
GeneralRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
Richard Deeming6-Oct-15 2:37
mveRichard Deeming6-Oct-15 2:37 
GeneralRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
Richard Deeming6-Oct-15 2:38
mveRichard Deeming6-Oct-15 2:38 
GeneralRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
Dave Kreskowiak6-Oct-15 5:14
mveDave Kreskowiak6-Oct-15 5:14 
SuggestionRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
Richard Deeming6-Oct-15 5:20
mveRichard Deeming6-Oct-15 5:20 
GeneralRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
DAH_bham6-Oct-15 3:36
DAH_bham6-Oct-15 3:36 
AnswerRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
Dave Kreskowiak7-Oct-15 4:33
mveDave Kreskowiak7-Oct-15 4:33 
QuestionStandard VB 2013 progress bar animation weirdness Pin
Member 15839634-Oct-15 8:53
professionalMember 15839634-Oct-15 8:53 
QuestionRe: Standard VB 2013 progress bar animation weirdness Pin
Brisingr Aerowing4-Oct-15 13:09
professionalBrisingr Aerowing4-Oct-15 13:09 
AnswerRe: Standard VB 2013 progress bar animation weirdness Pin
Member 15839634-Oct-15 22:16
professionalMember 15839634-Oct-15 22:16 
QuestionRe: Standard VB 2013 progress bar animation weirdness Pin
Richard MacCutchan4-Oct-15 22:02
mveRichard MacCutchan4-Oct-15 22:02 
AnswerRe: Standard VB 2013 progress bar animation weirdness Pin
Member 15839634-Oct-15 22:41
professionalMember 15839634-Oct-15 22:41 
GeneralRe: Standard VB 2013 progress bar animation weirdness Pin
Richard MacCutchan4-Oct-15 22:53
mveRichard MacCutchan4-Oct-15 22:53 
GeneralRe: Standard VB 2013 progress bar animation weirdness Pin
Member 15839635-Oct-15 2:23
professionalMember 15839635-Oct-15 2:23 
GeneralRe: Standard VB 2013 progress bar animation weirdness Pin
Richard MacCutchan5-Oct-15 3:50
mveRichard MacCutchan5-Oct-15 3:50 

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.