VS 2008 Can't Show Form 2 When Use TAB
Jan 6, 2012[code] I can't show the form 2 when i use TAB.tabindex already set into 1.
View 6 Replies[code] I can't show the form 2 when i use TAB.tabindex already set into 1.
View 6 RepliesWhen I use
Me.Close()
Form1.Show()
It closes the whole app.
How would I change it so that it only closes the current form while opening a new one? EDIT: I put [Not Resolved] Because I accidently pressed the resolved thing
why I need to instantiate a form instead of form.show?
View 20 RepliesPrivate Sub HideShowTest_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Hide()
[code].....
I have a dual monitor setup on my computer. My program has multiple forms. I've designed the program to check which monitor the main form is currently on and to open the secondary forms on the current monitor. When the main form is on the primary monitor the secondary forms open as FormWindowState.Normal which is the design-time setting for the secondary forms. If the main form is on the secondary monitor and I click to open a secondary form then the secondary form is to be displayed as FormWindowState.Maximised.
[Code]...
So I moved the Form.Show line to after the Form.WindowState line. This works fine when the Form.Show process is very quick. The problem is that one of the secondary forms downloads some information from the internet so it takes about a second to finish the Form_Load process. When I had Form.Show first the form would not appear on screen until the Form_Load process is complete, so the delay was in the form appearing at all which is how I prefer it. With Form.Show last the form appears on screen immediately but appears mostly blank and unresponsive until the Form_Load process completes.
I would prefer that the form not appear at all until the Form_Load process is complete but I would like it to appear in an already Maximised state. Is this achieveable? It doesn't seem that complicated but I just can't figure it out.
My mate & Myself are currently building a IRC Client, a problem we have come across is when opening a chatroom the form Freezes for example.
We are currently using arrays so we can open multiple chat rooms and at this current time to open a chat room we use
Channels(ChatIndex).Show()
The form opens but freezes.
I have also tried using
Channels(ChatIndex).ShowDialog()
Application.DoEvents()
Using the above code, the form does not freeze but appears we can not access any of the controls such as (RTB)
What would be causing the form to freeze on .show(), Has anyone else had any similar issues?
I'm making a program, I have added it to the startup now but, How can I make it show the form on startup?
View 2 RepliesI have a "housekeeping Form" set up that...when triggerd by the main form, updates records, sends email, clears and refills an access table all of which runs from a Form.Load Event my problem is the form "PLEASE WAIT WHILE SYSTEM IS UPDATING" will not fully load while all these things are happning I have tried ME.Show and ME. Activate
View 7 RepliesI'm currently uploding using this script:
Dim UserID As String = "MyID"
Dim Password As String = "myPW"
lblUpload.ForeColor = Color.Orange
[Code].....
But when it's uploading it show a new window with a cancel button. how do I hide that window, and if possible show the upload bar in the form that is uploading?
I've made a basic form with a textbox for the username and an OK button, I have no idea how to make it go to the next form when only certain usernames are entered and the OK button is pressed.I also need to find out how to show the username on the next form?
View 5 RepliesHow do I when showing a form, make it randomly pop up on somewhere on the screen? Im using it for allitle game Im putting together
View 6 RepliesI need to show a thumbnail of a web page on a VB 2008 form. I have found a number of code snippets that mention something called an IViewObject which can apparently do what I need but the only examples are in C.
View 5 RepliesI want to show (display) a form or even maybe a panel while the user is hovering over a PictureBox.How would these events work?
View 3 RepliesI have settings called set1 and what I want this to do is when I open up a form and I then click close is doesn't show it anymore it shows the original one.
View 11 RepliesHow do i get my first item to show in combo box when form has loaded?
View 6 Repliesi have form1 and form splash..i used the splash as processing indicator i place gif in the splash form...and in form1 i call the splash in separate thread..
like this..
Dim splashthread As Thread = New Thread(New ThreadStart(AddressOf SplashScreen.ShowSplashScreen))
splashthread.IsBackground = True
splashthread.Start()
[code]....
now,my problem is when form1 is loaded and click button process in it..the splash form will not display modally...is it because i called the splash in separate thread?..
I have a background application that has a System.Timers.Timer running in it.When the elapsed event is raised I want to show a form.Now if I call form.showDialog everything is hunky dory. If I call form.show the form is not responding ... Now I suspect that this is happenening because the elapsed event is raised on a secondary thread but that said I dont know how to fix this.
View 10 Repliesim using visual studio 2008 for my thesis. i have this mdi parent form as a container in my program and buttons in it to show different childforms. i am just wondering is it possible to show the childforms in slow motion manner, from left of the container to the center?
[Code]...
VS 2008 form.show in slow motion
View 4 RepliesHow do I get an existing form to show up as a MDIChildForm?
View 3 RepliesI am receiving hex values for my step through debugging when I go over an integer. For instance if i have an integer of 1 it will show &H1, How can I get it to show the ascii character form instead of hex?
View 6 RepliesI'm not sure how to explain what's happening but it seems to be deadlock, i did search along the forum and actualy did find who had the same problem as i did. Unfortunatly i'm too new to this Threading and could not understand why does this deadlocks happen or how to avoid them.I'm using the following
Dim t As New Threading.Thread(AddressOf MyTestingSub)
t.Priority = Threading.ThreadPriority.BelowNormal
t.IsBackground = True
[code].....
I have developed vb.net application and have one main form with isMdiContainer property true. It has one Menustrip control docking on top of the form and StatusStrip docking on bottom of the scrren. When User click on any menu item it opens new form or if already opened, show it. My application allow to open multiple child forms opened at same time and all forms StartPosition is set to CenterScreen. My problem is becuase all forms are in cetenr it ovelaps each other and user wouldn't know which form(menu option) is opend. I would like to see all opened forms in different tabs (like in windows taskbar) in bottom of MDI parent form.
View 2 RepliesI would like to know if its possible to show up a form in front of all other opened apps . Exemple : myapp.exe (is under of all those application) internet explorer , photoshop , windows live messenger. On event (for exemple on new message recived) myapp.exe will show up all over other forms.
View 3 Repliesi have been looking all over for a tutorial or code snip that will show an image strip on a form from a predetermined dir?
all the ones i see is one pic but there is a browse button.. i need it fix.with all predetermined directories..
I have a form with a web browser on it.
The web browser has a captcha on it.
I want the captcha to be shown on the form iteself.
Maybe in a picturebox or something. But it needs to be the current picture on the web browser.
I have looked around and I couldn't find anything that could achieve this.
[URL]
Or if this is possible, could I add the image "captchaSF_Image" to the clipboard and then paste it in the picturebox1.image? If so how could this be done?
My main form has a timer that monitors idle time in my app: no mouse movements and no clicks.If the idle time reached 3 seconds, in *this example below*, then I want to show frmRestart, which will call the UnloadAllFormsExcept(Me) function from frmMain.When three idle seconds are reached, frmRepeat starts to show on the screen but never does!! I just see the border of the form and nothing else. My mouse goes into "thinking" mode forever.[code]
View 5 RepliesI have an app that connects to a remote database.The connection to the database is triggered by the form load event of the main start up form which prompts the user for user name and a password.Here is my problem:Sometimes it takes a number of seconds for the database connection to be established after the user has double clicked the desktop icon. this means that during this period it appears that no action is taking place until the startup form becomes visible.Some impatient users assume that nothing is happening and double click the icon again.What I want to do is to have a graphic image or something pop up on the screen immediately when the program starts that displays something like 'Connecting To Database, please be patient"
View 1 RepliesI have been working on a quite complex multiform solution.All of a sudden the start up form (in fact any form I designate to start up) loads, displays and operates fine.
But when I try and show a form using showdialog the form displays behind the original form and I can�t set focus to the ide to close it down. I have to use task manager or alt f4 while the form has the focus.
Calling different forms from this one gives the same result but other forms work fine. I don�t want to redo this form as Ive done a lot of work onit.The only thing I can think of that whist I was changing the startup form in the project propertied page (file>project>properties) I unchecked the �Enable applications framework checkbox.
Q1: How can i make it so that my window that i want to show as a drop down does not appear to take the focus off the main form that is calling it?
Q2: The form that is dropping down has the FormBorderStyle Property set to None - thus the window does not have a drop down shadow - how can I make the popup window have a shadow?