Search results for query: *

  • Users: x86
  • Order by date
  1. X

    problem with refreshing the datagrid (vb.net 2003)

    Hello, I'm trying to refresh the datagrid after using the SQL UPDATE statement. The data changes physically in the database but the datagrid is not affected. The data is changed only after i restart the program. How can i get the datagrid to refresh or update? I have tried using, among other...
  2. X

    reading data from ascii text file

    I'm kinda trying to figure that part out. :rolleyes:
  3. X

    reading data from ascii text file

    That's a very good point. I want it to read from the first occurence of let's say "c" and 3 lines after that. That's it.
  4. X

    reading data from ascii text file

    Hello, i'm trying to read a ascii text file using the streamreader. For simplicity, let's say my .txt file contains the following data: a b c d e f g How would i read from, let's say character c to f? In pseudocode, i would be something like: for starting charcter = "c" to 3 It would read 3...
  5. X

    Array manipulation

    Thanks, i'll be using GetUpperBound() from now. I'm also trying to place that data in table format with headings. Is there a way to do that with the listbox or listview given i'm using the 2Dim-array and data from the inputbox? I'm having a really hard time trying to make something like...
  6. X

    Array manipulation

    for example, if my Array was [2][3], with numbers, 1 2 3 4 5 6 The columns in that case would be 1,4 & 2,5 & 3,6 In my case, i'm populating the array with numbers from the inputbox. Using a loop, I know i should be able to add the values in the column section of the array and display it...
  7. X

    Array manipulation

    I'm not able to figure out this school work and i spent 2 hours on it. So ill seek help from you guys, before i go nuts. I'm trying to add some data into the array and display it in a column. That's it! I tried some code like this but it does not seem to work. dim dataArray(5,5) Dim askNum...
  8. X

    accessing data by id

    figured it out, i only needed this line: nameOfArray(placeWhereIstoredID) = placeWhereIcanStoreName i'm so ingenious! arn't i? ;)
  9. X

    accessing data by id

    I'm actually looking for something really simple that i can accomplish through arrays. I'm not creating a full app. :)
  10. X

    accessing data by id

    I'm trying to access the data stored using the id that i assigned when inputting the data here is some pseudocode: dim id = inputbox("Enter a id number") // let's say i entered 50 Dim firstName = InputBox("Enter first name:") // let's say i entered "Fred" Dim lastName = InputBox("Enter last...
Back
Top