Search found 28 matches

by nci
Sat May 15, 2004 11:32 pm
Forum: Coding Questions
Topic: Creating CD Burner software in PB?
Replies: 22
Views: 7023

I understand, it would be a huge project, which is why i could never code
it myself. I need more developers. I cannot code every project myself.
Which is why i wanted help with this. But, if nessasary i will try to code one
but it will end up like the other projects i start that just don't get ...
by nci
Sat May 15, 2004 7:51 pm
Forum: Coding Questions
Topic: Creating CD Burner software in PB?
Replies: 22
Views: 7023

Good point, I will need a lot of info on how to code something like that
Maybe we should work on it together :?: But, what is the aspi layer?
by nci
Sat May 15, 2004 3:46 pm
Forum: Coding Questions
Topic: Creating CD Burner software in PB?
Replies: 22
Views: 7023

http://www.pcworlddownload.com/development-tools/programming/starburn-sdk.htm

Looks cool, but $2000!!!!!! holy crap. not worth it. unless i sell the software
and make a profit. Hey, whatever happened to Open Source Software?
I know creating a cd burner app is very difficult and people want a lot ...
by nci
Thu May 13, 2004 3:35 pm
Forum: Coding Questions
Topic: Creating CD Burner software in PB?
Replies: 22
Views: 7023


A link-up to the WNASPI is only permitted if your homepage expressly refers to Ahead Software AG as producer.
Furthermore the enduser has to be advised that the WNASPI may only be copied in the applications folder, but not in the system folder.
Moreover, you have to emphasize that the enduser is ...
by nci
Thu May 13, 2004 2:19 am
Forum: Coding Questions
Topic: Creating CD Burner software in PB?
Replies: 22
Views: 7023

I won't use nero. The user has to have nero installed for it to work :?
Duh, what is the point in that. Anyway, i am going with some free alternatives
like DeepBurner and such to see if they will make an open source library
for freeware developers like me.

Anyway, thanks
by nci
Tue May 11, 2004 11:10 pm
Forum: Coding Questions
Topic: Creating CD Burner software in PB?
Replies: 22
Views: 7023

Does the dll require the user to install nero on their harddrive?
cause all i want is to create a cd burning plugin for my Media player.
Audio CD's is all it needs to do. I did se the other topics, but i was wondering
if anyone had new information about it.

Thanks
by nci
Tue May 11, 2004 4:14 pm
Forum: Coding Questions
Topic: Creating CD Burner software in PB?
Replies: 22
Views: 7023

Creating CD Burner software in PB?

Just wondering if anybody has tried to write cd burning software in PB
I think it could be kinda fun to try. But i don't even know where to begin.
does anybody have any ideas? I guess i would have to write a device driver
huh? I hope not. I don't want to use 3rd party dlls or controls and stuff. But ...
by nci
Fri Feb 13, 2004 8:34 pm
Forum: General Discussion
Topic: Speed tests: VB vs. PB
Replies: 15
Views: 4787

I understand. :D
I new it had to be faster, I just didn't now how fast
doing these tests showed some incredible results!

I just had to find out for my self :D

These huge runtime dll's that microsoft has is one of the biggest
(pardon the pun) reasons I switched to PB. I love PB.

Later
by nci
Fri Feb 13, 2004 3:02 pm
Forum: General Discussion
Topic: Speed tests: VB vs. PB
Replies: 15
Views: 4787

I'm not sure if you noticed, but I think I said I was making a mistake.
I wanted someone to show me what I was doing wrong :)

I just started PureBasic not too long ago, I'm still learning. I was intending
for someone to show me why VB seemed faster. I new it wasn't true but
I didn't now why it was ...
by nci
Thu Feb 12, 2004 5:47 pm
Forum: General Discussion
Topic: Speed tests: VB vs. PB
Replies: 15
Views: 4787


Speed Tests VB vs. PB in seconds

PB: 1.578125 Seconds
VB: 7.28125 Seconds

WOW!!!!!!!!!!!!!!!!!!!!!!!!!1
Purebasic wips vb's butt!!!!!!!!!!!!!!1

all Tests done on a 700 Mhz System with 256 MB of RAM


I checked and double and triple checked all results
'If you wish to do these tests on your own ...
by nci
Thu Feb 12, 2004 5:07 pm
Forum: General Discussion
Topic: Speed tests: VB vs. PB
Replies: 15
Views: 4787

I will try the test with the debugger off.
by nci
Thu Feb 12, 2004 4:04 pm
Forum: General Discussion
Topic: Speed tests: VB vs. PB
Replies: 15
Views: 4787

Speed tests: VB vs. PB


Speed Tests VB vs. PB in seconds

;File output
VB: .015625'5000 lines of "Hello"
PB: .015625 '5000 lines of "Hello"

VB: .109375 ' 50000 lines of "Hello"
PB: .328125 '50000 lines of "Hello"

;Loading Graphics
VB: .046875 'loading picture 50 X 50 100 times
PB: .093750 'loading picture 50 X 50 100 ...
by nci
Wed Feb 11, 2004 5:27 pm
Forum: Coding Questions
Topic: Fast Refreshing of ImageGadget
Replies: 6
Views: 2631

Thanks, but I did get it to work.
I just used StartDrawing(ImageOutput())
did stuff with image then
StopDrawing()

StartDrawing(WindowOutput())
DrawImage(ect...
StopDrawing()

It works like a charm now
by nci
Tue Feb 10, 2004 5:42 pm
Forum: Coding Questions
Topic: Fast Refreshing of ImageGadget
Replies: 6
Views: 2631

There is another image covering the whole form. Can I paint over that
with WindowOutput? or would I have to include the whole image as part
of the spectrum (ack!)
by nci
Tue Feb 10, 2004 3:53 pm
Forum: Coding Questions
Topic: Fast Refreshing of ImageGadget
Replies: 6
Views: 2631

I tried doing something like:


UseImage(#SKIN_VISUAL)
StartDrawing(ImageOutput())
;Clear
Box(0,0,ImageWidth(),ImageHeight(),RGB(0,0,0))
For X = 0 To 511
lVal = 511 / ImageWidth() * X
;lVal = X / ImageWidth()
LineXY(lVal,ImageHeight(),lVal,ImageHeight() - fSpectrum(X) * ImageHeight(),RGB ...