Search found 36 matches

by ivory
Tue Jun 28, 2005 6:12 pm
Forum: General Discussion
Topic: Shareware
Replies: 18
Views: 4259

if i am not wrong selling software/shareware(to be software) you MUST own a company, and you MUST declare your sales and stuff ... or i am wrong? In the US (at least in the states I have worked) you do not need to incorporate are create a company. Anyone can say they are a business if the name of t...
by ivory
Mon Jun 27, 2005 6:34 pm
Forum: General Discussion
Topic: Reverse Polish Notation (RPN)
Replies: 10
Views: 2261

RPN can go further than just equations

There have been several languages built on variants of RPN (more or less) including Forth and a little language I saw once called Mouse, and perhaps even APL. The trick is to use a stack, and to know how many operators are required by an operations. If a parameter is a number, push it on the stack. ...
by ivory
Mon Jun 06, 2005 8:37 pm
Forum: Mac OSX
Topic: Jobs announced switching mac from powerpc to intel boxes
Replies: 8
Views: 6746

Jobs announced switching mac from powerpc to intel boxes

BUT!! They will not allow mac osx to run on non-apple machines. I think Jobs desire to sell hardware may be his undoing. Regardless, this means that the Mac OSX compiler now has to support two object codes, and probably means the community will need to develop the means to manage both CPU's in sour...
by ivory
Tue Mar 01, 2005 6:17 am
Forum: General Discussion
Topic: How to resize an image without significant quality loss?
Replies: 11
Views: 2562

Yes Blade, I agree... however, if you work with evenly divisible numbers (as I discussed above) there is less quality loss. That's my point. You can see this effect when you zoom in and out of a bitmap in photoshop (notice the zoom percentage). As for a smarter algorithm you don't need one if you'r...
by ivory
Wed Dec 08, 2004 12:37 am
Forum: General Discussion
Topic: Way out there: Will there be a new Amiga version for OS 4+?
Replies: 14
Views: 2629

Maybe Fred could sell the amiga source to one of the amiga die hards, oh thats right, someone said they had no money :(
by ivory
Fri Nov 12, 2004 11:49 pm
Forum: General Discussion
Topic: Secretly tracking number of uses
Replies: 92
Views: 38069

you can't let the user sit there and work with your app for 30 days, then delete all his work, especially if the deleted data is important. What you can and can't do legally really depends on the license that covers your software I suppose. If someone was attempting to crack your software and trigg...
by ivory
Fri Nov 12, 2004 11:45 pm
Forum: General Discussion
Topic: Secretly tracking number of uses
Replies: 92
Views: 38069

Here is what I did for one my MsgBox Demo. Instead of making it good for 50 uses only, I made the demo version good throw up a nag screen after 25 screen updates (this demo was for a msgbox tool). Everytime you restart the program it restarts the counter, I never save it anywhere. So in effect, if y...
by ivory
Wed Oct 27, 2004 10:59 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] Str() for Constants
Replies: 8
Views: 2552

It seems to me, that it's not really the function thats in question, but the parameter. #myconst = "text" + chr(13) + "more text" This example passes a constant 13 to the function, and could be interpreted by the compiler with ease. CR.L = 13 #myconst = "text" + chr(CR)...
by ivory
Fri Oct 08, 2004 12:01 am
Forum: General Discussion
Topic: PureBasic OS X?
Replies: 13
Views: 3233

If PureBasic (this is just an idle question) rests on the shoulders of one person, what happens if that person becomes bored, decides to take a year off. How do developers cope with the fact that their development tool is not in the hands of a larger company. FredD I use a variety of compilers on a...
by ivory
Tue Oct 05, 2004 7:08 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] RegExp
Replies: 15
Views: 4358

could somebody please explain to me what RegExp is? :?: I've heard some talk about it lately and to be honest I'm feelin' a bit out of the loop :oops: http://etext.lib.virginia.edu/helpsheets/regex.html :) Regular Expresions are extremely useful for checking and/or replacing strings. Very quick too...
by ivory
Mon Sep 27, 2004 9:56 pm
Forum: Announcement
Topic: PureBasic for MacOS X beta 1 unleashed !
Replies: 50
Views: 16653

Is it possible to get a simple list of supported libs?

My MAC won't support OS X, so before I either update or replace, can I get a list of which lib functions are planned for support by Mac version? (Like what we have in help docs that show which libraries are supported by Windows, Amiga and Linux). Most specifically, I'm wondering if the Database func...
by ivory
Mon Sep 13, 2004 9:58 pm
Forum: General Discussion
Topic: Your strings are not safe!!!
Replies: 20
Views: 5123

MD5 is ok for casual encryption

I think MD5 has been cracked and is not considered suitable for any serious encryption, but it is CERTAINLY suitable for turning your strings unrecognizable sections of code.
by ivory
Wed Sep 08, 2004 12:42 am
Forum: Windows
Topic: How can I detect/avoid GPF's when processing images?
Replies: 3
Views: 1921

I'm trying to identify which ones are causing the gpf. I've eliminated all non-jpg's at this point. Since the gpf closes all windows immediately, I need to add a log so I can see which files were opened. Then I need to determine if it was the specific file being opened, or the one being closed, or a...
by ivory
Tue Sep 07, 2004 6:08 pm
Forum: Windows
Topic: How can I detect/avoid GPF's when processing images?
Replies: 3
Views: 1921

How can I detect/avoid GPF's when processing images?

I have a program that displays images from a directory, using loadimage, copyimage etc.

Most images work just fine, but some images cause GPF's. Is there a way to detect a GPF and avoid it, or to detect an image which would not be acceptable to the image libarary included with pure basic?
by ivory
Wed Sep 01, 2004 3:56 pm
Forum: Coding Questions
Topic: Someone who knows VB please help
Replies: 4
Views: 1247

My guess is that R3D_Engine is defined elsewhere in the program, possibly an active-x component. Public Engine As New R3D_Engine is creating a new instance of that object, and making it global. I don't know if there is a true translation for this, since the first thing you would need would be R3D_En...