Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. .NET (Core and Framework)
  4. textbox

textbox

Scheduled Pinned Locked Moved .NET (Core and Framework)
tutorialquestion
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    locaas
    wrote on last edited by
    #1

    hello 1) how do i create a textbox with the position x:20 and y:150 from code. 2) is there a function to read a specific row and a column from a table example: read column 4 from row 3 10x

    R 1 Reply Last reply
    0
    • L locaas

      hello 1) how do i create a textbox with the position x:20 and y:150 from code. 2) is there a function to read a specific row and a column from a table example: read column 4 from row 3 10x

      R Offline
      R Offline
      Rabbit17
      wrote on last edited by
      #2

      As for the textBox, assign it a location as a point: this.TextBox.Location = new System.Drawing.Point(20, 150); As for reading a column and row, first I'd fill a dataSet with it. Once you've put it in a DataSet then: string text = dataSet.Tables[0].Rows[3][4].ToString(); //row first, then column RABB17 "Even in my Dreams I see the flashing of my cursor."

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups