Search found 1666 matches

by Rescator
Thu Mar 03, 2005 9:03 pm
Forum: Off Topic
Topic: Help with web programming
Replies: 8
Views: 1805

Bonne, seeing as you live in Norway. I can recommend http://www.domeneshop.no they got some pretty darn cheap hosting solutions. 29,- NOK per month is the cheapest. There's a few competitors that has similar rates. I host both my site at domeneshop, and also my domain name. never had a complaint yet...
by Rescator
Thu Mar 03, 2005 8:47 pm
Forum: Tricks 'n' Tips
Topic: SortStructuredList cannot handle >= 19999 Elements (3.93)
Replies: 17
Views: 6045

wow awsome. I bet anyone using really large (data handling wise) programs with thousands of operations will love this, as those are usually the ones that do run out of stack space heh. Altough it also prevent stack overflow crashes/exploits. And with a check on allocmem or a limit on max newstack si...
by Rescator
Thu Mar 03, 2005 8:24 pm
Forum: Coding Questions
Topic: The new generated .lib files, where to put them?
Replies: 11
Views: 1814

Ah, but I don't intend to make a PB "lib". My dll shall remain a dll.

I'll just use the DLL importer I guess, until Fred ads the generation of the (binary/encoded?) definition file so I can just copy the .lib and definition file
straight into the library folders :)
by Rescator
Thu Mar 03, 2005 5:58 pm
Forum: Coding Questions
Topic: The new generated .lib files, where to put them?
Replies: 11
Views: 1814

The new generated .lib files, where to put them?

I'm making a library.
Upon compiling the dll PB now generate a .lib and .exp file.
Where am I supposed to put the .lib file so that the editors and the compiler
can find it?

I tried everywhere, but it doesn't work.
by Rescator
Thu Mar 03, 2005 5:09 pm
Forum: Off Topic
Topic: Help with web programming
Replies: 8
Views: 1805

There is a ton out there. VB (think that is called ASP for server side scripting) Then there is Java, PHP, PERL, python, um Ruby. there's a ton. Personaly I prefer PHP. and in one of my current projects, I found it very easy to code the same encryption procedure in both PB and PHP. PB and PHP has se...
by Rescator
Thu Mar 03, 2005 4:27 pm
Forum: Coding Questions
Topic: Oldskool math sources wanted!
Replies: 8
Views: 1882

http://www.programmersheaven.com/zone10/cat344/

That link looks cool. (found it in the keyword search I my last post)
by Rescator
Thu Mar 03, 2005 4:10 pm
Forum: Coding Questions
Topic: Oldskool math sources wanted!
Replies: 8
Views: 1882

Well searching google for "Fractal Plasma example" gave lots of links.
But I guess you wan't say a C source code implementation example?

Just play around with keyword combos in google and you'll find the best way to get your results. (Google can be very dumb at times :P
by Rescator
Thu Mar 03, 2005 4:02 pm
Forum: Coding Questions
Topic: Binary File Handling
Replies: 15
Views: 3155

Is that a 1 ? (one). Try OpenFile(1, Filez$) instead. (you aparently ment 1, but adding the # infront makes the compiler think you indicated a constants. # does not indicate a numeric value as in some languages. Hence the error you get. or OpenFile(#File1, Filez$) If you have enumerated #File1 previ...
by Rescator
Thu Mar 03, 2005 3:55 pm
Forum: Coding Questions
Topic: Oldskool math sources wanted!
Replies: 8
Views: 1882

Hmm! Try places like scene.org etc.
You'll most likely find links to various resources somewhere.
And what you find will most likely be ASM code. (which kinda is what is most efficient I guess :)
by Rescator
Thu Mar 03, 2005 3:08 pm
Forum: Tricks 'n' Tips
Topic: SortStructuredList cannot handle >= 19999 Elements (3.93)
Replies: 17
Views: 6045

A forum Mod may want to split this thread. (maybe at my post further up) and put it in Tips'n'Tricks
So that all this cool stack code don't get whiped out when Fred cleans up the Bugs section next time :)
by Rescator
Thu Mar 03, 2005 2:35 pm
Forum: Tricks 'n' Tips
Topic: Debugging DLL's and Beta tester program debugging example!
Replies: 7
Views: 4437

Debugging DLL's and Beta tester program debugging example!

Use this code and then simply provide a copy of, or give your testers the url to a DebugView tool. A free debug viewer can be found at http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx ;This is an example of using the Windows system debugger ;A free debug viewer can be found at ;http://t...
by Rescator
Thu Mar 03, 2005 1:15 pm
Forum: Tricks 'n' Tips
Topic: SortStructuredList cannot handle >= 19999 Elements (3.93)
Replies: 17
Views: 6045

I don't think the stack size can be changed once the program is running (just at compile time). Really? When I programmed on the Amiga (used AmigaE still think it was the best language ever :) I remember there was some stack increase code available. Can't recall how it worked, but you did a stack e...
by Rescator
Thu Mar 03, 2005 11:20 am
Forum: Tricks 'n' Tips
Topic: SortStructuredList cannot handle >= 19999 Elements (3.93)
Replies: 17
Views: 6045

So Fred needs to add a stackcheck and automatic stack increase to fix this I assume?
by Rescator
Thu Mar 03, 2005 10:17 am
Forum: General Discussion
Topic: Secretly tracking number of uses
Replies: 92
Views: 38044

Modifying files this way is not modified, esp if it is files that do not belong to your own program etc. What happens if those files are updated or changed? You might cause CRC errors, users may have to reinstall your own porgram, or worse windows says a file has been changed and try to restore it. ...
by Rescator
Tue Mar 01, 2005 8:15 pm
Forum: Announcement
Topic: PureBasic 3.93 for Windows released
Replies: 44
Views: 10532

Installshield huh? doesn't that cost some cash for licensing?

Myself I prefer NSIS (by Nullsoft), it's free and darn good. (and the overhead is tiny)
And it also support lzma *grin*