topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 5:35 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: DONE: Practice that ALGEBRA. Yer Right? A random equation generator.  (Read 5428 times)

justabeginner

  • Honorary Member
  • Joined in 2007
  • **
  • default avatar
  • Posts: 52
    • View Profile
    • Donate to Member
This program may come in useful for students that need to practice their Algebra skills. The program makes some harder Algebra equations that you need to solve. Once you solve the equation, you put the answer into the program to see if it is correct. The program was made using VB Net 2010, so you will need the Net Runtime library. Hopefully the screen capture below shows what I mean:

equation gen.jpg

For some reason the program crashes on earlier versions of the Net runtime libraries loaded on XP, but works on Net Version 4 runtimes with Windows 7 loaded.

Have fun solving those damn Maths Algebraic Equations. Perhaps use a pen and paper, as some equations might be a bit challenging.

Regards ED




Renegade

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 13,288
  • Tell me something you don't know...
    • View Profile
    • Renegade Minds
    • Donate to Member
Re: DONE: Practice that ALGEBRA. Yer Right? A random equation generator.
« Reply #1 on: January 17, 2013, 12:01 AM »
About crashes on XP
Windows XP doesn't like .NET 4. Make sure that it's Windows XP SP3 first.

http://www.microsoft...etails.aspx?id=17851

If you can, target .NET 3.5:

http://www.microsoft...d/details.aspx?id=21

XP supports it.

You'll lose a few things in there, but you'll still get things like generics and other cool stuff.

Slow Down Music - Where I commit thought crimes...

Freedom is the right to be wrong, not the right to do wrong. - John Diefenbaker

justabeginner

  • Honorary Member
  • Joined in 2007
  • **
  • default avatar
  • Posts: 52
    • View Profile
    • Donate to Member
Re: DONE: Practice that ALGEBRA. Yer Right? A random equation generator.
« Reply #2 on: January 20, 2013, 10:45 PM »
I will try to compile under Net 3.5 and see if it does not crash. Thanks Renogade.