Search results for query: *

  • Users: timtom1
  • Content: Threads
  • Order by date
  1. T

    displaying images in vb from Database

    I have this script but my database connection works I think my SQL is sound but I am not sure what RS is and also how to get the image to display in a picture box called TextBoxImageID when you enter a image ID in TextBoxImageID Hope this makes sence PrivateSub Button1_Click(ByVal sender As...
  2. T

    How to write classes

    I have a functioning program but want to turn it into a class, so it can be easily dropped into other programs how do I do that?
  3. T

    Read and Write BLOB Data HELP!

    I am following this tutorial here http://support.microsoft.com/default.aspx?scid=kb;en-us;308042 the only thing I have changed it the field names in the tables. but I get the following error message on this code when I debug it Error: Column 'img_id' does not allow nulls Dim fs AsNew...
  4. T

    form.show & me.close

    I have a button that opens a new form I would like to close the previous form after the button is pressed but it closes the entire project. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles UploadButton.Click form1.Show() me.close()
  5. T

    uploading images to db using vb2005 tut?

    Are there any image upload tutorials that will allow to upload to a database using VB2005?
  6. T

    linking to another form

    *daft* question I have a form called menu and a form called upload how do I like between them with an ok button lol I have Private Sub ButtonUpload_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonUpload.Click Dim upload_form As Form 'Dim upload_form As New...
  7. T

    OpenFileDialog

    Hi when you open a form dialog box and select a file path how do you get it to appear in the textbox and the file locaiton stored?
  8. T

    screensaver tutorial

    Hi does anybody know of an easy to follow screensaver tutorial for vb.net? Do you run them by making a .exe files
  9. T

    MSDOS replace function

    Hello to practice VB.net I have told to create a console that acts similar to the MSDOS replace function, and that has a tick box that can delete the file location if ticked, not sure where to start I haven’t touch VB in 3 years.:eek: Can anybody assist me? Or have they used the MSDOS replace...
Back
Top