Search found 722 matches

by Hroudtwolf
Sun Dec 15, 2013 3:12 pm
Forum: Feature Requests and Wishlists
Topic: IDE - Git integration
Replies: 2
Views: 2054

IDE - Git integration

Hi,

I think it would be very handy to have a Git integration in the PB IDE.
It could be implemented in the project manager feature.

Example:
Image

Best regards
Wolf
by Hroudtwolf
Sun Sep 08, 2013 9:32 am
Forum: Bugs - IDE
Topic: [5.20 b17] PureBasic IDE - Resize Bug after fullscreen
Replies: 1
Views: 2002

[5.20 b17] PureBasic IDE - Resize Bug after fullscreen

Hi,

There is a problem for me, after running fullscreen applications from IDE.
After fullscreen mode, the inner IDE containers doesn't resize correctly.

Screenshot:
https://dl.dropboxusercontent.com/u/57636249/pb-ide-after-fullscreen.png

Best regards
Wolf

Infos about my system:
- XFCE 4.8 ...
by Hroudtwolf
Tue Aug 20, 2013 10:22 pm
Forum: Linux
Topic: A lot of GTK warnings on starting IDE
Replies: 2
Views: 3025

Re: A lot of GTK warnings on starting IDE

Thank you.
This works for me.
by Hroudtwolf
Fri Jul 05, 2013 3:04 pm
Forum: Linux
Topic: [PB 5.2b5] IDE is not usable after copy or paste
Replies: 6
Views: 4838

Re: [PB 5.2b5] IDE is not usable after copy or paste

Hi,

Can't confirm the "freeze" bug on Ubuntu 12.10.
Maybe, it is helpful to post the terminal output to your bug report.

But I can confirm the debugger problem for at least after starting the sprite demos.

Best regards
Wolf
by Hroudtwolf
Wed Jul 03, 2013 11:42 am
Forum: Feature Requests and Wishlists
Topic: SetSpriteOffset3D(#sprite,x,y)
Replies: 4
Views: 1371

Re: SetSpriteOffset3D(#sprite,x,y)

Nice idea.
+1
by Hroudtwolf
Tue Jul 02, 2013 7:03 pm
Forum: Linux
Topic: A lot of GTK warnings on starting IDE
Replies: 2
Views: 3025

A lot of GTK warnings on starting IDE

Hi,

I started the IDE from terminal. So I saw a lot of warning messages.
Here we go...
hroudtwolf@hroudtwolf-blackbox:~/Programme/purebasic/purebasic/compilers$ ./purebasic
`menu_proxy_module_load': ./purebasic: undefined symbol: menu_proxy_module_load

(purebasic:13579): Gtk-WARNING **: Failed to ...
by Hroudtwolf
Sun Jun 30, 2013 7:13 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] #PB_Compiler_Module
Replies: 2
Views: 1285

[Implemented] #PB_Compiler_Module

Hi,

My little feature request is a "#PB_Compiler_Module" constant.
Like #PB_Compiler_Procedure contains the name of the current procedure, #PB_Compiler_Module should contain the name of the current module.

Best regards
Wolf
by Hroudtwolf
Fri Oct 09, 2009 5:21 am
Forum: Tricks 'n' Tips
Topic: [PB 4.31] Zoomable random terrain
Replies: 9
Views: 5581

Re: [PB 4.31] Zoomable random terrain

Respect! Nice work.
Thank you for sharing.

Regards
Wolf
by Hroudtwolf
Wed Oct 07, 2009 11:05 am
Forum: Tricks 'n' Tips
Topic: Luhn Check - Credit Card Checker Validation
Replies: 5
Views: 10539

Re: Luhn Check - Credit Card Checker Validation

Hi,

Nice implementation.
Thank you for sharing.

A few month ago, I made an implementation of creditcard ID checking via regular expressions.
http://purebasic-lounge.com/viewtopic.p ... visa#59234
Maybe not the best way, but it is another one.

Best regards
Wolf
by Hroudtwolf
Fri Oct 02, 2009 1:12 am
Forum: Feature Requests and Wishlists
Topic: SizeOf() in Asm directives
Replies: 1
Views: 1404

Re: SizeOf() in Asm directives

Hi,

Maybe this could help.

Code: Select all

#A = SizeOf(POINT)

EnableASM
  PUSH #A
DisableASM
Seems to work, here.

Regards
Wolf
by Hroudtwolf
Mon Sep 28, 2009 2:48 pm
Forum: Tricks 'n' Tips
Topic: Ownerdrawn resizable window frames
Replies: 12
Views: 10102

Re: Ownerdrawn resizable window frames

Take this.... :)

;===================================================================
; Program: Ownerdrawn Resizable Window Frame Demo
; Author: Lloyd Gallant (netmaestro)
; Date: August 28, 2007
; Target OS: Microsoft Windows All (I think)
; Target Compiler: PureBasic 4.xx and later
; License ...
by Hroudtwolf
Fri Sep 25, 2009 6:46 pm
Forum: Tricks 'n' Tips
Topic: Remove the extension part of a file.
Replies: 50
Views: 10394

Re: Remove the extension part of a file.

@Kale
Facts do not cease to exist because they are ignored.
Aldous Huxley
by Hroudtwolf
Thu Sep 24, 2009 8:20 pm
Forum: Tricks 'n' Tips
Topic: Remove the extension part of a file.
Replies: 50
Views: 10394

Re: Remove the extension part of a file.

@Kale

Amazing .
Keep cool.

Instead, we could have an interessting discussion about it.
by Hroudtwolf
Thu Sep 24, 2009 6:48 pm
Forum: Tricks 'n' Tips
Topic: Remove the extension part of a file.
Replies: 50
Views: 10394

Re: Remove the extension part of a file.

Explain. I don't understand why you've coded your procedure like that.

Your procedure creates the regex object new on each call.
To use the same object ID initiates the objectmanager to destroy the old object and create a new again and again.
Thats wasting of CPU power.
I know... it is not that ...
by Hroudtwolf
Thu Sep 24, 2009 5:01 am
Forum: Tricks 'n' Tips
Topic: Remove the extension part of a file.
Replies: 50
Views: 10394

Re: Remove the extension part of a file.

It is just a short memory leak @Kale ^^

My recommendation.
Procedure.s RemoveExtension(sFilename.s)
Static idRegEx.i

; Object recycling.
If Not (idRegEx)
idRegEx = CreateRegularExpression(#PB_Any , "(?<!\A)\.[\w]+\Z")
If Not (idRegEx)
ProcedureReturn sFilename
EndIf
EndIf ...