Results 1 to 11 of 11
  1. #1
    MargZXerO's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0

    [Help]School Work?[Solved]

    i want to show the result in the msg box

    tnx more power MPGH
    Last edited by MargZXerO; 10-07-2010 at 06:57 AM.

  2. #2
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by MargZXerO View Post
    i want to show the result in the msg box

    tnx more power MPGH

    Post your code here...Not in an attachment !!

  3. #3
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    1. Your very first post to ask for someone to do what you should be doing it's just wrong.
    2. You can't have an attachment without virus scan.
    3. How can you learn if someone is doing it for you?

    e// gosh Hassan.. :\ faster
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  4. #4
    MargZXerO's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Dim average As Integer
    Dim units As Integer

    Const math = 4
    Const science = 3
    Const english = 3
    units = math + science + english
    average = (Val(txtenglish * english + Val(txtscience) * science + Val(txtmath) * math)) / units
    lblanswer.Caption = average
    msg = MsgBox("Success Your Average Grade Is I WANT TO SHOW THE RESULT HERE!", vbInformation)
    tnx in advance

  5. #5
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by MargZXerO View Post
    tnx in advance
    Code:
    Dim average As Integer
    Dim units As Integer
     Const math = 4
    Const science = 3
    Const english = 3
    units = math + science + english
    average = (Val(txtenglish * english + Val(txtscience) * science + Val(txtmath) * math)) / units
    lblanswer.Caption = average
    msg = MsgBox("Success Your Average Grade Is I WANT TO SHOW THE RESULT HERE!", vbInformation)
    Fixed Code:

    Code:
    Dim average As Integer
     Dim units As Integer
     
     Const math = 4
     Const science = 3
     Const english = 3
     units = math + science + english
     average = (Val(txtenglish * english + Val(txtscience) * science + Val(txtmath) * math)) / units
     lblanswer.Caption = average
     MsgBox("Success Your Average Grade Is: " & average)
    Easy Much ?


    Quote Originally Posted by Brinuz
    e// gosh Hassan.. :\ faster

  6. The Following User Says Thank You to Hassan For This Useful Post:

    MargZXerO (10-07-2010)

  7. #6
    MargZXerO's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Xscapism View Post


    Code:
    Dim average As Integer
    Dim units As Integer
     Const math = 4
    Const science = 3
    Const english = 3
    units = math + science + english
    average = (Val(txtenglish * english + Val(txtscience) * science + Val(txtmath) * math)) / units
    lblanswer.Caption = average
    msg = MsgBox("Success Your Average Grade Is I WANT TO SHOW THE RESULT HERE!", vbInformation)
    Fixed Code:

    Code:
    Dim average As Integer
     Dim units As Integer
     
     Const math = 4
     Const science = 3
     Const english = 3
     units = math + science + english
     average = (Val(txtenglish * english + Val(txtscience) * science + Val(txtmath) * math)) / units
     lblanswer.Caption = average
     MsgBox("Success Your Average Grade Is: " & average)
    Easy Much ?




    WOW
    awesome it's so easy for you..

  8. #7
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by MargZXerO View Post
    WOW
    awesome it's so easy for you..
    Thanks

    AND


  9. #8
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    @Xscape
    Still think that GUI could use more work
    (inside joke)

    Anyway, Marked Solved


     


     


     



    The Most complete application MPGH will ever offer - 68%




  10. The Following User Says Thank You to NextGen1 For This Useful Post:

    Hassan (10-07-2010)

  11. #9
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by NextGen1 View Post
    @Xscape
    Still think that GUI could use more work
    (inside joke)

    Anyway, Marked Solved
    It's too square IMO.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  12. #10
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Hahahahahaha, insider jokes ftw.



  13. The Following User Says Thank You to Blubb1337 For This Useful Post:

    Hassan (10-07-2010)

  14. #11
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Quote Originally Posted by Jason View Post


    It's too square IMO.

    Think you're better ?

Similar Threads

  1. [Solved] HELP !! Dont Work Login
    By ciprian1234567 in forum CrossFire Help
    Replies: 10
    Last Post: 03-03-2011, 05:43 AM
  2. [Solved] HELP !! Dont Work Login
    By ciprian1234567 in forum CrossFire Help
    Replies: 2
    Last Post: 03-02-2011, 02:52 PM
  3. [Solved] HELP !! Dont Work Login
    By ciprian1234567 in forum CrossFire Help
    Replies: 2
    Last Post: 03-02-2011, 02:50 PM
  4. [HELP]Themes aint working[solved]
    By /b/oss in forum Visual Basic Programming
    Replies: 5
    Last Post: 01-24-2011, 10:54 PM
  5. Help Here - Crossfire Wont Work[SOLVED]
    By Lakshay in forum CrossFire Help
    Replies: 13
    Last Post: 08-08-2010, 06:22 PM