Search found 50 matches

by sharkbate24
Tue Nov 04, 2008 8:28 pm
Forum: General Discussion
Topic: Is this legal?
Replies: 21
Views: 5728

Mistrel wrote:No, it is not legal. I suspect that you wouldn't even receive the software if you tried.

http://spamtrackers.eu/wiki/index.php?t ... e_Software
Aah okay yeah. You have to be careful nowadays with what you purchase, especially software not from manufacturers.

Thanks.
by sharkbate24
Tue Nov 04, 2008 8:06 pm
Forum: General Discussion
Topic: Is this legal?
Replies: 21
Views: 5728

Is this legal?

Hi everyone,

I googled for 'PureBasic', and it came up with this: http://soft-buy.net/buy-cheap-purebasic ... -price.php so I am wondering, is this legal? I already have a registered version of PB so it doesn't concern me, but I'm just wondering if that whole website is illegal?

Thanks.
by sharkbate24
Fri Oct 31, 2008 5:32 pm
Forum: Coding Questions
Topic: Create EXE?
Replies: 10
Views: 2880

rsts wrote:Based on the announcement, that seems to be correct.
Yeah, basically I did it another way, rather than create an EXE. I'd like to know how to create an exe with the users input though, but I guess it would be hard?

Thanks.
by sharkbate24
Fri Oct 31, 2008 5:30 pm
Forum: Announcement
Topic: uPatcher - The FREEWARE Update Patcher
Replies: 3
Views: 3052

Joakim Christiansen wrote:Since you're kinda "new" in this forum, maybe you should post a package without the installer too?

Because some of us probably only install stuff from users we have gotten to know and trust.
http://www.softpedia.com/progClean/uPat ... 12587.html ;).
by sharkbate24
Fri Oct 31, 2008 10:17 am
Forum: Announcement
Topic: uPatcher - The FREEWARE Update Patcher
Replies: 3
Views: 3052

uPatcher - The FREEWARE Update Patcher

Hey everyone,

Just a simple project I have made. Be sure to read the Manual.pdf included though.

This is what your product user will see:
http://img112.imageshack.us/img112/2962/upatcherwl3.jpg

I hope someone finds it useful :D, thanks.

http://www.penguinbyte.com/apps/pbwebstor/files/513 ...
by sharkbate24
Thu Oct 30, 2008 9:10 pm
Forum: Coding Questions
Topic: Reading everyline from a TXT?
Replies: 19
Views: 4919

srod wrote:#PB_Editor_ReadOnly

Well it should work fine with a text gadget. I'd be interested in taking a look at the text file if possible.
Got it, thanks.

The only content in the TXT file is:

Code: Select all

Product Name:

Update Version:

Comments:
Thanks.
by sharkbate24
Thu Oct 30, 2008 9:07 pm
Forum: Coding Questions
Topic: Reading everyline from a TXT?
Replies: 19
Views: 4919

srod wrote:Can you post a link to the text file? Don't post the text - I need the raw file.
I changed the text box into an editor box, and it works fine, but how do I make an editor box read only?

Thanks.
by sharkbate24
Thu Oct 30, 2008 8:51 pm
Forum: Coding Questions
Topic: Reading everyline from a TXT?
Replies: 19
Views: 4919

Try the following. Any squares?

If OpenWindow(0, 0, 0, 270, 160, "TextGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered) And CreateGadgetList(WindowID(0))
TextGadget(0, 10, 10, 250, 60, "TextGadget Standard (Left)")
a$ = "line 1" + #CRLF$ + "line 2"
SetGadgetText(0, a$)
Repeat ...
by sharkbate24
Thu Oct 30, 2008 8:23 pm
Forum: Coding Questions
Topic: Reading everyline from a TXT?
Replies: 19
Views: 4919

Kaeru Gaman wrote:so there are additional chars in your textfile that can't be displayed properly.

... what kind of textfile is it?
Basically, where the new lines are, it's getting replaced by a square. It's a TXT file. The gadget is a text box.

Thanks.
by sharkbate24
Thu Oct 30, 2008 8:15 pm
Forum: Coding Questions
Topic: Reading everyline from a TXT?
Replies: 19
Views: 4919

The code I have so far is:
While Eof(#UpdateInfo) = 0
updateinfo$ = ReadString(#UpdateInfo) + #CRLF$
Wend

SetGadgetText(#String_1, updateinfo$)
in every loopturn you completely overwrite the previous line.
if you want to add up lines, you have to use a "+", not "="

Thanks guys. Yeah, I ...
by sharkbate24
Thu Oct 30, 2008 7:59 pm
Forum: Coding Questions
Topic: Reading everyline from a TXT?
Replies: 19
Views: 4919

Now now Kaeru, what kind of help is that? tut tut!

@sharkbate24 : read the ****ing manual!

:twisted:

Only kidding; do what ts-soft suggests and append each read string to a string variable with #CRLF$ added to each string and then, when you've read all the data, use SetGadgetText() etc ...
by sharkbate24
Thu Oct 30, 2008 7:44 pm
Forum: Coding Questions
Topic: Reading everyline from a TXT?
Replies: 19
Views: 4919

Reading everyline from a TXT?

Hey everyone,

So I have a TXT file with 3 lines in it. I use SetGadgetText to put the txt in, but for some reason, only the last line is being added.

Any idea's what script I should use?

I'm using While Eof = 0.

Thanks.
by sharkbate24
Thu Oct 30, 2008 6:26 pm
Forum: Coding Questions
Topic: Create EXE?
Replies: 10
Views: 2880

Create EXE?

Hello everyone,

I want to have a go at making an Update Patcher, where the user can create patches for his program / game. I want to know how I can go abouts creating an EXE file from a program I create, after the user presses a button?

Thanks everyone.
by sharkbate24
Thu Oct 23, 2008 11:05 pm
Forum: Coding Questions
Topic: Creating a Printer Driver?
Replies: 4
Views: 1091

Rook Zimbabwe wrote:And you are dead set against using PurePDF?
Good question haha. I'm really interested in creating a PDF converter, and would like to. I'm very much inspired by PDFCreator, and want to give it a shot.

Thanks.
by sharkbate24
Thu Oct 23, 2008 10:50 pm
Forum: Coding Questions
Topic: Creating a Printer Driver?
Replies: 4
Views: 1091

Creating a Printer Driver?

Hello everyone,

I'm trying to create a Virtual PDF Printer that prints out documents in a PDF format using the Ghostscript Library. I know how to convert PS to PDF, but I'm stuck on how to create a Printer Driver to generate that postscript. Has anyone got any idea's?

Thanks.