Search results for query: *

  1. Y

    Reading Image from SQLdb

    you know i think this is going to become more of a pain then i want it to. So i think i'm gonna have to store the image link into the db. any reccomendations with that idea?
  2. Y

    Reading Image from SQLdb

    Yes i have read that one before, Im not really understanding it too well, is there any other better tutorial?
  3. Y

    Reading Image from SQLdb

    hello, was anybody successful in accessing image data from a mssql db and displaying it in a PictureBox?
  4. Y

    MSSQL databindings with PictureBox?

    What do i bind the path to? String doesnt have a databindings property. Should i bind it to a label and use the text property? This is was im trying to make: A program that accesses a database with a list of users. I want to be able to Add users too. With that I also want to add a picture...
  5. Y

    MSSQL databindings with PictureBox?

    How would beable to display am image in a PictureBox from my MSSQL db? Im refering to the image in the db with a path such as; 'c:\default.png' Thanks
  6. Y

    Textbox MSSQL Date Only

    Hey it worked, i didnt even think of doing that thank you johnH and techgnome i was almost afraid it wouldnt work becuse im using databingings in code to "text" dtpCertExpr.DataBindings.Add("text", DsMembers1, "TBLMEMBERS.CertExpr") The next thing ill have to tackle is accessing...
  7. Y

    Textbox MSSQL Date Only

    it comming from the SQL db DATETIME datatype for that specific column bound to this field.
  8. Y

    Textbox MSSQL Date Only

    im using vs.net 2003, is there a maskedtextbox in this version? i always seem one step behind with the software. lol is there any code our there that i can make a user defined control out of?
  9. Y

    Textbox MSSQL Date Only

    Hello, i am fairly new to programing and I am taking a class in school on .Net, its not such a great class. I am in the process of making a program that access an MSSQL database. I have a date of birth textbox that is bound to the same on the db using databindings.Add("text")... I type...
Back
Top