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. C#
  4. problem with DateTimePicker Control.

problem with DateTimePicker Control.

Scheduled Pinned Locked Moved C#
help
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.
  • A Offline
    A Offline
    avvaru murali
    wrote on last edited by
    #1

    Hi, iam in windows application. i have DateTime Picker Control...i hvae to select the value from that control,pass the value thru parameters. string kc=datetimepicker1.value.ToShortDateString(); param = new FbParameter("@kc", FbDbType.Date); param.Value = kc; cmd.Parameters.Add(param); it's giving error "Conversion error form string "2008-04-22" like that. please post reply.

    murali krishna

    C 1 Reply Last reply
    0
    • A avvaru murali

      Hi, iam in windows application. i have DateTime Picker Control...i hvae to select the value from that control,pass the value thru parameters. string kc=datetimepicker1.value.ToShortDateString(); param = new FbParameter("@kc", FbDbType.Date); param.Value = kc; cmd.Parameters.Add(param); it's giving error "Conversion error form string "2008-04-22" like that. please post reply.

      murali krishna

      C Offline
      C Offline
      Christian Wikander
      wrote on last edited by
      #2

      Try not converting the date to a string. Add it as a DateTime value to param.

      param = new FbParameter("@kc", FbDbType.Date);
      param.Value = datetimepicker1.Value;
      cmd.Parameters.Add(param);

      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