Results 1 to 2 of 2

Thread: Select string in textboxes

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2000
    Location
    Hockley , Essex , England
    Posts
    1

    Post

    Hi All

    I have a task I am trying to perform.
    Basically I have 2 textboxes which display
    2 different files they are displaying diskpace usages they read as:-
    DSA0 is 87% full ( 539 ,MB free)
    and
    DSA0 is 89% full ( 539 ,MB free)

    What I am trying to do is click a command button which opens another textbox and calculates and displays the difference from 87% to 89%.
    can this be done.

    Many thanks in advance

    Mark
    by selecting 87% and 89% between

  2. #2
    Hyperactive Member
    Join Date
    Nov 1999
    Posts
    363

    Post

    Mark,

    In your command button:
    Code:
    With Text3
    .Visible =true
    .Text = Str$(Val(text1) - Val(text2)) & "%"
    End With
    DoEvents
    Wade


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