how to create calculation codes by using V.B

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • faizal87
    New Member
    • Nov 2006
    • 4

    how to create calculation codes by using V.B

    i've some problems in creating a program using V.B since i'm new in learning this language. basically i learn V.B just by browsing the net by myself without any guide from other people.

    i need to work on my task (downloadable calculation) and i'd be glad if u help me sharing the code for calculation.

    thank you
  • willakawill
    Top Contributor
    • Oct 2006
    • 1646

    #2
    Originally posted by faizal87
    i've some problems in creating a program using V.B since i'm new in learning this language. basically i learn V.B just by browsing the net by myself without any guide from other people.

    i need to work on my task (downloadable calculation) and i'd be glad if u help me sharing the code for calculation.

    thank you
    Hi faizal,
    Please tell me a little more about your task. I can't really tell what you need from what you have written.
    Thanks

    Comment

    • faizal87
      New Member
      • Nov 2006
      • 4

      #3
      Originally posted by willakawill
      Hi faizal,
      Please tell me a little more about your task. I can't really tell what you need from what you have written.
      Thanks
      i want attch my task to this discussion..... i design my calculate task by using V.B....so i want send this calculate to this discussions.... HOW????
      i'm a junior member...i don't know how to attch this task...so can you help me!!!!!!!!

      Comment

      • willakawill
        Top Contributor
        • Oct 2006
        • 1646

        #4
        Originally posted by faizal87
        i want attch my task to this discussion..... i design my calculate task by using V.B....so i want send this calculate to this discussions.... HOW????
        i'm a junior member...i don't know how to attch this task...so can you help me!!!!!!!!
        Just paste the relevant code here

        Comment

        • faizal87
          New Member
          • Nov 2006
          • 4

          #5
          Originally posted by willakawill
          Just paste the relevant code here
          could u give me your email please? i'll attach the file directly to u in private coz frankly i don't know how to explain the problems that i encountered. sorry for the inconvenience. badly need help... :(

          Comment

          • Killer42
            Recognized Expert Expert
            • Oct 2006
            • 8429

            #6
            Keep in mind that if you try to explain the problem here, a lot more people will be "looking over your shoulder", and trying to think of an answer. (No guarantees, of course.)

            Comment

            • sashi
              Recognized Expert Top Contributor
              • Jun 2006
              • 1749

              #7
              Originally posted by faizal87
              i've some problems in creating a program using V.B since i'm new in learning this language. basically i learn V.B just by browsing the net by myself without any guide from other people.

              i need to work on my task (downloadable calculation) and i'd be glad if u help me sharing the code for calculation.

              thank you
              Hi there,

              What is "downloadab le calculation" in the first place? Can you explain a little bit more on the term "downloadab le calculation"? Anyway, since you are talking abt calculation in VB, kindly refer to below code segment, hope it helps. Good luck & Take care.

              Code:
                Dim intValue1, intValue2, intTotal As Integer
                
                intValue1 = 1
                intValue2 = 1
              
                intTotal = intValue1 + intValue2
              
                MsgBox intTotal

              Comment

              Working...