Search found 14 matches

by albert_redditt
Mon Sep 07, 2009 9:33 pm
Forum: Applications - Feedback and Discussion
Topic: I got my calculator working finally
Replies: 7
Views: 4317

I modified the source code some.

I modified the source code slightly to improve things.

http://www.mediafire.com/?qm1zim5jwnk


CreateFile instead of OpenFile
used space(n) function instead of for next looping to create spaces.

put LTrim(answer) in bottom of divider() instead of Trim(answer)
20000 would show up as 2, (still ...
by albert_redditt
Mon Sep 07, 2009 3:50 pm
Forum: Applications - Feedback and Discussion
Topic: I got my calculator working finally
Replies: 7
Views: 4317

I'm debugging it still

the code is freeware for the time being (public domain)

i'm working on version 2 now

I've got the divide and subtract working to 1,000,000 places
it takes about 4 minutes to get 10/3 to 1,000,000 places.

the ltgt() routine takes about 40 minutes at a million if both nums are equal i don't know ...
by albert_redditt
Sun Sep 06, 2009 9:37 pm
Forum: Applications - Feedback and Discussion
Topic: I got my calculator working finally
Replies: 7
Views: 4317

it lockups at 999,379 don't use precisions higher

The calculator locks up at 999,379 places

answer = answer + ans

gives memory acess read error at address ??????????

there is nothing i can do about it in code except to precreate the string and use the poking thing to poke the char into the string.

it may be some kind of govt conspiracy.
by albert_redditt
Sun Sep 06, 2009 4:38 am
Forum: Applications - Feedback and Discussion
Topic: I got my calculator working finally
Replies: 7
Views: 4317

I got my calculator working finally

This is the worlds highest precision calculator.
it takes awhile to get div and mul results.
takes about 20 minutes at 2GHz to get 10/3 to 1,000,000 places
fully functional!!!
http://www.mediafire.com/file/dzzmmyjwmro/big-calc.exe


; PureBasic Visual Designer v3.95 build 1485 (PB4Code)

;- Window ...
by albert_redditt
Sun Aug 23, 2009 8:38 pm
Forum: Feature Requests and Wishlists
Topic: Speech synthesizer
Replies: 0
Views: 746

Speech synthesizer

How about a front end for the speech synth.

where you can adjust the pitch and tone and pass it sentences for
talking games and bots.
by albert_redditt
Mon Jul 27, 2009 4:26 am
Forum: Coding Questions
Topic: File Dialog box
Replies: 4
Views: 1492

Arctic Fox wrote:OpenFileRequester() and SaveFileRequester() :?:

Thanks I'll try it out!
by albert_redditt
Mon Jul 27, 2009 4:21 am
Forum: The PureBasic Form Designer
Topic: A way to change the fonts would be nice.
Replies: 0
Views: 2105

A way to change the fonts would be nice.

also there is a bug in the VD:

When you specify a two like filenames the generator fails to output a include file when you generate source.
by albert_redditt
Sat Jul 25, 2009 10:51 pm
Forum: Coding Questions
Topic: File Dialog box
Replies: 4
Views: 1492

File Dialog box

How do you get a file dialog box for loading and saving files.????????
by albert_redditt
Wed Jul 22, 2009 4:37 pm
Forum: Applications - Feedback and Discussion
Topic: A handy multiplier
Replies: 1
Views: 1758

The full calculator is available here

http://www.mediafire.com/?sharekey=a375220a75eafa7caaca48175a79d1c3e04e75f6e8ebb871

It dosen't divide, save or load yet. I ran out of room in the Demo Version and I'm waiting for the full version so i can finish it.

it truncates integer portion at 5,000,000 places and the decimal portion at 5,000 ...
by albert_redditt
Tue Jul 21, 2009 4:40 am
Forum: Feature Requests and Wishlists
Topic: A way to set a position in a string
Replies: 3
Views: 1209

Thanks i guess??????

I already got the mul procedure working

i just added the strings right to left and then reversed the string.

its not pretty code but on a 2GHz dual core it blazes.

I posted the mul procedure here on the boards somewhere.

its two topics above the tailbite forum.
by albert_redditt
Tue Jul 21, 2009 4:27 am
Forum: Feature Requests and Wishlists
Topic: Ascii and Unicode
Replies: 6
Views: 1948

Ascii and Unicode

How about separating the Ascii and unicode functions
like:
ALen() for ascii len
ULen() for unicode len
AMid()
UMid()
ALeft()
ULeft()
etc...

Just put an "A" infront of the ascii functions and a "U" in front of the Unicode ones.

It would probably be easier for the coders to write the functions and ...
by albert_redditt
Tue Jul 21, 2009 2:38 am
Forum: Applications - Feedback and Discussion
Topic: A handy multiplier
Replies: 1
Views: 1758

A handy multiplier


Procedure Multiplier(a.s,b.s,c.s)
output.s = ""
output2.s = ""
answer.s = ""
result.s = ""
int1.s = ""
int2.s = ""
frac1.s = ""
frac2.s = ""
outsign.s = ""
ltgt.s = "="

number1.s = a.s
number2.s = b.s
outsign = c.s

number1 = Mid(number1,2)
number2 = Mid(number2,2)
dec1 ...
by albert_redditt
Tue Jul 21, 2009 2:33 am
Forum: Coding Questions
Topic: Fonts in the EditorGadget
Replies: 6
Views: 2118

Fonts in the EditorGadget

How do you make the font bold type??????

I don't see anyway of manipulating the font in any of the gadgets.
by albert_redditt
Mon Jul 20, 2009 9:37 pm
Forum: Feature Requests and Wishlists
Topic: A way to set a position in a string
Replies: 3
Views: 1209

A way to set a position in a string

I'm working on a calculator for long strings and i have to add the strings backwards and then loop through and reverse the string into another string.

a reverse string function would be nice also.
and a qbasic like mid$(string,position) = character or string would be nice.