Click here to Skip to main content
15,885,955 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
VB
Dim s As String
        Dim a, b, c As Long
        a = CLng(Val(TxtBoxInput.Text))
        s = TxtBoxInput.Text
        TxtBoxInput.Clear()
        For i = 1 To Len(s) Step 1
            b = CLng(Mid(s, i, 1))
            c = Len(s) - i
            b = CLng(Val(b) * (2 ^ c))
            TxtBoxInput.Text = CStr(Val(TxtBoxInput.Text) + b)


        Next i
Posted
Updated 18-Apr-13 15:05pm
v2
Comments
[no name] 18-Apr-13 22:33pm    
Not a question or any description of a problem
_Maxxx_ 19-Apr-13 0:33am    
What "answer"? The function manipulates the textbox and puts the results back in the textbox as far as I can see - so MessageBox.Show(TxtBoxInput.Text) would do what you ask - but I can't believe that's what you mean!

1 solution

do u really want a messege box to show ur answer inspite it is shown in a text box

write this
messgebox.show("+TxtBoxInput.Text+","Your Answer ")
 
Share this answer
 
v2

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