|
-
Jul 2nd, 2000, 02:43 PM
#1
Thread Starter
Hyperactive Member
i need to know the complete code for a calculator
and i need to know how to send stuff to an aol chatroom
wavy u know super script, subcript, between each letter but, i dont know how to do that with differwnt amount of letters, or for that matter i dont know how todo it period, if u can help, thanx i need as much help as i can get.
-
Jul 2nd, 2000, 03:33 PM
#2
Thread Starter
Hyperactive Member
ughhhhhhhhh
man this always happens no one ever replies with
an answer, and if they do it isnt very helpful
-
Jul 2nd, 2000, 03:38 PM
#3
Thread Starter
Hyperactive Member
talkin to myself
look what u people made me go and do, im talking to my
self again!@#@$$%^!!! ugh.
answer me!!!
-
Jul 2nd, 2000, 03:53 PM
#4
You want the code for a Calculator? There is an example that is shipped with VB. I believe it is called Calc.
-
Jul 2nd, 2000, 05:00 PM
#5
-
Jul 2nd, 2000, 05:13 PM
#6
Addicted Member
HEY !!
hey u just didn't mention whether it is battery
powered or solar powered and the Wattage....
-
Jul 2nd, 2000, 05:17 PM
#7
Kumaraguru
-
Jul 2nd, 2000, 11:17 PM
#8
Hyperactive Member
aol chat
i used to do simple programs for aol ... however u need a bas that has the an aol subclass so u can communicate with aol ... or if u don't want to do that just use:
appactivate
sendkeys
be warned, however, that doing so will turn ur numlock keys on n off
-
Jul 3rd, 2000, 10:41 AM
#9
I wrote this little sub for myself, but I guess you can have it
Code:
Private Sub cmdWavy_Click()
NotWYet = InputBox("Text to make wavy?")
For i = 2 To Len(NotWYet) + 1 Step 2
WavyMid = Mid(NotWYet, i - 1, 1)
'WavyMid = "<sub>" & WavyMid & "</sub>"
WavyLeft = Mid(NotWYet, i, 1)
WavyLeft = "<sup>" & WavyLeft & "</sup>"
Wavy = Wavy & WavyMid & WavyLeft
Next
txtText = txtText & Wavy
End Sub
I commented out the line that inserted the <sub> because for what I wanted it for, it was too wavy.
but you can just uncomment it if you want.
and you ARE going to give the proper credits for people who helped you?? arent you?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|