Take A Selected Aircraft Type From A Previous Form And Put It Into The Form?

Aug 11, 2009

Dim Type As String = frmFrontEnd.cmbModel.SelectedText.Substring(0, 4)
cmbType.SelectedText = Type

i would like to take a selected aircraft type from a previous form and put it into the form i am working on at the moment, but i want to edit the string so it only has 4 characters.I thought the above line would do it but apparently not. the error is to do with the length.An example:the model in 'the other' combobox is A330-200/-300 and i would like to put A330 into the new combobox cmbType in the above code.

View 15 Replies


ADVERTISEMENT

DataGridView On A Form That Is Being Populated From A SQL Table Dataset By Giving Criteria From A Previous Form?

Apr 8, 2009

I have a DataGridView on a form that is being populated from a SQL table dataset by giving criteria from a previous form. I have 6 columns in the dataset, of which the last column should be combo box column containing items "Done" and "Pending". How do I make this bound column to a combo box column and display the value as well as the alternate item too in the combo box?

View 6 Replies

Get Value Of Previous Form Textbox In Second Form Sql Query?

Mar 7, 2011

str = "Select testlib.code, testlib.name, testlib.RATE, testlib.GRP, testlib.lbound, testlib.ubound, testlib.lcode, testlibHEAD.name AS TNAME from testlib, testlibHEAD where testlib.GRP >= '" & frmPrntRate.txtGroup.Text & "' and testlib.GRP <= '" & frmPrntRate.txtGroupTo.Text & "' and testlibHEAD.code=testlib.lcode and testlib.ISMAIN='Y'and testlib.DCODE = '" & frmPrntRate.txtDept.Text & "' order by testlibHEAD.name, testlib.code"

i'm using this query but the value of group n dept are not coming from first form....

View 3 Replies

Application Not Starting Wit New Startup Form After Deleted The Previous Startup Form?

Nov 11, 2009

i deleted my previous start up form to be replaced by another one but each time i launch the application,the deleted start up form is still displayed.i dont know from where this deleted start up form is being loaded.

View 3 Replies

VS 2005 - Form Load - Retains The Previous Values During The Form Load

Jul 27, 2009

Imports System.Data
Imports System.Data.OleDb
Public Class Form1
Dim con As OleDbConnection
Dim cmd As OleDbCommand


[CODE]...............

The insertion part of the form works great. But my problem is in the form load part......If i leave a field blank(Null),then perform Save operation,close the form after successful insertion and then reopen the form,then it retains the previous values during the form load......This is only in case where i leave a field blank in the previous data entry in the database.......But if i enter values in all fields then form load is working great.

View 2 Replies

Filter Data On 1 Form From Selected Cell On Another Form?

May 16, 2010

I have one form with a datagrid that displays a list of 'contacts' with just the minimal basic info in the datagrid.I have another form that displays ALL the 'contacts' info.I want to double-click on any cell in the datagrid and have the other form load and show ONLY the data for that selected contact on the datagrid form.I have no idea where to start but I have at least already figured out how to show only a select set of contacts by setting a filter on the contactstableadapter to "statusid = 4" (An agent).

View 2 Replies

Close Previous Form?

Dec 9, 2011

I have two forms. 1 a login form, 2 The default application.

I would like the user to be verified by form 1 (Login Form) and if verified to open up form 2 (Default Application). I cant get this to work....

My code is as follows

Login form code
Private Sub OpenDefaultApplication
Dim defApp As DefaultApplication

[Code]....

View 1 Replies

Textbox Get Value From Previous Form?

Feb 22, 2012

Im using visual studio 2008, i have created 2 webforms frm1 and frm2,,,i have a button in frm1 which i would like it to onclick populate textbox values to the other form(frm2)...

View 1 Replies

Open Previous Form When I Close Immediate?

Nov 30, 2011

I need to open the previous form when i close the immediate form

View 5 Replies

Show Form That Closes Previous?

Jun 11, 2011

I have 2 forms right now Form1 and Form2 the default setting start up is Form2. Inside Form 2 there was a button that will release the Form1 button using Form1.Show().[code]...

View 4 Replies

Selected Datagridview Rows In One Form To Another Form

Oct 16, 2011

I am doing a project in window application (VB 2008) where I have 2 forms (form1 & form2) in form1 I place a empty DGV and a button, and in form2 i placed another DGV which i connects to MS access DB, in form2 DGV I add a checkbox column and i need to do is if i click the button in form1 it should show the form2 DGV (till this i got it) and when i checked the rows in form2 DGV the checked rows should shown in form1 DGV. and i also want to add the sum in bottom.

View 10 Replies

Forms - How To Go Back To Previous Form From Current

May 3, 2011

I have a menustrip, in which i have put a BACK option so that the user can go back directly from where he came to the current form, as there are many form which leads to the that particular form.

View 4 Replies

How To Append Data Without Overwriting Previous Form

May 5, 2011

I have this code I use on my form which has worked fine up until now I need to add another form to my project but the text from form 1 gets overwritten when form 2 gets added How can I append my data without overwriting the previous form.

Dim sfd As New SaveFileDialog
sfd.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"
sfd.ShowDialog()
Dim writer As New System.IO.StreamWriter(sfd.FileName)
writer.Write(RichTextBox1.Text
[Code] .....

View 4 Replies

How To Do Add Information Info A Listbox From A Previous Form

Apr 26, 2009

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 Replies

Form Load Doesn't Clear Previous State?

Dec 6, 2009

I have several forms that are "reused," or vistited more than once per each time in the whole program. In VB6, using Form.Show() would show the form in its original state (the state is was when created in the designer). After closing this form (Unload Me), showing it again would still show the form in its original state.

I am coding in VB.NET 2008, and noticed that when I reopen a form I had closed during a session using my program, the form is in the state it was when I closed it (labels and listboxes filled with data), and not in its original state. I currently have the Form.Closing event filled with code to clear all of the controls, but I think that there must be a better way to "clear" or "reset" the form.

View 10 Replies

Form Load Event - How To Get Previous ComboBox Selection

May 13, 2010

I have two forms, forms a and b. Each form has a combo box. The user selects an item from form A's combo box and saves their selection to a database by pressing a button. How can I display their combo box selection from form A in form B's combo box on form B's form_load event?

View 1 Replies

Forms :: Next & Previous Button - Fetch The Records From Database And Display It On Form?

May 7, 2009

I want the coding for next and previous button and its given on my form. I want to fetch the records from my database and display it on my form.

View 6 Replies

Navigate Records - Add First Previous Next Last Buttons To Windows Form (visual Studio 2008)

Jun 9, 2011

Below is my code to call the records or save/update to the database which works fine

[Code]...

I have been trying to add First Previous Next Last buttons to my windows form (visual studio 2008), everything I have tried or found does not work.

View 2 Replies

SQL Statement - Back Button Not Going To Previous Of Selected Row

May 17, 2011

I am currently having a problem in my SQL Statement . I am creating a back and next button and about the Next Button it works just fine. But in previous button its kinda ok...but the problem it goes at the first row not the previous of the selected row.

Here is my SQL STATEMENT...
"SELECT t1.* FROM (SELECT RecordID FROM tbl_assessment WHERE StudentNo LIKE '%" & txtstudentno.Text & "%')t2 CROSS APPLY (SELECT TOP 1 * FROM tbl_assessment WHERE RecordID < t2.RecordID ORDER BY RecordID ASC) t1"

View 3 Replies

VS 2008 - How To Get Previous Selected Path In OpenFileDialog

Jun 26, 2011

I am working Vb.NET 08 Windows Applications. I have OpenFileDialog in a form. I have to connect the Database Based on the selected Path in OPenFileDialog. At Present, I Connect the Database and run the application Successfully. But What i need is .... After close the Application I open the Application again, the Previous Selected Path should be display. How can I get the Path when load the form? Is there any functions to use or any type of variables?

View 4 Replies

Getting Selected DataGridView Value From One Form To Another?

Jan 26, 2012

I have a form, FORM1, that asks the user to input a person's name. If the user wants to they can double click a text box which opens another form dialog.Here they can search a DataGridView for a name in the DB. If the user double clicks the cell I want the selected name from the cell to be put into the text box back at FORM1.

Here is what I have, but it does not work. Any ideas on what I need to change?

Private Sub DataGridView1_CellDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellDoubleClick
Dim i As Integer

[code]....

View 3 Replies

See Selected Record On Form From Sql?

Nov 15, 2011

IS this Correct oro find error, i cant solve that how to see record on my form

Dim Slec As New SqlDataAdapter
Slec.SelectCommand = New SqlCommand("SELECT Name'=" & txtname.Text & "', CNIC#='" & txtcnic.Text & "', F_Name='" & txtfname.Text & "', College='" & txtdept.Text & "',

[code].....

View 8 Replies

Display The Selected Item In Other Form?

Feb 13, 2010

how to use datagrid, that when i clicked or double clicked a data shown in datagrid it will appear in a textbook.

i'm using this codes

Dim Col As Integer = 0
messagebox.show(DataGrid1.Item(DataGrid1.CurrentRo wIndex, Col))

but i don't know how to display the selected item in other form even i had declared a public variable in my module to use.

View 1 Replies

Find The Selected Control In A Form?

Sep 25, 2009

I have an list of controls(PictureBox) and I need to know which one of them is selected, meaning over which of them the mouse is. I thought about getting the location of the mouse and then comparing it with each PictureBox location, but it is quite slow.

View 3 Replies

Passing A Selected Row Of DGV To Another Form (textboxes)?

Mar 8, 2009

I hav a datagridview,which looks like this:ID

[Code]...

i doubleclick a row,lets say highlited row...then this row value should appear to another form which hav 4 textboxes ( id , name, marks and grade).

View 2 Replies

VS 2010 Selected DGV Row To Detail Form

Apr 26, 2011

I am new to VB and to this site so please be gentle. I have a form with a Data Grid View (DGV) control that was created by draging a table to the form (bound?). I want the user to be able to reposition the rows to the one they are interested in, which I have done. Once they have selected the row they are interested in I want them to click a button labeled EDIT. All good so far.

[Code]...

View 2 Replies

Datagrid Selected Record In New Form Upon Click?

Mar 13, 2012

i have this addform to add, edit and delete records in marriage tab, baptism tab and so on and before we can see this form theres another form the emform my question is how am i supposed to code the "view this event" button, that when i click on the selected row my addform will show up with the row i click on the view button is selected/highlighted on this addform (btw i bind all the textbox in my add form on the columns of my marrige table)

View 10 Replies

Datagridview To Display Selected Row's Details In Another Form?

Jun 5, 2011

how to display selected row from a datagridview to another form that records will be in textboxes..

View 2 Replies

Form Show Selected Combo Box Values?

May 13, 2012

[URL]

View 1 Replies

How To Get Selected Item Of ComboBox To Be Label In Form

Mar 14, 2011

I have a combo box on form1 which is linked to a table from my data base. I am trying to get the item selected from the combo box to be a label in form 2.

View 17 Replies







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