Results 1 to 2 of 2

Thread: Listview and numeric up and down

  1. #1

    Thread Starter
    Member
    Join Date
    Dec 2003
    Posts
    55

    Listview and numeric up and down

    iv experimented everywhere for when:

    the numeric up and down function equals one then it will ad 1.50 to the list box price

    VB Code:
    1. numup.value = "1.50"

    thats the numeric up and down value code i think its rite

    and then

    VB Code:
    1. txttot.text = txtdis.text + numup.value

    does that look rite i cant get it to work :/

  2. #2
    Frenzied Member Memnoch1207's Avatar
    Join Date
    Feb 2002
    Location
    DUH, Guess...Hint: It's really hot!
    Posts
    1,861
    what about
    Code:
    txttot.text = Convert.ToInt16(txtdis.text + numup.value)
    
    or
    
    txttot.text = Convert.ToInt16(txtdis.text + numup.value).ToString
    Being educated does not make you intelligent.

    Need a weekend getaway??? Come Visit

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width