Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Algorithms
  4. help me

help me

Scheduled Pinned Locked Moved Algorithms
helpcsharptutorial
10 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    phowarso
    wrote on last edited by
    #1

    First I wanna tell u that I am not well in English. I wanna get some help from you. Now I am making a mathematics project with VB.NET. My idea is type a mathematics equation into a textbox. Example: e^x + ln x , 3x^2 + 5x - 2 , sin x - cos^2 x , etc. I don't wanna write the whole equation in coding time. I'll write each part of mathematics functions i.e, sin(), cos(), exp(),ln(), etc.. in coding time. I wanna get that when I type a equation into textbox and then click to commandbutton, corresponding function will automatically work and generate the correct answer. I will very thanks you if you can help my problem. :confused::confused::confused: phowarso

    N C U 3 Replies Last reply
    0
    • P phowarso

      First I wanna tell u that I am not well in English. I wanna get some help from you. Now I am making a mathematics project with VB.NET. My idea is type a mathematics equation into a textbox. Example: e^x + ln x , 3x^2 + 5x - 2 , sin x - cos^2 x , etc. I don't wanna write the whole equation in coding time. I'll write each part of mathematics functions i.e, sin(), cos(), exp(),ln(), etc.. in coding time. I wanna get that when I type a equation into textbox and then click to commandbutton, corresponding function will automatically work and generate the correct answer. I will very thanks you if you can help my problem. :confused::confused::confused: phowarso

      N Offline
      N Offline
      Newbie00
      wrote on last edited by
      #2

      Yeees I'm reading reading and reading and I just can't find any question in your post hmmmmmmm

      phowarso wrote:

      First I wanna tell u that I am not well in English. I wanna get some help from you

      I can not help you with your English :] Maybe try to take some extra courses/lessons. As regards to the rest of your post:

      phowarso wrote:

      Now I am making a mathematics project with VB.NET. My idea is type a mathematics equation into a textbox. Example: e^x + ln x , 3x^2 + 5x - 2 , sin x - cos^2 x , etc. I don't wanna write the whole equation in coding time. I'll write each part of mathematics functions i.e, sin(), cos(), exp(),ln(), etc.. in coding time. I wanna get that when I type a equation into textbox and then click to commandbutton, corresponding function will automatically work and generate the correct answer.

      That's cute... All what I can do is wishing you luck in your work. If you have some concrete problem with some part of code we will try to help you.

      P U 3 Replies Last reply
      0
      • N Newbie00

        Yeees I'm reading reading and reading and I just can't find any question in your post hmmmmmmm

        phowarso wrote:

        First I wanna tell u that I am not well in English. I wanna get some help from you

        I can not help you with your English :] Maybe try to take some extra courses/lessons. As regards to the rest of your post:

        phowarso wrote:

        Now I am making a mathematics project with VB.NET. My idea is type a mathematics equation into a textbox. Example: e^x + ln x , 3x^2 + 5x - 2 , sin x - cos^2 x , etc. I don't wanna write the whole equation in coding time. I'll write each part of mathematics functions i.e, sin(), cos(), exp(),ln(), etc.. in coding time. I wanna get that when I type a equation into textbox and then click to commandbutton, corresponding function will automatically work and generate the correct answer.

        That's cute... All what I can do is wishing you luck in your work. If you have some concrete problem with some part of code we will try to help you.

        P Offline
        P Offline
        phowarso
        wrote on last edited by
        #3

        Hello Friend Thanks you for your encouragement. I'll hopping for your help... with best wishes, :) phowarso

        U 1 Reply Last reply
        0
        • N Newbie00

          Yeees I'm reading reading and reading and I just can't find any question in your post hmmmmmmm

          phowarso wrote:

          First I wanna tell u that I am not well in English. I wanna get some help from you

          I can not help you with your English :] Maybe try to take some extra courses/lessons. As regards to the rest of your post:

          phowarso wrote:

          Now I am making a mathematics project with VB.NET. My idea is type a mathematics equation into a textbox. Example: e^x + ln x , 3x^2 + 5x - 2 , sin x - cos^2 x , etc. I don't wanna write the whole equation in coding time. I'll write each part of mathematics functions i.e, sin(), cos(), exp(),ln(), etc.. in coding time. I wanna get that when I type a equation into textbox and then click to commandbutton, corresponding function will automatically work and generate the correct answer.

          That's cute... All what I can do is wishing you luck in your work. If you have some concrete problem with some part of code we will try to help you.

          P Offline
          P Offline
          phowarso
          wrote on last edited by
          #4

          Hello Friend Thanks you for your encouragement. I'll hopping for your help... with best wishes, :) phowarso

          U 1 Reply Last reply
          0
          • P phowarso

            First I wanna tell u that I am not well in English. I wanna get some help from you. Now I am making a mathematics project with VB.NET. My idea is type a mathematics equation into a textbox. Example: e^x + ln x , 3x^2 + 5x - 2 , sin x - cos^2 x , etc. I don't wanna write the whole equation in coding time. I'll write each part of mathematics functions i.e, sin(), cos(), exp(),ln(), etc.. in coding time. I wanna get that when I type a equation into textbox and then click to commandbutton, corresponding function will automatically work and generate the correct answer. I will very thanks you if you can help my problem. :confused::confused::confused: phowarso

            C Offline
            C Offline
            cp9876
            wrote on last edited by
            #5

            I don't have any significant VB experience, but there are lots of examples of this sort of thing in C++. If you are stuck, look at Stroustrup's book "The C++ Programming Language" where he shows how to do basically what you want to do in C++. Parsing the expression is the key, and the simple solutions often use a technique called recursive descent, so you could try to find articles with keywords "recursive descent" and "visual basic". Update: I just googled on these terms and the first hit was: http://www.codeproject.com/vb/net/math_expression_evaluator.asp[^]

            Peter "Until the invention of the computer, the machine gun was the device that enabled humans to make the most mistakes in the smallest amount of time."

            U 1 Reply Last reply
            0
            • P phowarso

              Hello Friend Thanks you for your encouragement. I'll hopping for your help... with best wishes, :) phowarso

              U Offline
              U Offline
              User 12349108
              wrote on last edited by
              #6

              thanks: https://movied.org

              1 Reply Last reply
              0
              • C cp9876

                I don't have any significant VB experience, but there are lots of examples of this sort of thing in C++. If you are stuck, look at Stroustrup's book "The C++ Programming Language" where he shows how to do basically what you want to do in C++. Parsing the expression is the key, and the simple solutions often use a technique called recursive descent, so you could try to find articles with keywords "recursive descent" and "visual basic". Update: I just googled on these terms and the first hit was: http://www.codeproject.com/vb/net/math_expression_evaluator.asp[^]

                Peter "Until the invention of the computer, the machine gun was the device that enabled humans to make the most mistakes in the smallest amount of time."

                U Offline
                U Offline
                User 12349108
                wrote on last edited by
                #7

                thanks: https://movied.org

                1 Reply Last reply
                0
                • P phowarso

                  Hello Friend Thanks you for your encouragement. I'll hopping for your help... with best wishes, :) phowarso

                  U Offline
                  U Offline
                  User 12349108
                  wrote on last edited by
                  #8

                  thanks: https://movied.org

                  1 Reply Last reply
                  0
                  • N Newbie00

                    Yeees I'm reading reading and reading and I just can't find any question in your post hmmmmmmm

                    phowarso wrote:

                    First I wanna tell u that I am not well in English. I wanna get some help from you

                    I can not help you with your English :] Maybe try to take some extra courses/lessons. As regards to the rest of your post:

                    phowarso wrote:

                    Now I am making a mathematics project with VB.NET. My idea is type a mathematics equation into a textbox. Example: e^x + ln x , 3x^2 + 5x - 2 , sin x - cos^2 x , etc. I don't wanna write the whole equation in coding time. I'll write each part of mathematics functions i.e, sin(), cos(), exp(),ln(), etc.. in coding time. I wanna get that when I type a equation into textbox and then click to commandbutton, corresponding function will automatically work and generate the correct answer.

                    That's cute... All what I can do is wishing you luck in your work. If you have some concrete problem with some part of code we will try to help you.

                    U Offline
                    U Offline
                    User 12349108
                    wrote on last edited by
                    #9

                    thanks: https://movied.org

                    1 Reply Last reply
                    0
                    • P phowarso

                      First I wanna tell u that I am not well in English. I wanna get some help from you. Now I am making a mathematics project with VB.NET. My idea is type a mathematics equation into a textbox. Example: e^x + ln x , 3x^2 + 5x - 2 , sin x - cos^2 x , etc. I don't wanna write the whole equation in coding time. I'll write each part of mathematics functions i.e, sin(), cos(), exp(),ln(), etc.. in coding time. I wanna get that when I type a equation into textbox and then click to commandbutton, corresponding function will automatically work and generate the correct answer. I will very thanks you if you can help my problem. :confused::confused::confused: phowarso

                      U Offline
                      U Offline
                      User 12349108
                      wrote on last edited by
                      #10

                      thanks: https://movied.org

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups