Search found 6 matches

by phunk
Sun Feb 08, 2004 11:36 pm
Forum: Feature Requests and Wishlists
Topic: ProgramParameter()
Replies: 0
Views: 1103

ProgramParameter()

Rather than using the existing way, and calling it over and over to return parameters, why not make it return an array?

For example:

Code: Select all

Dim parms.s(9)
parms = ProgramParameter()
That way, you could just call parms(0), parms(1), etc.[/code]
by phunk
Sat Feb 07, 2004 10:17 pm
Forum: Coding Questions
Topic: Ordering?
Replies: 1
Views: 926

Ordering?

Are United States dollars accepted by the PureBASIC developers? I'm quite interested in ordering it, and I've also converted the costs. 59 euro is equal to 73.98 dollars, so I guess my question is, are dollars accepted as valid payment?
by phunk
Sun Feb 01, 2004 4:06 am
Forum: Coding Questions
Topic: Help with ReceiveNetworkData()
Replies: 1
Views: 1052

Help with ReceiveNetworkData()

I can't figure out this error... could someone help me?


If OpenConsole()
If InitNetwork() = 0
End
EndIf

PrintN("TClient v0.1 by phunk")
PrintN("")
Print("What server would you like to connect to? ")
server$ = Input()
PrintN("")
Print("What port would you like to connect to? ")
port ...
by phunk
Wed Jan 21, 2004 9:08 pm
Forum: General Discussion
Topic: Older versions of PB...
Replies: 19
Views: 6106

Hehe... first off, I hate Xbox, and I'd never play it. Ever. Not because I'm anti-Microsoft, but because the games library sucks and the controller is awkward as hell. (I'm still playing Nintendo 64, and the original NES, because they rock)

I guess I could try the birthday ploy, but I'd rather use ...
by phunk
Sun Jan 18, 2004 8:34 am
Forum: General Discussion
Topic: Older versions of PB...
Replies: 19
Views: 6106

Older versions of PB...

This is just a suggestion, but here goes nothing...

I'm 15, and ~$60 in Euro is hard to come by, especially since I live in the United States. I love PureBasic with all of my heart (as far as programming goes), but I just can't afford to pay the fee. So I was wondering, maybe make older versions of ...
by phunk
Sun Jan 18, 2004 8:21 am
Forum: Feature Requests and Wishlists
Topic: File reading edits...
Replies: 1
Views: 960

File reading edits...

I think a slight edit to functions like ReadString() would be nice.

I think that adding a parameter to it, such as a line number, would help as well. Rather than looping through a whole file, you could go right to a specific line with ReadString(lineNumber).

Also, a numLines(filename) function ...