Click here to Skip to main content
15,884,629 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hey am building an application in the ruby programming language
and i got a toolStripStatus and a richtextbox. what i want to do is every word that is typed into the richtextbox i want it to add up on the toolStripStatuslabel1.
toolStripStatuslabel1 is called Words
here is the code i used

def MainFormLoad(sender, e)
# displays the amount of words being typed
count += 1
next
toolStripStatusLabel1.Text = "Words:" & Document.Text.Count

end
end
Posted

1 solution

//option 1

XML
<script type="text/javascript">
    $(document).ready(function () {
        var length = 200; // predefined textbox char size
        var remaining = 200;
        var txtBox = $("#<%=TextBox.ClientID %>");
        txtBox.onchange(function () {
            remaining = (length - txtBox.val().length);
            $('#lblTextRemain').val(remaining);
        });

    });
</script>




//or use code snippet from http://www.smartwebby.com/DHTML/textbox_characters_counter.asp[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900