How To Use A Variable Between Forms

Oct 23, 2009

I have two windows forms in my application, and I want to have variables that work between them. How would I do this?

View 2 Replies


ADVERTISEMENT

Pass A Variable To Another Form Or Else Make The Variable Visible To Both Forms?

Sep 5, 2010

Using Visual Basic 2008 Express. I need to pass a variable to another form. Or else make the variable visible to both forms.

View 4 Replies

Forms :: Can Make Variable Actually Seen As A Variable?

Feb 17, 2011

I have a VBA form in Microstation I am using to try and help automate a task. The only problem I am having is I am reading a textbox (Filebox.Text) and setting it as the variable (FN). It works, because I used Msg.Box (FN) to test it. However, in two of the lines of code, I am trying to use (FN) to pass the typed in filename to the command to run in Microstation. Unfortunently, it gets passed on as (FN).dgn instead of the actual filenale typed into the textbox. Is there a way I can make the variable actually seen as a variable? Code on Pastebin: url....Also, not sure if this is the right section, 100% new to VBA, coming from a world Bashed together.

View 3 Replies

Forms :: Wonky Variable Passing In Forms

Apr 22, 2010

This is my first Windows app to create since VB6. I've been in the world of ASP and ASP.NET for many years. However, now I have been asked to create a simple app that needs to be windows based.

[Code]...

View 4 Replies

Use The Same Variable On Different Forms?

Oct 28, 2009

I want to calculate the score on one form and display the score on another form

View 7 Replies

CanNot Pass Variable Between Forms?

Sep 11, 2009

i have a dialogbox (dialog1) i will assign the input from textbox a variable to the from1 but i cant do that.the variable in form1 is Dim get_from_dbox As Long i try to assign to it from dialog1 like below it fails form1.get_from_dbox = Textbox1.Text but i can assign to textbox??like that which works well

form1.RichTextBox1.Text=Textbox1.Text I am new programing i know i am wrong .don't know where?

View 1 Replies

Forms :: Display Variable In Msg Box?

Sep 20, 2010

I am struggling to find out how to use a msg box to display the value of a variable.

I've tried a number of permutations, and searched for hours to find a tip.

My code is currently:

Private Sub btnShowTotalCost_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnShowTotalCost.Click
If (radCorpTravel.Checked) Then

[Code].....

View 10 Replies

Passing Variable Between 2 Forms?

Jun 15, 2010

i have 2 forms -> form 1 and form 2

in form 1 -> 1 button
in form 2 -> 1 textbox and 1 button

when I click button in form 1, it will show the form 2..how can i pass the variable (data from textbox in form 2) into a variable in form 1 after clicking the button in form 2 ?

View 8 Replies

Sharing Variable Value Between Forms

Jul 31, 2009

When I declare a variable as public, shouldn't it be available in another form? I am trying to write a windows mobile prg with 12 static mileage points, form1 has the 12 buttons for start point, but when I call form2 with the destination points, my start variable value is not carried over. I intend to then assign a mileage based on the two points and write to file on mobile device. We support 12 schools, and I want my employees to track mileage easily.

Public Class main
Public start As String = "start"
Public dest As String = "dest"
Public miles As Decimal = 0
[Code] .....

View 4 Replies

Using A Variable Between Multiple Forms

Apr 20, 2009

I want to create a variable to be used by multiple forms, so I created a module that looks like this:[code]I expected the title of that specific form to be "(Name)'s Settings"But instead, it just says "'s Settings," as if the variable had never been assigned a value.

View 4 Replies

Variable Readable From All Forms?

Feb 7, 2010

Variable readable from all forms?

View 14 Replies

VS 2008 Variable Could Be Used Across All Forms?

Jun 26, 2010

In my previous knowledge of programming, i used to use global.variable = true how could i achieve this so the variable could be used across all forms?

View 1 Replies

Forms :: Can't Pass Variable From One Form To Another?

Jun 8, 2011

I have one form, which the user enters upto 5 websites then clicks go - I have on the second form, the one with the webbrowser. A timer which checks if the web browser is busy then either a green light or black image will be shown along side the assocaited input box on the first form.I am finding it impossible to feed variables into the clock through ByVal, like I would a subroutine or function.

Private Sub ActiveMe_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ActiveMe.Tick
If ((WebBrowser1.IsBusy)) Then
Hey.BackColor = Color.Black[code]....

'Error message says Hey is not declared, as i can't pass it through to timer

The variable Hey is determined by the first form - Which picturebox.I have an if statement which simply says if inputbox one has url enter then Hey = Picturebox1, If input box2 has url entered then Hey= Picturebox2 etc.What I want is the timer to check the page has completed loading or is still loading or refresing and the appropriate green or black to be shown aside url input box on first form.I considered using a sub or procedure to act as a clock (a large for loop with another for loop within it, acting as a delay). But found this slowed down theapp to the point of crashing it.

View 1 Replies

Forms :: Carrying A Variable To Another Form?

Sep 3, 2010

I have the following form: Imports System.Data.SqlClient Public Class Form1 Dim ReturnValue As Object = Nothing

[Code]...

View 12 Replies

Forms :: Have A Label With Variable Size

Jul 27, 2009

I have a label in my Form which on loading, displays the contents of a text file. The contents of the text file may change and if so, the number of lines also will. I would like the Form to automatically resize itself based on the number of lines in the file. If there are more lines that the size of the label can take, I would like it to either resize or show scroll bars.

View 2 Replies

Forms :: How To Create New Variable Of Name Type

Dec 3, 2009

My app has a group of forms that do a specific work in different ways. I want to create a new variable of a form when I want with its name. So, I want a Function in this form :
Public Function GetNew (byref f as form ) as form
That give a form name and return a variable of that type. In other words, it must work as "dim f1 as new formx".

View 4 Replies

Forms :: How To Pass Variable From One Form To Another

Jul 17, 2010

I want to pass variables from one form to an other. The variables i I need in the second form( called" Hulsview") are :" hulsbreedte" and" hulslengte". To check if the varibles are passed I added a textbox in the second form,called" hulsview" to check the variable" hulsbreedte". The value selected in the combobox on on form1" hulsbreedte = HulsBreedte1.SelectedValue" returns always 0 in the textbox on de second form.

Here is the code form1:
Imports System.Drawing.Drawing2D
Public Class Form1
Inherits System.Windows.Forms.Form
Public hlb As Point 'not used
[Code] .....
I am using vb express 2010.

View 1 Replies

Forms :: Pass A Variable From Within A Class

Jun 25, 2011

i have a class called car and within that class i have a few vairables

Public Class car
Public Property Name As String
Public Property ID As Byte

[Code].....

View 5 Replies

Forms :: Pre-fill Out Textbox With Variable?

Dec 21, 2009

Well, my problems is follow. I use a textbox where the user can enter a text but which I would like to prefill out with a variable (later , with more experience, want to ask the AD for the username and put it in the box).

That means, when the user runs the app, automatically is the username written in the textbox without pushing a button but the user has the opportunity to change it (For example doesnt want the second surname).

View 1 Replies

Forms :: Properly Set A Public Variable?

Oct 31, 2010

I want al(InitialStrength.Text) to be set as the variable iST so I'm typing this at the top of the page before all my subs:

Public Class CharacterSheet
Public iST As Integer = Val(InitialStrength.Text)

[code]....

but every time I do that and try to compile without even using the variabe, I get this error: "An error occurred creating the form. See Exception.InnerException for details. The error is: Object reference not set to an instance of an object."

View 5 Replies

Forms :: Reference Form Using Variable

Aug 18, 2010

I have an application consisting of 2 forms (Form1 and Form2).There is a text box on each form and they are both named Text1.From a sub routine in a module, I want to alter a text box on one of the forms. The sub determines which form to write to and attempts to refer to the form using a variable.But in the example below, gForm never gets declared when it's nested within the If statement.[code]The actual application is not so simple and I need to use this or a similar approach throughout the application in order to reduce code redundancy.To recap, I want to alter a control on a form by replacing the form name with a variable name. [code]

View 4 Replies

Forms :: Set A Boolean Variable To True?

Aug 18, 2010

I am trying to up a private sub routing based on the Text Changed Event for a listbox, inside of the event, I want to set a boolean variable to true. I have it set up, but for some reason it is not getting called.

Basically what I am doing is the user is being prompted to enter data in an input box. I am taking the data that is entered on the input box and populating it in a list box. I want to know if the text in the listbox has been changed, hence changing the blnIsChanged = True

Can I use text changed with a listbox???

View 2 Replies

Forms :: Using Variable As Part Of Control Name

Jul 25, 2009

Basically, I have a large number of text boxes. Within these text boxes, I'll be doing calculations based on user input and other things. These boxes will be grouped by numbers, eg Cost1, Profit1, Stock1... Cost26, Profit26, Stock26. Without too much explanation, I went to write a FOR loop to perform a repetitive calculation across multiple groups, and the following line came up.

FOR num = 1 TO 26
Cost(num).text = ItemCost

What I've tried to do is use a variable to decide which 'Cost' textbox, from the available 26, to use in the calculation. For whatever reason, it won't work. I would like to be able to use a variable to specify exactly which textboxes I want used, so that on the 3rd pass of the loop, the 3rd box is used, and on the 19th pass, the 19th box is used. Otherwise, I'd just have to do each calculation separately, and write the same thing 26 times, with slightly different numbers.

View 2 Replies

Forms :: Variable Length Text?

Mar 19, 2009

G10L41T20P0C15D1.2S1I0E1.2H4.7262K0.J0Q1450N000000 01
G10L41T21P0C19D0.87S1I0E0.875H5.9386K0.J0Q884N0000 0001
G10L41T22P0C2D0.53S1I0H7.3233K0.159B0J0Q236N000000 01A0.

[code]......

View 7 Replies

Forms Authentication Add SQL Database Variable

Aug 29, 2010

I am using Forms Based Authentication I have extended the Forms Authentication Tables creating a custom table called Profile_Contact that holds the user's GUID, username, email address, and other information. I have another table called Profile_Account which holds company account information such as Company Name, address info, phone numbers etc. This table has a Key Field called IDProfileAccount.

[Code]...

View 6 Replies

Make A Variable Accessible To Other Forms?

Oct 21, 2011

How do I make Variable eccessable to other forms in my app?

View 3 Replies

Passing Variable While The Forms Are Open?

May 22, 2011

I'm trying to pass value from form1 to form2, while both form is open.

Using New (Dim frm as new form2) only works when the form2 is not loaded yet. what if both forms already open?

PS: I don't want to use module since there will be a lot variable to pass and i don't want to maintain such large collection of variable in module.

View 4 Replies

Select One Of Forms Based On The Name Variable?

Aug 14, 2009

I have several instances of one form loaded. They all have an instantiated variable "Name." How do I select one of these forms based on the name variable?

Code:
Public Sub MakeForms()
Dim x as New frmBlack(me)
x.show
End Sub

View 3 Replies

Store Variable Values Between Forms?

Jul 12, 2010

My application sends information from Form1 to Form2 by means of a global variable on Form1 whose value is read by Form2.

This variable is basically used to tell Form2 what it has to do because it's value will change depending on different conditions.

All form2 is meant to do is load data from a database into DataSets which will "ported" to Form1 (the main form) for consumption. I use a Form for this rather than a class because there's a lot of data that will be loaded each time it's visible and I wanted[code]...

View 6 Replies

Variable Scope When Using Forms VB2008?

Mar 11, 2010

where I should declare my variable when using forms and the scope in my test code.

In my code below I have declared variable x in my form1 which can be printed in form2.

But when I create a structure in form1, initialize an array of the type protorec and try to assign values to cards(1).firstname etc... I get a "declartion expected" error.

Why does it work for x but not for cards(x) my array of records?

Public
Class Form1
Public Structure protorec

[Code]....

View 16 Replies







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