Results 1 to 9 of 9

Thread: i have 2 stupid questions, but i need help

  1. #1

    Thread Starter
    Hyperactive Member flame_211's Avatar
    Join Date
    Jun 2000
    Location
    I dont really think I know where I am???
    Posts
    393

    Unhappy

    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.
    Reach me at:
    AIM: FlameWide
    AIM: Itz deep6
    MSN/Email: [email protected]

    Check out these sites:
    My Blog

  2. #2

    Thread Starter
    Hyperactive Member flame_211's Avatar
    Join Date
    Jun 2000
    Location
    I dont really think I know where I am???
    Posts
    393

    Angry ughhhhhhhhh

    man this always happens no one ever replies with
    an answer, and if they do it isnt very helpful
    Reach me at:
    AIM: FlameWide
    AIM: Itz deep6
    MSN/Email: [email protected]

    Check out these sites:
    My Blog

  3. #3

    Thread Starter
    Hyperactive Member flame_211's Avatar
    Join Date
    Jun 2000
    Location
    I dont really think I know where I am???
    Posts
    393

    talkin to myself

    look what u people made me go and do, im talking to my
    self again!@#@$$%^!!! ugh.

    answer me!!!
    Reach me at:
    AIM: FlameWide
    AIM: Itz deep6
    MSN/Email: [email protected]

    Check out these sites:
    My Blog

  4. #4
    Guest
    You want the code for a Calculator? There is an example that is shipped with VB. I believe it is called Calc.

  5. #5
    Guest

    Smile Hmmm....Flame not easy to put everything up here

    Try http://www.planetsourcecode.com and search for your code requirements, eg enter Calculator to the search criteria.
    You should get numerous examples of what you want, which can be downloaded.

    There doesn't seem to be an easy way of posting code up here,so any in depth stuff is going to take a heck of a lot of typing.

    FYI

    If you need code, start your project, get something happening in it, and then ask specific questions. You are more likely to get responses. Just a thought

  6. #6
    Addicted Member
    Join Date
    Feb 2000
    Posts
    224

    Talking HEY !!


    hey u just didn't mention whether it is battery
    powered or solar powered and the Wattage....


  7. #7
    Guest

    Thumbs up Kumaraguru

    Good one centurian

  8. #8
    Hyperactive Member theman32x's Avatar
    Join Date
    May 2000
    Location
    New Jersey, USA
    Posts
    305

    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

  9. #9
    Guest
    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
  •  



Click Here to Expand Forum to Full Width