Hiding Mainform In Mainformload?

May 7, 2011

[code].....

View 1 Replies


ADVERTISEMENT

Make My Mainform Invisible?

Mar 10, 2010

I made a birthdaylist. You can store birthdays in it, and it will alert you on the day a person has his birthday. To do that the program has to startup when the computer starts up, and give the alert if neccesary and then close itself again. This all works, but the mainform is visible in that period.

View 5 Replies

Using Hide Method To MainForm?

Jan 15, 2010

I'm trying to go to a different form my main form and while I'm using the selected form I want the MainForm to hide. I've put the code MainForm.Hide() at the top of the code of the JobInformationForm where I'm directing the program. I thought this would cause the MainForm window to hide. However, I'm getting an error saying Declaration is Expected. How do I use this MainForm.Hide() feature?

View 3 Replies

Application Startup MainForm Is Loaded?

Apr 1, 2010

I have mainFom and a subForm. what I am trying to do is application startup MainForm is Loaded

(2) in the Load event of mainForm. I am creating the SubFom and made it visible and also making MainForm disable

[Code]...

View 4 Replies

Dispose Form Opened In MainForm Tab?

Apr 19, 2010

I have a MainForm which has tab Control and several independent form. I open each Individual From in the tab of the main form. A "Close Tab" button on the MainFrom closes the current tab, its implementation is below.

This closes the current tab but what I also need is to dispose the From whose tab is closed but I am not sure how to get the instance of the form.'[code]...

View 2 Replies

Position A Messagebox In The Center Of MainForm ?

Nov 12, 2009

Is it possible to position a messagebox in the center of your MainForm instead of the center of the computer screen? This is really confusing for beginner computer users, if your mainform will be in the top left corner and the message box in the middle of the screen, it won't be very clear that the messagebox belongs to your application. (well to us it is, but not to old people).

View 3 Replies

Sharing Data Between Classes And Mainform?

Apr 13, 2011

I have done programs in the past with VB6 using the winsock control to receive data to be processed. I would like to do the same thing in vb.net but I am having problems. I have done numerous searches and consulted numerous books and articles, but haven't found the best approach for accomplishing the following.

I would like from 1 to 20 clients to be able to send a string to the server to be processed. It would be nice to if the clients could connect to same port and use async processes to open/accept more connections. One of the books (Visual Basic 2008 Recipes) has a recipe for creating "Multithreaded TCP Server that supports Asynchronous Communications".

I am trying to base my program off of that example and modify it for my application. The problem I am having is how to share data with the Main form and the classes that handle the communications. The TCP class has two classes contained in it. One class for listening for connection, beginning the accept client and the other class (clienthandler) for completing the connection and getting the data. I would to be able to get the data from the clienthandler class and post on the main form. I have trying to have a public property for the data but I think my confusion comes in because the clienthandler would be created new for every new client. The mainform would not know how many of the new clienthandlers were created etc.how get the data to the main form and clear the data when done. I have even considered putting data into MSMQ and having main form pull data out.

View 7 Replies

Windows Forms: LoginForm And MainForm?

Jun 14, 2010

Currently, I have a LoginForm that authenticates a user and it works fine. I have a MainForm, which is displayed if a valid username and password is entered. I have done this by using the following code in my LoginForm:Private Sub OK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles

[Code]...

Now this does exactly what I want except I fear it's a work around and it's not the best approach. Also, note that I am using Me.Hide() to hide the LoginForm, is there a way to show the MainForm and then close the LoginForm instead of hiding it? Doesn't Me.Hide() call creates an overhead?

View 7 Replies

Interface And Graphics :: MainMenu (Changing MainForm)

Feb 26, 2009

frmMDI is the main form, I want to be able to open a child form but change the mainmenu to go with that form. I am having a heck of a time getting this to work.

When I close said childform i want the main menu to revert back to the starting mainmenu.

View 2 Replies

MainForm And ChildForm TopMost Activated/Deactivated?

Feb 24, 2011

I have 2 FormsOne is my mainform, one is a "child" form.The childform has no control box.he mainform has a toggle button to show and hide the childform.

Private Sub ButtonShowHideChildForm_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonShowHideChildForm.Click
If ChildForm.TopMost Then

[code]....

View 1 Replies

Set All Subforms' Icons Inheritate From Mainform Icon?

Aug 17, 2010

How could i set all subforms' icons inheritate from mainform icon?

i tried this - me.icon = form1.icon - in the subforms, but is not working.

View 1 Replies

Forms :: Check On App Startup Is Login Is Else Start Mainform?

Aug 13, 2011

I'm creating an app, with a splashscreen, loginform (just enter a name) and a mainform.With I use my.settings. Now here comes the issue I run into.The splashscreen should check (onload) if the my.settings.user contains any info, if it does, the mainform should be shown, if not the loginform should be shown. On my app settings I have splashscreen set to the splashscreen and the first form is set to login form.

[Code]...

View 11 Replies

Forms :: Close Form - App With Vb 2010 Which Holds A Mainform

Oct 24, 2010

I've made an app with vb 2010, which holds a mainform. On it is a menutoolstrip with button, when I click on that button a second form is opened on a second monitor and the button is being checked (different color).

When I click the button again, it is unchecked, but the form on the second monitor is still open, while it should be closed.

Here is the code I use:

CODE:

View 1 Replies

Programmatically Set Either A Splash Screen OR The MainForm When The Application Starts Up?

Jan 27, 2011

I know one can select Spash Screen as the application startup as per this illustration. I can't do that however because the application is called by another program which passes in parameters via Process.Start(). Depending on the passed in arguments, I need to either

Go Directly to the MainForm or Go First to a Splash Screen which will then to the the Mainform after 5 seconds.

I definitely need Step 2 above because of the slow startup time of creating an SocketConnection and the population of some Custom Controls only after the Socket connection has been established.

Would I use a startup class or module and then use that as the application startup 'form' which could be establishing the SocketConnection while also launching a Splash Screen?

View 7 Replies

Accomplish Is For The User To Select A Menu Item(New Tester) From The MainForm?

Oct 9, 2010

What I'm trying to accomplish is for the user to select a menu item(New Tester) from the MainForm(only used for menu)to open the NewTesterForm and enter a rating from 1 to 10( 10 being the best) for two different drinks. When the user clicks the ok button on the NewTesterForm it adds the new rating to the totals. It keeps adding the rating totals until a user clicks the cancel button which returns to the MainForm. When the user clicks on the MainForm menu item Summary, The SummaryForm opens and displays:

-average rating for each drink which drink had a higher rating(the name of the drink)the total number of testers

[Code]...

View 1 Replies

VS 2010 Scope - Unable To Use DataInput.RiverFlowData In Calkculations In Mainform

Jan 11, 2011

I am having trouble with the scope of some of my variables. I declare some structures in the load event of my Splash Screen.

[Code]...

View 3 Replies

Make A Splash Screen With Progressbar That Value Changes Base On MainForm Load Event?

Oct 9, 2010

How do I make a splash screen with a progressbar that value changes base on the MainForm_load event? Example:When the mainform finished executing part of mainform_load, the progress bar in the splash screen changes to X value (eg 50)When mainform_load is executed completely, the progress bar moves to 100%, the splashscreen closes and mainform opens.

View 1 Replies

Closing MainForm - Clicking On The "X" Does Not Execute The MnuQuit_Click Code

Jul 12, 2010

When the user clicks on the Quit menu item in my MainForm, some code is executed and then the program closes - this all works fine. But should the user click the "X" on the MainForm, I'd also like the MnuQuit_Click code to execute. The below code compiles with no errors, but clicking on the "X" does not execute the MnuQuit_Click code. I'm sure the answer is a simple one,

[Code]...

View 5 Replies

Creating The Form - Error On The First Line Containing: "MainForm.VARIABLE"

Sep 8, 2010

I have a settings form and a main form the main for collects information from the settings for and stores it into variables (public XXXX as string) but on my Save button it is supposed to save the information in the main form and show the main form. But it get an error on the first line containing: "MainForm.VARIABLE", The innerMessage says it cant create the form or something, but here is the code from my save button:

(I know that this isn't the right block of code because this doesn't really show anything, but if anyother code is required then just tell me and ill post it. The error actually occurs on "MainForm" itself, how do i fix this?)

Error is: An error occurred creating the form. See Exception.InnerException for details. The error is: Object reference not set to an instance of an object.

Dim r As New Random
MainBot.Max = txt_Max.Text
If RB_Manually.Checked = True Then

[CODE]...

View 2 Replies

Cannot Access A Disposed Object Named "MainForm"

Mar 28, 2011

I want to dynamically call form, but after the form is closed and reopen i got the error "Cannot access a disposed object named "MainForm"". I've been searching about this error and found out that basically i'm trying to access invalid control.

My question is how i can use the object again? I mean closing and opening form is very common thing to do, so it should be able to be accessible trough the run time. To give you better perspective [code]...

View 4 Replies

Forms :: MDIContainer Inside Another MDIContainer - MainForm For My System ?

Aug 30, 2010

I have One MainForm for my system. This MainForm is MDIContainer. From that form, i call other forms that are MDIContainers too. So, when i try to open one of this childForms from the MainForm

frmMain is GrandParent form
frmSub is Parent form
frmChild is child form

frmSub.MdiParent = Me // Me is the frmMain which is the Grandparent form
frmSub.Show()

I get this error.

Form cannot be both an MDI child and MDI parent.
Parameter name: value

View 3 Replies

Main() In WindowsApplication - Error "MainForm Isn't Set"

Feb 27, 2011

Additional Information: Im using Visual Studio 2008 (VB) I have experience with C# I cant see where to define the Main Sub, here is my problem: I created a WindowsApplication in Visual Studio, it created a Form for me, when i click 'View Code', something like this appears.

[Code]...

View 2 Replies

Hiding Rows In Excel

Aug 14, 2010

I'm trying to write a simple datagridview to excel. (I know there are lots out there but I can't find this one tweak)The following code runs well enough, I just need to be able to run a loop that says if a given row in the datagridview is .visible = false than I need the corresponding row in the excel spread sheet to become hidden.[code]

View 5 Replies

First Column Not Hiding In Datagridview?

Feb 26, 2010

I have a datagridview and once I populate the view with the data source I hide the columns that I do not need. For some reason the 1st column is not hiding. I have checked the column name and they match and the 2nd line executes fine hides the column for the EVENTID. I even did a messagebox.show( dgvTourOther.Columns("OTHERID").name) and it returned the correct name.

dgvTourOther.Columns("OTHERID").Visible = False
dgvTourOther.Columns("EVENTID").Visible = False

The values being passed are all strings. I do this on 3 other datagridviews ok but for somereason this gridview is acting different. I am going to try an rearrange the columns and see if that helps.

View 2 Replies

Form Is Hiding In Background

Dec 3, 2010

I am working on a project in VB.net 2008. I have a problem arising while opening a form as modal from a modeless form. I have attached a project to demonstrate the problem. This demonstration contains three forms with following characteristics. [code]...

View 3 Replies

Hiding -window While Debugging?

Jan 20, 2009

is it possible to automaticly hide the vs2008-window while i'm in a debuggersession? When VS comes at a breakpoint or there is an error the vs2008-window must pop-up.

View 2 Replies

Hiding A Line In Generated XML?

Jun 8, 2011

I have an app that writes to XML. If a text box is filled, then I write that value to the XML doc.

writer.WriteStartElement("VEHICLE_LICENSE_NUMBER") '10-28 writer.WriteString(frmCitation.txtPlate.Text.ToString)
writer.WriteEndElement()

[Code]...

View 2 Replies

Hiding A Process Window In VB?

Mar 27, 2009

I have been working on a program to hide windows for an active process. I found some examples on the internet explaining how to do this. The problem, however, is that after I hide the windows I cannot get them back. The process still shows up in task manager but i cannot restore the window..

Imports System.Runtime.InteropServices
Imports System.Diagnostics
Public Class Form1

[code].....

View 1 Replies

Hiding A Tab Page In A Tabcontrol?

Jun 2, 2010

Is this the only, or correct, method for hiding a tabpage in a tabcontrol?

Hide it:

Dim RemovedTabs as List(Of TabPage)
RemovedTabs.Add(aTabPage)
aTabControl.Controls.Remove(aTabPage)

[code].....

View 4 Replies

Hiding An Item In A Combo Box

Jan 15, 2010

I am using VB 2008 Express Edition.

Say I have Combobox1 with items (1)Breakfast (2) Lunch (3)Dinner
and I have combobox2 with items (1)Apples (2)Bananas (3)Grapes(4)Oranges

Now when I choose Breakfast in combobox1, I want user to see all 4 items in combobox2. But when I choose Lunch in combobox1, I only want user to see (1)Bananas(2)Grapes(4)Oranges in combobox2, hiding Apples.

Does anyone know a code where I can hide an item in a combo box depending on the condition?

View 3 Replies







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