textbox

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • enrico via DotNetMonster.com

    #1

    textbox

    how do you retrieve a field from your database and put it in a textbox?

    --
    Message posted via http://www.dotnetmonster.com

  • Armin Zingler

    #2
    Re: textbox

    "enrico via DotNetMonster.c om" <u41845@uweschr ieb
    how do you retrieve a field from your database and put it in a
    textbox?
    Man, you are really eager for knowledge. Have you considered pressing F1
    sometimes or browse the TOC @ http://msdn2.microsoft.com/en-us/library ?

    I've searched for you:
    http://msdn2.microsoft.com/en-us/library/wzabh8c4.aspx
    http://msdn2.microsoft.com/en-us/library/zh26sed6.aspx


    Armin

    Comment

    • Cor Ligthert[MVP]

      #3
      Re: textbox

      textbox1.databi ndings.Add(New Binding("Text", YourDataTable," Your
      DataBaseField") )

      Cor

      "enrico via DotNetMonster.c om" <u41845@uweschr eef in bericht
      news:82cd6c23ea 9f2@uwe...
      how do you retrieve a field from your database and put it in a textbox?
      >
      --
      Message posted via http://www.dotnetmonster.com
      >

      Comment

      Working...