19 Replies - 4459 Views - Last Post: 22 December 2011 - 09:46 AM
#1
Visual Studio Algebra Components
Posted 19 December 2011 - 12:07 PM
I was wondering if anyone knows of any visual studio .net algebra components, for like radicals, exponents, fractions, etc.?
I have searched and searched, but can't find any...
Replies To: Visual Studio Algebra Components
#2
Re: Visual Studio Algebra Components
Posted 19 December 2011 - 12:10 PM
#3
Re: Visual Studio Algebra Components
Posted 19 December 2011 - 12:21 PM
This is one way of access nuget packages.
#4
#5
Re: Visual Studio Algebra Components
Posted 19 December 2011 - 12:25 PM
#6
Re: Visual Studio Algebra Components
Posted 19 December 2011 - 12:27 PM
AdamSpeight2008, on 19 December 2011 - 01:21 PM, said:
This is one way of access nuget packages.
Thanks for that, I'll have a dig in there and see what I can find... I took a quick glance and from what I can tell, even if I don't find what I'm looking for, there's a lot of other cools things ...
AdamSpeight2008, on 19 December 2011 - 01:25 PM, said:
Like textboxes, or datetimepickers, richtextboxes, etc.
#7
Re: Visual Studio Algebra Components
Posted 19 December 2011 - 12:29 PM
#8
Re: Visual Studio Algebra Components
Posted 19 December 2011 - 12:35 PM
Things don't have to be controls for you, to be able to use them.
.Net is an Object Orientated Language, everything is provide via object.
Look how simple it is.
Public Class Cat Public Sub New() End Sub Public Function Speak() As Meow Return New Meow End Function Public Class Meow Public Sub New() End Sub End Class End Class
I've just create a Cat type and it can Meow (which is also a new type).
The Math.Net library modi123_1 will provide objects that does math-y things.
This post has been edited by AdamSpeight2008: 19 December 2011 - 12:35 PM
#9
Re: Visual Studio Algebra Components
Posted 19 December 2011 - 12:54 PM
AdamSpeight2008, on 19 December 2011 - 01:35 PM, said:
Things don't have to be controls for you, to be able to use them.
.Net is an Object Orientated Language, everything is provide via object.
Look how simple it is.
Public Class Cat Public Sub New() End Sub Public Function Speak() As Meow Return New Meow End Function Public Class Meow Public Sub New() End Sub End Class End Class
I've just create a Cat type and it can Meow (which is also a new type).
The Math.Net library modi123_1 will provide objects that does math-y things.
Sorry, I just have never had to think about how one would go about creating a control that looks like a radical, with 2 input boxes, one of them being considerable smaller than the other... The nTH of the root ... and then the root itself
#10
Re: Visual Studio Algebra Components
Posted 19 December 2011 - 01:01 PM
r = X ^ ( 1 / n )
#11
Re: Visual Studio Algebra Components
Posted 19 December 2011 - 01:08 PM
AdamSpeight2008, on 19 December 2011 - 02:01 PM, said:
r = X ^ ( 1 / n )
I suppose that would work, but for a math program, it wouldn't be very practical for usability purposes for people, who are learning algebra, trying to input an answer in that format...
Take Microsoft Math for instance, you can click on a radical, it puts it in, and you can enter the nTH of the root and the root and then continue with more of the equation...
It would seem that I need to look at creating my custom control... Don't know how well that's going to turn out, but I suppose it's worth a shot...
#12
Re: Visual Studio Algebra Components
Posted 21 December 2011 - 02:17 PM
So recently I was using Mathxl.com for my algebra classes at college... a very nice, clean, and functional application... The problem is, is that they use all Flash... I guess what I'm wondering, is there any way to accomplish the same or similar interface by just using .Net, in terms of being able to insert the special algebra symbols like they do?
Here is an example of what theirs looks like...
#13
Re: Visual Studio Algebra Components
Posted 21 December 2011 - 02:18 PM
#14
Re: Visual Studio Algebra Components
Posted 21 December 2011 - 02:43 PM
modi123_1, on 21 December 2011 - 03:18 PM, said:
Thank you for your reply, at least now I know that it is possible, that's one step closer than I was a bit earlier...
Could you help ease a poor old man's mind and throw me a bone as to where you might start or how you would go about creating such a thing?
#15
Re: Visual Studio Algebra Components
Posted 21 December 2011 - 02:50 PM
There's a St. Louis, Macau? Odd.
Quote
What part? The whole damn thing, or just exponents? I would start with custom user controls. A few placed text boxes... some custom code to handle the exponent.. and then branch out from there.
|
|

New Topic/Question
Reply


MultiQuote







|