Search found 19 matches

by Sensphere
Wed Apr 14, 2004 3:34 pm
Forum: Announcement
Topic: Error with 3.90 updated from 3.81
Replies: 10
Views: 3571

Got the solution...

I have to delete the WinConstantsToPB.Res in Residents\ and Gadget in PureLibraries\ - then it works!
by Sensphere
Tue Apr 13, 2004 4:01 pm
Forum: Announcement
Topic: Error with 3.90 updated from 3.81
Replies: 10
Views: 3571

Fred wrote:It's WinPBConstant.res files in the Resident\ folder which need to be deleted.
I got no file called "WinPBConstand.res" in my Resident\ folder!?! The only file similar is "WinConstantsToPB.Res" and if i delete it the error still occur.
by Sensphere
Tue Apr 13, 2004 2:39 pm
Forum: Announcement
Topic: Error with 3.90 updated from 3.81
Replies: 10
Views: 3571

Error with 3.90 updated from 3.81

Hi Fred,

new Version 3.90 quits right after start with this
text in a Message Box:

Constant already declared with a different value: #FILE_ATTRIBUTE_ENCRYPTED

I updated from 3.81 to 3.90 - any idea what it is?

tia,
Heiko
by Sensphere
Wed Feb 18, 2004 12:17 pm
Forum: Linux
Topic: Need Help: Servlet2Cgi or Servlet2Somewhat communication
Replies: 0
Views: 1569

Need Help: Servlet2Cgi or Servlet2Somewhat communication

Hi there,

i made a servlet in java which should now be extended with some new financial calculations. But i won't integrate them in the servlet directly because it could be decompiled easily (using e.g. decafe) and there are no obfuscators out there able to protect java code properly.
If posible i ...
by Sensphere
Wed Jun 25, 2003 12:52 pm
Forum: Tricks 'n' Tips
Topic: Stock History Example
Replies: 7
Views: 3475

I tried this code with PB 3.71 Beta and it will crash at this line:

Code: Select all

Dim Stock$(65)
BTW: I'm under Windows NT4 SP6

-sensphere
by Sensphere
Thu Jun 19, 2003 9:17 pm
Forum: Coding Questions
Topic: How to use MSXML
Replies: 1
Views: 1113

How to use MSXML

Hi

Does anyone have some experience with the use of MSXML from
Purebasic? If someone got working examples with other parsers
it would be nice if you could post them too.
by Sensphere
Wed Jun 18, 2003 12:50 pm
Forum: Coding Questions
Topic: How to POST Formdata to a Webserver
Replies: 2
Views: 1588

How to POST Formdata to a Webserver

Hi,

Does anybody know how to POST data to a Webserver like
Formdata from a webpage? Or is this not possible with pb?

I would like to do a login to a webservice by sending the
user/pass using POST (not GET for security reasons).

I know how to make it with GET but i would prefer POST if
possible ...
by Sensphere
Sun Jun 15, 2003 12:15 am
Forum: Linux
Topic: can't compile on linux
Replies: 7
Views: 6013

Fred wrote:Did you install fasm ?
Hi Fred,

everything installed right - the sourcecode was wrong.

I found some very strange bugs in the compiler
of pb 3.50 for linux - will write a report in the next few days.
by Sensphere
Thu Jun 12, 2003 8:21 pm
Forum: Linux
Topic: can't compile on linux
Replies: 7
Views: 6013

@fsw

yes, i am logged in as root
by Sensphere
Thu Jun 12, 2003 4:42 pm
Forum: Coding Questions
Topic: Trouble compliling under Linux
Replies: 0
Views: 811

Trouble compliling under Linux

I get this error when i try to build my project under
linux (suse 8.1):

******************************************
PureBasic Linux x86 v3.50
******************************************

Loading external modules.....
Starting compilation......
1743 lines processed.
Creating the executable.
gcc ...
by Sensphere
Thu Jun 12, 2003 4:40 pm
Forum: Linux
Topic: can't compile on linux
Replies: 7
Views: 6013

can't compile on linux

I get this error when i try to build my project under
linux (suse 8.1):

******************************************
PureBasic Linux x86 v3.50
******************************************

Loading external modules.....
Starting compilation......
1743 lines processed.
Creating the executable.
gcc ...
by Sensphere
Wed Jun 11, 2003 9:22 pm
Forum: Coding Questions
Topic: Pointers to variable or structure?
Replies: 3
Views: 1207

Re: Pointers to variable or structure?

Ok, this is working :D - but isn't it a bit weird - because a pointer to a long value shouldn't be a structure?!

In the second is a bug: it should call debug a not a\x

Try this:
a.l
*b.long
a = 0
*b = @a
*b\l = -1

Debug a


Isn't it possible to get a pointer to a long variable (or anything ...
by Sensphere
Wed Jun 11, 2003 7:52 pm
Forum: Coding Questions
Topic: Pointers to variable or structure?
Replies: 3
Views: 1207

Pointers to variable or structure?

Why does this work:
a.POINT
*b.POINT
a\x = 0
*b = @a
*b\x = -1
CallDebugger
Debug a\x

Changed the x value of a successfully!

But this one will not:
a.l
*b.l
a = 0
*b = @a
*b = -1
CallDebugger
Debug a\x


Isn't it possible to get a pointer to a long variable (or anything other than a structure ...
by Sensphere
Tue Jun 10, 2003 8:47 pm
Forum: Coding Questions
Topic: How to format strings or numbers???
Replies: 7
Views: 2135

SkunkLib

Thanks Fangbeast & Freak

i tried the original Lib from Skunk - but the one modified
by Danilo works perfekt with PB 3.70 :P
by Sensphere
Tue Jun 10, 2003 12:18 pm
Forum: Coding Questions
Topic: How to format strings or numbers???
Replies: 7
Views: 2135

Thanks for the quick answers :D

I tried Mr. Skunks library but unfortunately it seems that
Day() ist declared in another lib too (in date i guess).