Search results for query: *

  1. U

    Array solution

    I have a form that has 2 text boxes(txtDescription)(txtCurrentBalance) and a listbox(lstDisplay) and 4 buttons(btnaddcard,btndisplay,btnclear and btnexit).I have declared variables and an array.Using the codes below I can get the Description and the CurrentBalance to appear in the list box...
  2. U

    using SelectedIndexChanged

    I have gotten the txtaircraftId to appear in the listbox by using this menu event: Private Sub mmuRecordSaveArrival_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mmuRecordSaveArrival.Click Dim newitemtext As String = txtAircraftID.Text...
  3. U

    using SelectedIndexChanged

    Can a code be created for the SelectedIndexChanged event to display information in other control instances when a user selects a item in the list box?
  4. U

    Using selectedIndexChanged

    I'm a newbie at vb.net that needs some help. I trying to figure out how to display a truck in other control instances when the user selects TruckId in the listbox. For instance there are three textboxes (txtTruckID,txtCompany,txttypeof)and a listbox (lstTruckID). When the input is put in all...
  5. U

    list box with text box

    I new so forgive me if this problem is easy to fix. I have a listbox (lstTruckID) and several text boxes (txtTruckID,TxtCompanyName,and txtTruckType). I have a menu called Safe Arrival. After I input data into the textboxes and click the menu I want the TruckId to appear in the listbox, then if...
Back
Top