Get Information From One Form To Other?
Jan 7, 2010Get information from one form to the other ?
View 4 RepliesGet information from one form to the other ?
View 4 Repliesusing one form information to be transferred to a second form the code becomes invalid after an validation error has arisen from the first form (ie no adult passengers was selected and the error message was displayed) when corrected the information to be transferred become incorrect as the information is transferred without the correction. [code]
View 1 RepliesI am working on a project that has the user building scrapbook pages through several different forms. When the user selects something a presses a button I have the information about the selection load to a list box which is on a CheckoutForm. One of the options I have is for the user to save what they have made (this includes the information in the list boxes) and return to a previous form to build another page. I have been trying to use the Me.Close() but it does not save the information and using Me.Hide() displays the wrong elements on the forms.
View 5 RepliesI have a main form and I've created another small form.In the main form I show the small form when they click a button, like this:
Button_Click Function
Private Sub AddButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles AddButton.Click
[code]....
then the LicenseNewForm appears. The problem the I stumble upon is how I get the information from the license form to the main form when they click a button in the license form or close the license form. The information is more then just a simple input, so I can't use a InputBox call because the license form has 3 comboboxes and a textbox to get the input from the user and then I need to send that input to the main form.
I have a main form and I've created another small form. In the main form I show the small form when they click a button, like this: [Code]. then the LicenseNewForm appears. The problem the I stumble upon is how I get the information from the license form to the main form when they click a button in the license form or close the license form. The information is more then just a simple input, so I can't use a InputBox call because the license form has 3 comboboxes and a textbox to get the input from the user and then I need to send that input to the main form.
View 9 RepliesSo my question is that I have 2 list boxes in two forms aside from the main one. and I am trying to transfer what I choose in the side form to transfer to the list box.
several questions: Why does the blank list form I have in the main form create a problem when I enter a name for the list box and why does it appear in the box when I put it there? As you can see in my errors. It doesn't seem to recognize the listbox that I wanted to leave empty in the main form.
Second question is how do I get names to add in the main form list box. I believe I have the right code but I seem to be missing something else as well. I want the names to display in the main list box and the integers to add up together so I can separately figure the tax and shipping myself.
Here are some pictures and codes
Main:
Print:
Audio:
Public Class MainForm
Dim frmAudioBooks As New AudioBooks
Dim frmPrintedBooks As New PrintedBooks
[Code].....
I made up Form where you need to fill in information like Name, Surename and Group. And when I press Next (button) I want it to check first if all information is given and in case its not, then you cant go to the next form before filling all information.
View 5 Repliesi would ask if i can take information from FORM to another one?like user enter his name in form1 and i need to use it in another form "form2"
View 5 RepliesI have two form
First 1 is main form name Form1
Second 1 is Form2
i want to get label1.text from form2 into form1.textbox.text
my example code
Code:
Text1.text = Form2.label1.text
this code work if both form are show()
but i want my form2 allways Hide()
i have a form that I need to do two separate functions, however about 95% of the code is the same it's just that last 5% so I don't want to create two forms. What I would like to do is when I click on a button to open the form pass it a variable or something so I can determine which of the two buttons were used to open the form.
Basically if Button1 is clicked do this if button2 was clicked do that...
Form 1 code
Me.Validate()
Me. CustomersBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.BoardingschoolDataSet)
[code]....
Therefore that code above works perfectly as both of them saves information to the Customers table and waitingforApproval.The problem is here:When I open form2 which recieves information from WaitinforApproval database table(and I see it getting it from there as tableadapter works), I want to save the received information to the customers.So I have two data sets in here. Just like above So here I have created a button called confirm/save the data to customers. Hence I put this code in confirm button:
Form 2 code
Me.Validate()
Me. CustomersBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.BoardingschoolDataSet)
And the current dataset set for this form is �waitingforApproval.So it doesn�t save the received information from waitingforApproval into the customers�
im writing a program for my vegetarian girlfriend that does two things from the main menu. 1: add foods with attributes like name, iron content, protein, sodium etc. 2: use the foods that have already been stored and use them to make a balanced meal. What im having trouble with is, how do i save the attributes when storing the foods ? i have knowledge with c++ so i understand how classes work and was wondering if there is something similar in Visual Basic.
View 2 RepliesI wrote the below code for my final project and I need to pass the array players to the next form that I open called Game I don't seem to be able to make heads or tales of what I have read so far. I will just change where the team is loaded from but I want to do it this way.
HTML
Private Sub LoadToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LoadToolStripMenuItem.Click
Dim strFilename As New OpenFileDialog()
Dim result1 As String
Dim numplayers As Integer
[Code] ......
Once I have inserted all details into my booking form I want to send some of the details to a form called "Daily Jobs Form", When I click the save Button on the booking form.On the "Daily Jobs Form" I have a row of TextBox's and at the Begining of the row I have a Button called "View Job" and When I click the "View Job" Button, I would like to be able to view the whole job. And Choose a driver who has Been Allocated the job.
View 11 RepliesI have been working on a small side project that will read in from a serial port and send off a email depending on what it receives. At the moment I am stuck with a problem of it telling me it cannot access the text box as it was created on another thread. Does anyone know what I can do with this error? I have tried using invoke statements but it does not seam to work. [code]...
View 2 Repliesi have two forms and two database tables in sql. my problem is that, in one form(form1) i can save information to another form (form2) but in form2 can't able to resend data back to form1.
Am using dataAdapters and dataSet to load the data into application.
Having been thinking about this issue but doesn't solve it. i mean shall i use select query or what?
In form2, i don't want to insert new information rather all i want is to resend the loaded data from form1 back to it.
Ok so I have an app using sqldatareader to fill a form that I have called frmInventory I have a lookup formula that access a sql database and looks up txtInventory and txtItem information. Say I want to lookup txtInventory and get all my relevant infor, then i close the form and lookup by txtItem, all of the txtInventory items are still on the form and have not cleared. I made a clearform formula to clear the data but it keeps repopulating. Is this because i have an open connection somehwere. i close all my datareaders and dispose of all my connections so why is this information still reapearing after i close the form and reopen? Ive tried everything:
using
end using
if statements you name it.
So I have a list of book branches in an array called _branches. I need to write a procedure that adds branch names to branchNameListBox. Then I have to write a procedure that displays the information on the branch currently selected in the list box. The information should be displayed in sealPictureBox (branch image), cityLabel,nEmpLabel, and totalSalesLabel.This is what I have but the _branches are underlined in blue and it says the it cannot be indexed because there is no default property. what does that mean and how do I fix that?
Public Class BranchInfoForm
rivate branches() As BranchInfo = getBranches()
Private Sub BranchInfoForm_Load(ByVal sender As System.Object,
[code].....
create a form with a seperate window attatched. At the moment i can open the 2nd window and save an integer there close the 2nd window and reopen it and the information is still there, but when i close the main form and reopen it the information has gone is there anyway to keep the information?
View 5 Replieshow can i send the content of any form to specify email address on submit button. For example if anyone fill the contact form the on submission all the form data will be send to particular email address which we can specify in coding.
View 1 RepliesI am trying to input specific information on a form. I have created an sql statement from a table that will out put 18 rows of data. I have opened a recordset and instituted a do until loop. I need for the program to look at each row and if the Standard Score = the value of a field I have on the form it takes the value of the other three columns in updates it on the form. I have created the code and it works for upto 3 (Do Until loops)records, but when I try to add a 4th in the SQL statement and put in another do loop my computer runs it but it acts as if it freezes up.
[Code]...
I have a form in VB.NET and I would like the user to be able to click a button which will display another form (with the original form still visible).
View 1 RepliesIm suppose to make an application that tracks electric motors in a manufacturing plant. It needs to have
MotorID:Five-digit string, such as "02340"
Description:String
RPM: Integer, values in the range of 10 to 10000
[Code]......
I was thinking about doing this part in radiobuttons
The application should be able to store at least 10 motor class objects in an array, create an input form in the application that allow users to input new motor records to be added to the array and create another form that displays all the motors in the array in a list box. This is what I got so far, I know its not much, but whats really puzzling me is how am I suppose to show all the data in the listbox in the second form.
This is whatI got for the first form
Public Class Form1
Dim range As Integer = 0
Dim voltage As Integer = 0
[Code]....
and the second form I really dont know where to even start on that one.
I have a total of 4 forms, the first three of which have information that is totaled on each of those three forms respectively .I'm trying to figure out the best way to set up a final page where each total amount from the first 3 forms will end up on the 4th form so that the sum of the totals from the first 3 forms will add up, and then so I can add 7% on for taxes on this project.I am using both radio buttons and check boxes for the first three forms (and I'm not certain if this would be an important factor).I had been looking at creating a listbox, but I'm not sure if it would be possibly to get the previous totals to show up correctly there, so I suppose I'm just looking for a way to have the "products" from the first three froms show up in a list along with their prices, and then be able to add on the tax and total them all together.
View 4 Repliessomeone give an idea or guide to do this: i have two forms. First form is used to ask from, to, departure time and how many people we want to book for. Second form is used to ask for each person that we book what is their name, age, title, phone number. i planned to use a loop to loop form 2 to ask for their info. However i woner how we can do this?? can a form be an array to loop??
View 1 RepliesI'm making this program. and its a matchmaking program for a game, so people enter their xbox live gamertag and more text stuff and check off which game modes they want to play in. and i need to know how to include the checkboxes information and the radio buttons information and the textboxes information into the email. so at the end they click submit and the program automaticlly gets the info and sends it to me. how would i do this? would i have to put EVERYTHING onto a panel or something like that? and i have 4 applications within the program itself. and one of them is the submit button for the email. and another thing. how would I be able to save the information (each and every text box, check box, and radio button) into a text file?[code]...
View 10 RepliesI am creating a save function for my program and need to save information from different form into the same line of text in a text document. I have to get the date (from vb), the persons name (on frrmDataCollection.tbName) and their BMI (its calculated on frrmDataCollection from a button so i dunno how to do this bit). I then need to put it in a text document on my hard drive (C:BMICalculator). Here is the code that I have got at the moment 1st for the conversion and 2nd for the save function.
HeightAnswer = CType(tbHeight.Text, Single) * 2
WeightAnswer = CType(tbWeight.Text, Single)
BMIAnswer = WeightAnswer / HeightAnswer
frmBMIResults.tbResults.Text = (tbName.Text & ", your BMI is " & BMIAnswer)
frmBMIResults.Show()
Me.Hide()
[Code] .....
I want to know how you can open a form with specific information as if you are just calling a sub, kinda like how a message box is. Example:
MyForm.Show("The form title")I also want to know how I could apply this to forms that are being created from pre existing forms. Exaple:
vb Dim NewMyForm as New MyForm("Title Text")'Now I want to know for each of these next 2 lines of code, think of them as being different codes all together.NewMyForm.Show() ' orNewMyForm.MdiParent = Form1NewMyForm.Show
I am looking for information on how to store information that has been entered into an application form before it is cleared for new information. I would like to store it with a date and time stamp if possible.
View 2 RepliesJust like an array in a group box or a frame as i used in vb6.
If there are 5 customers details then when i load the form it will add (PictureBox, Label and a listbox) for each customer dynamically and display them with their information. Moreover, if i add 6th Customer information in the database then next time i load the form it should display his/her information as well. I did this in VB6 sometimes back but need a start to do in .net
Private Sub LoadCustomerInformation()
Dim Qry As String
Dim RS As New Recordset
[Code].....