ARRRRG My program doesn't work in NT, please help
Short story:
I have a fractal program and I just changed it to use bitmaps, now it wont
draw anything on NT computers (works perfect on 98). Instead it's blank,
resizing gives weird errors like "can't find procedure" or "can't find
handle" or several others.
Long story:
Maybe my friends are right and I should switch to C...
My program worked under any OS in Delphi 3 as long as delphi was installed,
but on any computer without delphi installed it gave me EOLESysErrors. I
think it was because of the THTML component I was using, but tech support
literaly and truly told me this was a feature, not a bug.
Now in Delphi 5 there is no THTML, so I rewrote my program. I also stoped
drawing on the canvas and started using a bitmap. Now it wont run on an NT
computer but works on any win98 computer with or without Delphi installed.
Any ideas what I did wrong???
Before you tell me to stop using bitmaps, here's another story:
First I drew the fractal to the form canvas. This sucked for lots of
reasons.
Then I drew it to a array which I then copied to the canvas.
Sloooooooooow.
Then I put a TImage on the canvas and drew to that. Great, except
resizing the form caused crashes.
Now draw to a bitmap and every half second draw the bitmap to the form
canvas. Perfect on 98.
Thanks in advance.