Click here to Skip to main content
16,020,244 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Referencing Variables in Module1 Pin
ChandraRam17-Sep-10 2:23
ChandraRam17-Sep-10 2:23 
GeneralRe: Referencing Variables in Module1 Pin
Win32SF17-Sep-10 6:04
Win32SF17-Sep-10 6:04 
AnswerRe: Referencing Variables in Module1 Pin
ChandraRam12-Sep-10 11:28
ChandraRam12-Sep-10 11:28 
GeneralRe: Referencing Variables in Module1 Pin
Win32SF12-Sep-10 11:45
Win32SF12-Sep-10 11:45 
GeneralRe: Referencing Variables in Module1 Pin
ChandraRam12-Sep-10 11:48
ChandraRam12-Sep-10 11:48 
GeneralRe: Referencing Variables in Module1 Pin
Win32SF12-Sep-10 12:54
Win32SF12-Sep-10 12:54 
QuestionPaging in Datagridview Pin
C#Coudou9-Sep-10 15:27
C#Coudou9-Sep-10 15:27 
QuestionPop Out Side Menu (Visual Studio Style) Pin
eddieangel9-Sep-10 12:26
eddieangel9-Sep-10 12:26 
I have a database search function on a Windows form app that needs to be readily accessible, but I don't want it displayed on the form at all times as it is confusing since you can search the same fields that you can edit on screen.

Long story short is I would like the search menu to behave like the toolbox / server explorer / data source left docked tool strip in VS 2008. Right now I have created a tool strip and docked it left and have the buttons the way I want them, but I do not have an eloquent solution for the pop out and pop in functionality.

I put a panel into place that has the search functionality and I simply made it visible = false until the search button is pressed.

If pnlSrch.Visible = False Then
    pnlSrch.Visible = True
    gbPhoto.Visible = False
Else
    pnlSrch.Visible = False
    gbPhoto.Visible = True
End If


Is there a more eloquent method of creating a slide in slide out side menu without using WPF?
AnswerRe: Pop Out Side Menu (Visual Studio Style) Pin
tosch10-Sep-10 1:07
tosch10-Sep-10 1:07 
AnswerRe: Pop Out Side Menu (Visual Studio Style) Pin
Thomas Stockwell12-Sep-10 8:36
professionalThomas Stockwell12-Sep-10 8:36 
AnswerRe: Pop Out Side Menu (Visual Studio Style) Pin
darkelv13-Sep-10 19:46
darkelv13-Sep-10 19:46 
QuestionWhy are there no form control arrays in vb.net? Pin
MikeD 29-Sep-10 1:26
MikeD 29-Sep-10 1:26 
AnswerRe: Why are there no form control arrays in vb.net? Pin
Dave Kreskowiak9-Sep-10 3:43
mveDave Kreskowiak9-Sep-10 3:43 
GeneralRe: Why are there no form control arrays in vb.net? Pin
MikeD 29-Sep-10 6:49
MikeD 29-Sep-10 6:49 
AnswerRe: Why are there no form control arrays in vb.net? Pin
Luc Pattyn9-Sep-10 4:47
sitebuilderLuc Pattyn9-Sep-10 4:47 
GeneralRe: Why are there no form control arrays in vb.net? Pin
MikeD 29-Sep-10 6:46
MikeD 29-Sep-10 6:46 
AnswerRe: Why are there no form control arrays in vb.net? Pin
Ian Shlasko9-Sep-10 10:59
Ian Shlasko9-Sep-10 10:59 
QuestionAbout Search File List Pin
josephkumar8-Sep-10 23:14
josephkumar8-Sep-10 23:14 
AnswerRe: About Search File List Pin
Richard MacCutchan8-Sep-10 23:22
mveRichard MacCutchan8-Sep-10 23:22 
Questionhow to use Compare? Pin
zhiyuan168-Sep-10 20:20
zhiyuan168-Sep-10 20:20 
QuestionRe: how to use Compare? Pin
DaveAuld8-Sep-10 21:12
professionalDaveAuld8-Sep-10 21:12 
AnswerRe: how to use Compare? Pin
zhiyuan168-Sep-10 21:19
zhiyuan168-Sep-10 21:19 
GeneralRe: how to use Compare? Pin
DaveAuld8-Sep-10 21:22
professionalDaveAuld8-Sep-10 21:22 
GeneralRe: how to use Compare? Pin
zhiyuan168-Sep-10 21:54
zhiyuan168-Sep-10 21:54 
GeneralRe: how to use Compare? Pin
DaveAuld8-Sep-10 22:04
professionalDaveAuld8-Sep-10 22:04 

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.