Log In Then New Form2?

Jul 31, 2009

What I am aiming to do is when the user logs in Via MySQL query once they have loged in it will switch to form2.vb and there will be the users information displayed. else check your password and stuff.

View 4 Replies


ADVERTISEMENT

Pass Data From Form2 To Form1 When Form2 Is Closing

Nov 29, 2009

Last one day I could not manage to pass data from one form2 other form.

When I am opening Form2 from Form1, I can pass data from Form1 to Form2.

When I am closing Form2, I want to pass data from Form2 to Form1 which is still open when I close form2.

I try to use shared textbox, but I understand that this is nt supported.

View 11 Replies

Call Menu From Form2 To Form1 Like VB 6 Do "Me.PopupMenu Form2.mymenu"?

Dec 15, 2009

I have 2 forms. On form1 i have listview on form2 i have menu. I'd like to call form2 menu from Form1 ListView1_MouseUp. I tryed to use this code

[Code]...

View 3 Replies

Pass The Selected Rows Of A Datagridview Of Form2 To The Datagridview Of The Form2?

Feb 15, 2012

In my scenario when i press the "Get Book Details " of the Form1 , it will redirect to the Form2 , in the form load of Form2 a datagridview is filled with values along with the checkbox column and the desired rows of all the columns are selected and when OK button(form2) is pressed the selected rows should get populated to the datagridview of the form1.But i m not getting the selected rows to the form1t.

View 1 Replies

How To Load Form2

Aug 10, 2011

i have 2 form..which is frm1 and frm2..my mainform is frm1 how can i load the form2?

View 9 Replies

Call Form2 From Form1 In Wpf

Sep 18, 2011

if in vb.net, I can call like this form2.show (), but how in wpf vb.net?

View 1 Replies

Changing Form1 From Form2

Oct 22, 2008

I am having problems making changes to form1 from form2..I tried declaring form1 on form2 Dim f1 as form1.[code]I can change form2 from form1 but not the reverse.

View 5 Replies

Form1 Related To Form2?

Nov 21, 2011

this looks like to the forum I need. I have a question on somethings. My data is pulled from a local SQL sever express. First, Form1(Customer) has has data. his customer has a vehicle in another form this form is called (Vehicle) form.I have created the customer form in a detailed form and the vehicle form on a grid design.

View 1 Replies

Form1 To Open Form2?

Mar 27, 2009

I have been converting my VB6 programmes to VB 2008, and I am beginning to regret it.According to the books that I am reading on the subject, I can call a second form from the first one. That is, when the first form code has completed, and the final line reads:

frmForm2.Show()

the second form should open and wait for input.This does not happen, the form flashes and then disappears without allowing any input, or button click.I must admit that I preferred being able to start from a module, with a Main() sub, which then read the forms, a la VB6. everything seemed to work fine then.

View 16 Replies

Form2.show End Up Behind Form1?

Apr 1, 2012

I made 2 form.

In form1 I have this:

form2.show()
form2 ends up behind form1, how can I make form2 appear in front of form1?

Form2.showdialog() will make form1 disappear until form2 is closed, that is not what I want.

View 11 Replies

IDE :: Transfer Form1 Val To Form2 ?

Jun 29, 2009

There is no session in desktop app in vb.net .i want to transfer valuse from one form to other want to transfer form 1 (TextBox1.Text) value on form2 (objuserpage.Label1.Text)

'form 1=userpage.vb
Dim objuserpage As New userpage()
' form 1 textbox TextBox1.Text[code].....

View 2 Replies

Linking Form 1 With Form2?

Apr 15, 2011

I have two forms. In form 1, I have a textbox1 and in form two, I have a textbox2 and a button1. Now what I want to do is, write in textbox2 (That is in FORM2) and when I press the button, it just go to textbox1 (That is in FORM1)

View 3 Replies

Panel To Form2 On Form1?

Mar 25, 2011

I have a panel to form2 on my form1 which displays a picture box fine. I got a peice of code that stores 5 images in an image list and works off a keypress.

When I press the Comma key the image changes to the next one. This works fine on its own but when I put it in form2 and try to put the keypress code on form1 for it to change image in the panel it doesn't work.

View 4 Replies

Pass Plater To Form2?

Jan 30, 2010

Public Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim player As Integer = 2
End Sub[code]....

If I click button two it will pass variable player to form2 .If I click button three it will pass variable player to form2 can't seem to pass gas much less a variable,need to pass plater to form2

View 2 Replies

Preventing Form2 From Moving?

Jun 28, 2010

I have 2 forms. Form1 and Form2 When the user calls for a new record to be created, Form2 shows modally centered in form1. I have disabled the control box and need to stop the form from being moved by the mouse. I do not see (Movable) in the properties list.

View 3 Replies

Reference Combobox On Form2?

Dec 16, 2010

I have been searching for days and have come up stumped. My applcation opens with Form1. There is a menu bar with a Tools menu. Under Tools is Options which opens Form2.Form2 contains a combobox which I need to use to control an IF on Form1.

Public Class Options
Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
ALSuffix.SelectedIndex = My.Settings.ALSuffix
End Sub

[code]....

I have tried SelecetedIndex, SelecetedValue and a number of other options.

View 7 Replies

Search Code For Form2 ?

Aug 5, 2009

I need search code for Form2..

What is in Form2:

2-TextBox's :

: 1 Texbox is where will appear the text when someone open a .bmd file

: 2 Texbox is what word to search in texbox1 when is opened (else if its not opened file to show error that is not opened file)

1-Button that when it is pressed to start searching in texbox1 for that word what is in Textbox2

View 13 Replies

Set A Picture From Form1 To Form2?

Mar 11, 2010

I would like to do 2 things (or one of the two)

first, I have in form1 a textbox1 and i would like to bring the info of it to a textbox (or label) in form2

second, If it's possible i would like to set a picture from form1 to form2 (if that's possible)

View 2 Replies

Set Value Of Datagridview In FORM2 From Value In FORM1?

Jun 11, 2011

In the FORM1, the datagridview contain some product column and user can input the number of product quantities they want to buy.if user press the "buy" button, i want it to open FORM2, with datagridview containing the list of the product they buy from datagridview in FORM1.[code]...

View 1 Replies

Using Variables From Form1.vb To Form2.vb?

Apr 29, 2010

I have an equation on Form1.vb that calculates a number. I need that number to be used in another separate formula that's on Form2.vb. How do I do this? I thought using a Module would work but I can't get the function on the Module to "see" the formula and/or variables that I need on Form1.vb. I am using VB 2005.

View 8 Replies

VS 2008 Form2 Will Not Open

May 25, 2009

i have 2 forms, in form1 i have a button that use to redirect to form2. [code] An error occurred creating the form. See Exception.InnerException for details. The error is: Navigation to a relative URL unsuccessful.

View 25 Replies

.net Login In Form1 Then Form2 Will Welcome The User?

Apr 15, 2012

i have here a login in form1 that is connected to my sql database.i want that if i login in form1. the form2 will show my name.

View 11 Replies

Accessing Listview1 In Form1 From Form2?

May 22, 2009

I need to have access to the Listview1 in form1 from form2, something like this:

Form1.Listview1.Items....

View 19 Replies

C# - Copy A Textbox Value From Form1 To Form2?

Aug 2, 2010

I have Form1 that has a textbox and a button. When user clicks the button in Form1, Form2 opens up with a label control that carries the value of textbox in Form1.

What i did is set the textbox modifier of Form1 to Public, but when i call the textbox name of Form1 in Form2, i get an error that says "The name "txtbx1" doesn't exist in the current context". I wonder why since i already set the modifier of txtbx1 to Public.

Quick Note: i tried to instantiate Form1 in Form2 as:

Form1 f1 = new Form1();

and then call

f1.txtbx1.text

The odd thing is Form1 could not be instantiated (not highlighting occurs). On the other hand if i do Form2 f2 = new Form2(); Form2 gets highlighted!

This is how i show Form2 from Form1:

SetSalary salForm = new SetSalary();
salForm.ShowDialog();

Note that SetSalary represents Form2.

View 5 Replies

Calling Data From Form1 Into Form2?

May 6, 2009

Is there any way to pull data from a text box on form1 into form2

For example if Textbox1 = 100

When i click the botton to load form2-

Textbox1 on form 2 ALSO =100?

View 18 Replies

Centering Form2 Inside Form1

Aug 26, 2006

How I have centering Form2 inside Form1. CenterToParent() doesn't work.

View 14 Replies

Data Xfer From Form1 To Form2?

Mar 4, 2009

Is there an easy way (if it can be done at all) of taking data from textbox1 on form1 and placing it into textbox1 on form2?

SO when you hit the button it loads form two and will display the info stored on the origional form1?

View 15 Replies

DataSet On Form1 Not Visible On Form2?

Jan 6, 2010

Using VS2008 I created a dataset in the designer and created a table with one column in the dataset. I pulled this table to create a DGV on Form1 and my column appeared (DS & BS were created on the form as well). It is on Form1 that I would like to initially populate the DT. (The DS is internal and does not have a connection string) On Form2 I would like to create a DGV and use the BS on Form1 as the data source. This is not visible, however, from Form2. I can set the data source programatically but then the column is not visible on Form2 until run time and I would like to make my formatting changes on Form2 using the designer. I tried making the DS and BS on Form1 both public but they still are not visible as a data source on the Form2 DGV.Is there a way to make a data source on a form visible to other forms in the project using the designer?

View 3 Replies

Display Form2 Modally In VB 2008?

Mar 31, 2009

I have two form (Form1 and Form2) in VB 2008.I would like to display Form2 modally. When Form2 ensues closed event I ask a question (displayed Yes/No messagebox), BUT if I clicked No or Yes button the Form2 always will closed.

Here is the code:

'Form1 code:
'------------
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

[code]....

View 3 Replies

Displayed For 5-7 Seconds And Then Form2 Shows?

Nov 23, 2010

So when my application starts i'd like form1 to be displayed for 5-7 seconds and then form2 shows. How do I do this?

View 3 Replies







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