Search results for query: *

  1. T

    for each loop

    Hello, is there a way to skip a row? like for example for each g as datarow in dstreservaties.tables(0).rows if cstr(g("Reservatie_id")) = rid.text then nextfor (or skip or something like that) end if next greetz
  2. T

    How do I update records?

    thx solved :-) you've been a great help i hope i won't be needing you anymore, but i guess i'll need you some more in the next few days, do you happen to know something about printing a datagrid ? greetz tom
  3. T

    How do I update records?

    how do i execute this query? sorry if i ask so many questions but i'm a newbie :-) could you give me a example of code ? thx
  4. T

    How do I update records?

    great :-) it works but i have another question :o) now i can save, modify, how can i delete a record? greetz
  5. T

    How do I update records?

    @ jm ok, i've changed them in to ? but i still keep getting the error of converting varchar into float can you please help me some more? greetz
  6. T

    How do I update records?

    hello, i'm having a problem with this update, it gives an error : error converting varchar to float. here is my code, can anybody see the problem? con.Open() Dim table As New DataTable datprijzen.Fill(table) Dim row As DataRow = table.Rows(0) row.BeginEdit() 'row("Prijs_id") =...
  7. T

    retrieving data for a selected item in a list(veryyyyyyy urgent)

    Private Function opzoekendata() Dim dstdatum As New DataSet Dim datdatum As OleDbDataAdapter DTPDatumbezoek.Format = DateTimePickerFormat.Custom DTPDatumbezoek.CustomFormat = "yyyy-MM-dd" datdatum = New OleDbDataAdapter("SELECT [g].[Naam], [g].[Woonplaats], [r].[Aantal] , [r].[Leeftijd]...
  8. T

    unable to load a disposed form

    in attachement there is a zip file, with the 2 files in. could you please give it a look? because it still wont work greetz
  9. T

    unable to load a disposed form

    it is getting the disposed error because you r using ME. when actually the ME. isnt pointed at the form that should be closed. in theory you should first do me.close and afterwards do frm2.show, but when you do that, frm2 won't be shown, because the code isn't executed anymore, because...
  10. T

    unable to load a disposed form

    hello, i've got a splash form, withouth any buttons. when the opacity becomes 100, it has to close and another form, has to be opened, how is this possible? anything i try turns out with this stupid error thx in advance tom
  11. T

    how to navigate though dataset or datatable

    hello, you all know the 4 arrows, first, previous, next and last. how do they work? lets say i have a dataset full with data and i want to see the first then if i click on next i want to see the next, ... can anybody help me with this, i think this might seem way to easy for some...
  12. T

    dataset

    ... @ jmcilhinney the problem has been solved. but thx for you help. if you have any problems ;) just ask, then maybe i can help you 2 greetz tom
  13. T

    dataset

    thx, but let me explain it a little further i have a kind of main form when that form opens, a other form is automaticly opened with borderstyle none, so without the menubar and stuff, in the second form a couple of textboxes should be filled in, and some things have to be chosen from...
  14. T

    dataset

    how can i refresh a dataset? thx greetz Tom
Back
Top