Search results for query: *

  1. C

    Question Read and Display CSV Data

    Hiya; I need to read and display data from a csv file in a table format. I then will need to use these data to calculate different values. This is how the CSV file looks: <table> <tr> <td>9 carat gold</td><td>11.87</td> </tr><tr> <td>18 carat gold</td><td>23.73</td> </tr><tr>...
  2. C

    Automotically Update Value

    i get this error, where could it come from Error 1 'Private Sub Form1_Load(sender As Object, e As System.EventArgs)' has multiple definitions with identical signatures. If i put the whole code inside a button action and run the button the combobox is populated with the strings
  3. C

    Automotically Update Value

    Under FORM application the form is not private its public: if i put the first code in the Me is not recognised it becomes a syntax error. Public Class Form1 Dim lbItems() As String = {"1", "2", "3", "4", "5"} Me.ComboBox1.Items.AddRange(lbItems) End Class i tried executing witihin the...
  4. C

    Automotically Update Value

    Sorry but i'm not developing the application in vb.net web format i'm using windows form format. I have combobox which in web format is equal to list box. How will i amend the code so this could take place in windows form application usind combobox as selecteditems..
  5. C

    Automotically Update Value

    Hi Guys, Can someone direct me on how can i automatically update my value when a user changs the listbox item. At the moment i have a button click when the user changes the list box item and press the button the values get updated, everytime the listbox item get changed i have to repeat it click...
  6. C

    Display Listbox items

    the code you gave me is not functioning, it loops around and add all the numbers from one listbox. I have several listbox what i want is 'whatever items are selected from the listboxes, add all of them up then give me the final answer i.e. listbox1.selecteditems = 1, listbox2.selceteditem=2...
  7. C

    Display Listbox items

    What i meant was i want to add up the values of all the listboxes inside the textbox. can someone indicate to me how i will add up the values of selected listbox item and display the answer on the text box Private Sub TextBox6_TextChanged(ByVal sender As System.Object, ByVal e As...
  8. C

    Display Listbox items

    hi Guys, i'm having issues trying to show listbox items into a text box. I have a list box item, when any of these items are selected from the collection (using VS.NET) i need that item to be shown in a text box. Can someone help me with that. Thanks, M
  9. C

    Pass Parameters

    Hi, I have two forms; in one form i'm inserting some fields into a database. When i click the insert button, it inserts the data from the textbox to the database field and redirects me to form two. In form two i'm trying to retrive the data i've just inserted. I also need to retrive the ID...
  10. C

    SQL Select Statement Date Range issue

    Hi guys, I'm having problem writing an SQL statement where it will selcet records according to the date range submitted. Can someone help solve the issue listed below. I'm using MS access xp version with windows xp: Dim strSQL AsString = "select * from StudentRegister WHERE DOB BETWEEN...
  11. C

    Need help with Database insertion

    Sorry for the late reply was on holiday. I've tried your solution nearly there, just one issue the SupplierID in the database is auto number but when i execute the script this is what i get: 'usp_InsertSupplierName' expects parameter '@SupplierID', which was not supplied. Looking back at my...
  12. C

    Need help with Database insertion

    Hi there guys, I'm learning vb.net for the first time - at present i'm playing around with stored procedures. i created this procedure ti insert data into database - but i'm not sure how do i create the back end code and the parameters. I looked of on different tutorial still cannot find the...
Back
Top