| View previous topic :: View next topic |
| Author |
Message |
Laszlo
Joined: 14 Feb 2005 Posts: 4078 Location: Pittsburgh
|
Posted: Wed Nov 28, 2007 7:56 pm Post subject: |
|
|
| majkinetor wrote: | | Make [Total Calculator] work, I am sure you will like it. | I tried replacing its lua.dll with PhiLho's 5.0.2 version. No crash, but the calculator does not start. Can a LUA expert give some hint for Vista?
Maybe Total Calculator uses a special version of the dll, so only the author can provide an update. |
|
| Back to top |
|
 |
Seabiscuit
Joined: 07 Jan 2007 Posts: 109 Location: In fund pe scaun, la o bere prin Romania :D
|
|
| Back to top |
|
 |
Laszlo
Joined: 14 Feb 2005 Posts: 4078 Location: Pittsburgh
|
Posted: Thu Nov 29, 2007 5:31 pm Post subject: |
|
|
| I could make Total Calculator work under Vista. The trick is to install it in a directory without any special rights (like in the Desktop) or spaces in its path. I used c:\tc. |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 3652 Location: Belgrade
|
Posted: Thu Nov 29, 2007 9:12 pm Post subject: |
|
|
Great. Another one of "those" things. _________________
 |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 3652 Location: Belgrade
|
Posted: Thu Nov 29, 2007 9:18 pm Post subject: |
|
|
I just noticed that Total Calcultaor uses RaEdit. THat is another kind of edit control made by author of RaGrid. _________________
 |
|
| Back to top |
|
 |
Laszlo
Joined: 14 Feb 2005 Posts: 4078 Location: Pittsburgh
|
Posted: Sat Dec 15, 2007 1:21 am Post subject: |
|
|
| Check out what is possible with a few hundred lines of AHK code: Popup calculator II. It works with double precision floats, 64-bit integers, supports the usual set of calculator functions and more, can set variables, show the results in several decimal, hex and binary formats; keep the command history, which can be edited, saved, loaded. There are built in math constants and unit conversion values. It is easy to add more functions programmed in AHK... and it is fast: pops up immediately. |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5390 Location: /b/
|
Posted: Sat Dec 15, 2007 4:45 pm Post subject: |
|
|
What would be really useful is a calculator that has natural display, i.e. leaves answers as surds, fractions etc for ultimate precision and easier readability. If not then graphing functions are a must. This is why I currently use PowerToy calc. I haven't looked at your script, but have you planned such features? _________________
 |
|
| Back to top |
|
 |
Laszlo
Joined: 14 Feb 2005 Posts: 4078 Location: Pittsburgh
|
Posted: Sat Dec 15, 2007 4:56 pm Post subject: |
|
|
| Titan wrote: | | What would be really useful is a calculator that has natural display, i.e. leaves answers as surds, fractions etc for ultimate precision and easier readability. | It needs a symbolic math engine, otherwise sqrt(4)-2 will never be evaluated to 0. It can be done, but similar algebraic simplifications are very hard. Rational display is possible, too, but again, what would you expect to see for sqrt(2)? 14142/10000 or 1.4142. It could be a very interesting project, but probably too large for AHK.
| Titan wrote: | | graphing functions are a must. | They are more realistic, especially, since jonny already posted the necessary code. I will look into it. |
|
| Back to top |
|
 |
Laszlo
Joined: 14 Feb 2005 Posts: 4078 Location: Pittsburgh
|
Posted: Wed Dec 19, 2007 4:49 am Post subject: |
|
|
| Titan wrote: | | graphing functions are a must | The Popup Calculator II. v.1.7 grew to over 1200 lines of AHK code. It supports now some limited function definitions, arrays, loops, computed indices, and function graphing with arbitrary grid lines and reading the coordinates of points. |
|
| Back to top |
|
 |
|