VS 2008 Hiding The Current Form And Showing Another Which To Be On The Same Level?

Sep 13, 2010

It is times like these that I miss the old VB6 language I wish I could hide the current forn and show another form which - this is the important thing - to be on the same level that the previous form was . You see , I used to use this code :

Me.Hide Form2.Show However , sometimes in VB .NET this does not work the way I want it to . You see , the current form does get hidden and Form2 is shown indeed ; however , Form2 is shown somewhere in the background . If there are other programs opened at that time , then Form2 is shown behind all those programs , that's what I mean by saying I want it to be shown in the same level as the previous form was the only way out , I found , was to reverse the code :

Form2.Show Me.Hide In this way Form2 is successfully shown right where the previous form was shown (above the other programs) but in some cases this also is not pleasant because it might take some time for Form2 to load while at the same time the previous form is still visible on the screen and therefore for a slight time both forms are shown one over the other , which is surely not nice . That's why I still want to first hide the first form and later show Form2 .

View 17 Replies


ADVERTISEMENT

Showing / Hiding A Form On Windows Server 2008 RD Web Access

Mar 21, 2011

I'm having an issue with my app where IE will get brought to the front of the screen when I am switching between forms. Basically I have a form with the man menu which consist of a few command buttons that will start up another form once a user clicks on the button. I do not want the users loading up multiple forms in my application, so once they load one form I end up hiding the main form. So my code looks as shown below when a button is clicked.

[Code]...

View 6 Replies

Expanding Form (hiding/showing Controls)?

Jul 5, 2009

basically i have a form with loads of controls. So many infact it stretches the whole hieght of my screen.I only need half these showing since the rest are just a sort of 'log'I have seen ti done loads, that only the controls i want to show at start up are displayed then when some one hits a little button in the bottem it expands the rest leaving them showing to.

View 9 Replies

Resources Related To Hiding And Showing A Windows Form

Feb 25, 2011

I have a form which has a picturebox and after clicking on a button another form will appear with a picture box containing the exact same picture. I use this line of code:Image1.Image = vImage.Image..The thing is after I do this i need to hide the form and show it again to be able to see the changes.[code]

View 1 Replies

Multiple Page Form - Loading Another While Hiding Current One

Jun 9, 2011

I'm planning on a private software, that I wish that have multiple pages, like a installer. It will not be a installer or anything, and I don't want to use tabs on it (it doesn't fit to what I'm thinking.) How can I do it? I've tought on multiple forms, but I don't see how can I load another form while I hide the current 'on-the-fly'.

View 4 Replies

VS 2008 Hiding And Showing Tabs?

Apr 25, 2010

I'm trying to search through all tabs to find a specific text. if the text is found, the tab will be hidden, or shown.

I tried this to hide:

btnHide
Dim txt As Object
Dim tabp As TabPage
For Each tabp In TabControl1.TabPages

[Code].....

View 8 Replies

Hiding And Showing A Window

Oct 11, 2009

I was just googleing this, and i came across this

Dim p As New System.Diagnostics.Process
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
p.StartInfo.CreateNoWindow = True
p.StartInfo.UseShellExecute = True
p.StartInfo.FileName = "cmd.exe"
p.Start()

Does that mean that i could show it again? if so, is there a code that can do this?Also, if i wanted to get the window that the user is currently in, how would i be able to hide that?

View 16 Replies

Showing And Hiding Forms

May 4, 2010

When my login screen loads, if the user has not created an account the form will close and a form to create an account will appear. However when I code this both forms stay visible, instead of just the one. Where am I going wrong?[code...]

View 6 Replies

Showing And Hiding Forms In VB?

Mar 11, 2009

I've just upgraded from Visual Basic 6 to Visual Basic 2008 Express Edition.

1. Show anothor form (ie. Form2)

2. Close Form1.

At present when I use the me.form1 , but both Form1 and Form2 both closes.I would like to press a button or on a timer, to show Form2, while closing Form1.

View 4 Replies

Hiding And Showing TabPages In TabControl?

Jul 29, 2010

I am trying to show or hide tabpages as per user choice. If user selects gender male then form for male in a tabpage "male" should be displayed and if user selects female then similar next form should be displayed in next tab "female"I tried using

tabControl1.TabPages.Remove(...)
and
tabControl1.TabPages.Add(...)

It adds and removes the tabpages but doing so will loose my controls on tabpages too... i can't see them back. what's the problem here?

View 3 Replies

String Manipulation By Hiding And Showing

Dec 26, 2011

The idea is simple, if I have a string value "ABCD" then with a ButtonClick event it should randomly reveal a char while others are hidden. i.e, "B*" another click would "AB**" and so on. So far, my I have been stuck in a for loop.

[Code]...

View 2 Replies

VS 2010 : Showing Or Hiding Controls?

May 20, 2010

I have a form that searches a db. Some searches will always result in one row of data, others might return multiple rows. I want to have the data from a single row shown in text boxes and the multiple rows show in a datagridview is it possible to hide/show those depending on the amount of rows.

View 6 Replies

VS 2010 Hiding/Showing Forms In MDI?

Feb 16, 2012

I am using a MDI parent to house each of the forms in my application. I have a main form and 2 sub forms. The sub forms are opened using the code below. Also, when I am finished entering info into these forms, i am hiding them so that I can reopen them with the same info still entered.

The problem is that when i show the form again, it is blank. Why would this be the case? I am never closing or disposing the form, so shouldn't it just unhide easily?Showing the sub-form(savingsfrm1) and and hiding the main form(riskfrm1)Public savingsfrm1 As Savings

Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

[Code]...

View 1 Replies

Forms :: DataGridView Display - Hiding And Showing

Mar 31, 2009

I have a form e.g. Form1 , which displays a datagridview.
1) On form load, the datagridview doesn't have any data
2) The user clicks on a button called filter, this opens a form where the user can specify parameters to filter the data by
3) This form calls a setData() in Form1, which fills the dataset with the data

This works fine. If I click on a button called controlPanel it launches another form and hides this. E.g.
dim cp as new ControlPanel()
this.hide()
cp.show()

On the controlpanel I have a button that links to form1. If I click on it. E.g.
dim frm as new Form1()
this.hide()
frm.show()
It redisplays Form1 but without any data in the datagridview.

I think the problem is that since I am creating a new instance for Form1 it comes up with the blank Form1. Is there a way to redisplay Form1 so that it retains the data that was displayed last, without having to retrieve the data from the database.

View 1 Replies

Hiding / Showing Rows In TopLevel DataGridView

Jan 8, 2010

I've embedded a form into another form by changing the Top Level property. My problem is that the new implementation does not allow me to edit the DataGridView at runtime. Here's the code I'm using from my main form:
Dim f As New form2()
f.TopLevel = False
Me.Controls.Add(f)
f.Show()
f.showRows()
f.showDbvHeader()
When I call the two methods on the onload event in form2 they run OK for the remainder of the event but as soon as it ends, the DGV reverts back to default.

View 2 Replies

VS 2008 : Form Flickering On Load Before Hiding?

Apr 7, 2010

I have a form that is the main form.I don't want it to show when it loads, but when I do Me.Hide() in the Form_Load event, it flickers visible before it hides. Because before I made this form the main form, the one I was using previously didn't flicker.

View 15 Replies

Application-level KeyUp/KeyDown Events (not Windows Form-level)?

Apr 1, 2012

I am creating an Excel add-in written in VB.NET. I would like to bind KeyDown and KeyUp events to the spreadsheet to record when the user presses and releases the arrow keys while navigating the spreadsheetIdeally, these events would be built into Excel alongside the native SheetActivate and SheetSelectionChange events, for example. Alas, they are not.

View 1 Replies

IDE :: How To Know Current Power Level Of Laptop

Jun 11, 2009

How to get the current power level of my laptop and if my charger is connected to my laptop. I want to make an application which tells me to put in the charger if my power level is under 40%, cause it has happened way to many times to me that my computer is shutting down when I etc. watch a movie or is programming. I'm using a HP DV9850EO.

View 4 Replies

Find The Current Level Of Zoom In A Webbrowser Control?

Dec 5, 2010

I am trying to find the current level of zoom in a webbrowser control. I know how to zoom but the same doesn't work for retrieving the current level of zoom. I am trying the following: VB.NET Syntax (Toggle Plain Text )

View 1 Replies

VS 2008 Form Level Declarations?

Mar 24, 2009

On my main application i have a button which shows an "advanced options" form, if the "debug" is checked i was trying to enable/disable visability of a couple of text boxes on the applications main screen but when i tried:

[Code]...

View 2 Replies

Control The System Volume, Mute, And Output The Current Level To The User

Apr 12, 2012

I have searched the web for code relating to changing the system volume, muting the system volume, and outputing the current level of the volume as an integer, using VB.NET.

All the code that I have found either doesn't work, or is very long.

View 5 Replies

Showing And Hiding Forms From A Console Application Causes "Cross-thread Operation Not Valid."

May 7, 2010

Showing and Hiding Forms from a Console Application causes "Cross-thread operation not valid."

View 1 Replies

VS 2008 - Code That Will Reload A Form - Restart Level Button

Feb 11, 2010

I'm looking for some code that will reload a form, so its like a Restart Level button which when clicked will reset the form to its original look.

View 1 Replies

Showing Current Record Of Dataset In Datagrid?

Mar 11, 2010

I m working on vb.net ado.net oledb, I have also added datagrid Control to my form

for retriving database from .Mdb file i used following code
'decleared Name Space
Imports System.Data.OleDb
'Dicleared Variabls in Class Form1

[code]....

how to move current record in datagrid, i mean when i press Next record button then datagrid's data (table) also should move to next record or when i click any record in datagrid, then the current record of dataset also should move to clicked record of datagrid, so that i also may see datagrid's clicked record in textboxes in short i want to use default feature of vb6's ado control, when we bind datagrid with ado control, it worked autometically, both data grid and adodc wer connected each other at a time, so that moving next record also apears in datagrid.

View 5 Replies

VS 2008 Close Current Form And Show Different Form?

Sep 4, 2009

When 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

View 8 Replies

VS 2008 Form Still Showing For One User?

Jan 7, 2010

I have an MDI application. Upon starting it, the MDI form is instantiated, then it kicks off a Username/Password log-in form and makes itself invisible(user never sees the MDI form). If the user logs in, the log-in form becomes invisible and the MDI form becomes visible. This works fine, except for one user.When the log-in form comes up, the MDI form is also visible. If he clicks on something, it crashes(certain variables aren't set at that point). If he logs in, however, the log-in goes invisble and everything works fine. This guy is a network admin/IS type and has several versions/hotfixes of the .Net Framework installed. Could that be the problem? Does anyone know what could be causing this problem for this one user and no one else?

View 2 Replies

IDE :: Hovering Over Variable Name When Debugging Does Not Trigger A Popup Showing The Current Value?

Nov 17, 2009

When debugging in the old VS 2008 with the program stopped at a breakpoint, I could hover over a variable, say a string, and the value of that string would appear in a little box by the mouse pointer. In visual studio 2010 beta 2 this doesn't appear to happen.Is it a feature that needs 'turning on' somehow?I've tried debugging in 64 bit mode and x86 mode, neither works.

View 2 Replies

VS 2008 - Custom Control Not Showing On Form In Design Mode

Jan 31, 2011

I have created a custom Combobox and added it to my toolbox, and it works well. Now I have added a custom ListBox to the same file as the combo box, but it does not show on my designer when I place it. I can however add it at runtime.
''ComboBox
<DefaultEvent("SelectedIndexChanged"), _
ToolboxBitmap(GetType(System.Windows.Forms.ComboBox))> _
Public Class ProjectsComboBox
Inherits ComboBox
''My Customization
[Code] .....
I have tried removing the "DefaultEvent..." and still no dice.

View 2 Replies

[2008] Showing Timer Countdown In Form In A Text Label

Feb 21, 2009

How do I show timer countdown to a text label in form? I have the following code set up:

[Code]...

What I'm trying to do is when I click button 1, timer start countdown from 15 sec. I want to be able to show this timer in sec and millisec in form in a text label so the user can see how much time they have left. (example: 12.56 sec remaining)

View 4 Replies

Hiding The Child Form Also Hide The Parent Form?

Aug 16, 2010

I have three forms: A, B and C. Upon a button being clicked, A displays B. Similarly, B displays C. Both using the ShowDialog() method.

However when I use the Hide() method (inside a Button Click event) on form C to close it, form B also closes. Why would this be? As far as I can see, it shouldn't be doing this. I certainly didn't write any code to tell it to do that.

[Code]...

UPDATE: I am an idiot. DialogResult was set to Cancel on the button as I'd copy+pasted it from the existing Close button and not realised that property was set

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved