Search found 65 matches

by Deluxe0321
Fri Nov 01, 2013 11:43 am
Forum: Feature Requests and Wishlists
Topic: Hints for the OpenGL subsystem
Replies: 13
Views: 7162

Re: Hints for the OpenGL subsystem

Windows 8.1 Pro with latest AMD beta drivers
Win x86
ATI Technologies Inc.
AMD Radeon HD 7800 Series
4.2.12422
Debug Context is OFF
ColorBufferBits = 32
DepthBufferBits = 24
StencilBufferBits = 8
AccumBufferBits = 0
by Deluxe0321
Fri Oct 25, 2013 11:00 pm
Forum: Tricks 'n' Tips
Topic: My TAR extraction routines
Replies: 11
Views: 3641

Re: My TAR extraction routines

Maybe this will help you:
http://www.purebasic.fr/english/viewtop ... 0&p=419000

It's tar.gz but the tar part (inside OpenTarGz(File.s) procedure) should explain how the tar format works.
by Deluxe0321
Sat Sep 28, 2013 3:16 am
Forum: Off Topic
Topic: Instacode, show your most beatiful code images
Replies: 0
Views: 585

Instacode, show your most beatiful code images

Servus (bavarian hi), a friend of mine send me a interesting link to a very funny web site. http://instacod.es/. I assume some of you already know about this web site. Let's post the "most beautiful" code here by using the instacode filters, and we will vote about the most, respectively be...
by Deluxe0321
Fri Sep 20, 2013 10:05 pm
Forum: Coding Questions
Topic: libcurl and unicode
Replies: 10
Views: 2244

Re: libcurl and unicode

@Shardik
Lucky you, because I definitly can confirm it. ;)
See: http://www.purebasic.fr/english/viewtop ... 15&t=52954

Thank you!
by Deluxe0321
Thu Aug 29, 2013 12:01 pm
Forum: Feature Requests and Wishlists
Topic: Different source code options for different OS!
Replies: 4
Views: 663

Re: Different source code options for different OS!

I assume Lebostein meant the compiler settings (Icon, Version, "applocation", etc.) for each OS - not the code itself. Currently you need to redefine these settings every time if you switch the OS. I recommend to use a Purebasic project in order to define a "compile-target" for e...
by Deluxe0321
Fri Aug 02, 2013 4:29 pm
Forum: Off Topic
Topic: Cloud computing
Replies: 7
Views: 1558

Re: Cloud computing

Usefull commands/librarys for PB Cloud Computing: Here ;) Just as PMV wrote, that depends on the subject. The "Could" is nothing else than (mostly) scalable software behind a array of servers with some kind of load balancer. I personally run some PB-Applications as CGI behind a ngix http-s...
by Deluxe0321
Thu Aug 01, 2013 4:48 pm
Forum: Announcement
Topic: PureBasic 5.20 beta 20 is out
Replies: 360
Views: 114530

Re: PureBasic 5.20 beta 8 is ready to test !

NikitaOdnorob98 wrote:
Debug output is now an editorgadget()
Great! :) :)
awesome :!: :D
by Deluxe0321
Wed Jul 31, 2013 4:35 pm
Forum: Coding Questions
Topic: I'm having problem with the include file command
Replies: 20
Views: 3631

Re: I'm having problem with the include file command

@spikey A lib import does not exclude the usage of a dll. You can create an lib for/from a dll without a problem (static vs. dynamic imports). I recommend to use ts-softs Lib2PBImport ( http://www.purebasic.fr/english/viewtopic.php?f=27&t=52712 ) to check if the "functions" are really ...
by Deluxe0321
Sat Jul 27, 2013 4:38 pm
Forum: Tricks 'n' Tips
Topic: tar.gz Module
Replies: 8
Views: 3113

Re: tar.gz Module

Sounds like a permission issue - Run in Administrator Mode (Compilier flag) - or check if any Anti Virus is blocking it.

Thank you!
by Deluxe0321
Sat Jul 27, 2013 11:06 am
Forum: Tricks 'n' Tips
Topic: tar.gz Module
Replies: 8
Views: 3113

Re: tar.gz Module

And only x86 , you forgot to say ;) That's true, I tried to include x64 functionality, but sadly the import throws strange errors : ;x64 zlib import ImportC "oldnames.lib" : EndImport EnableASM !extrn __imp_vsnprintf !public __imp_vsnprintf DisableASM ImportC "zlib.lib" gzopen.i...
by Deluxe0321
Fri Jul 26, 2013 10:20 pm
Forum: Tricks 'n' Tips
Topic: tar.gz Module
Replies: 8
Views: 3113

tar.gz Module

A Module to access, read and extract tar.gz files. Only tested on Windows, let me know how it works with other OS. ;only in Ascii Mode for now.. DeclareModule TarGZ #TAR_RECORDSIZE = 512 #TAR_NAMESIZE = 100 #TAR_TUNMLEN = 32 #TAR_TGNMLEN = 32 Structure tar_gz File.s Size.i EndStructure Structure gzF...
by Deluxe0321
Sat Jul 20, 2013 12:56 pm
Forum: Coding Questions
Topic: Modules. What are they!?
Replies: 39
Views: 4223

Re: Modules. What are they!?

@TI-994A Best example so far, that demonstrates my "confusion". I personaly love Purebasic because it gives me a great possiblity to write fast and !working! prototype code without having the overhead of, let's say, Java or C#. Fully understandable that clean and well declared code is usua...
by Deluxe0321
Fri Jul 19, 2013 7:47 pm
Forum: Coding Questions
Topic: Modules. What are they!?
Replies: 39
Views: 4223

Re: Modules. What are they!?

@Fred I like the Black Box concept, that's not the question - that indicates and forces us to use a specific style - but I can't understand how "::Var" is breaking something. We could have a MAIN namespace and the namespace of the diffrent modules. I think this would help to write much bet...
by Deluxe0321
Fri Jul 19, 2013 3:22 pm
Forum: Coding Questions
Topic: Modules. What are they!?
Replies: 39
Views: 4223

Re: Modules. What are they!?

@TI-994A Thank you for the examples. Anyway, currently I need to redefine these constants/procedures in every module I intent to use it. This causes trouble, for example by using a data section: ;Workarround: ;DeclareModule GlobalConst ; #XPATH = #PB_Compiler_Home + "Examples\3D\Data\" ;En...