Search found 8 matches

by MicroByte
Fri Nov 16, 2012 2:32 am
Forum: Tricks 'n' Tips
Topic: JSON encoder and decoder
Replies: 51
Views: 33298

Re: JSON encoder and decoder

This is just fantastic and exactly what i needed to get my php arrays into PB, Thank You :)
by MicroByte
Tue Aug 07, 2012 9:21 pm
Forum: Coding Questions
Topic: Change caption of default column of ListIconGadget
Replies: 2
Views: 1007

Re: Change caption of default column of ListIconGadget

use "SetGadgetItemText" with -1 for the row index :D
by MicroByte
Tue Jun 26, 2012 10:30 pm
Forum: Coding Questions
Topic: How to find reason for failed RenameFile()?
Replies: 2
Views: 780

Re: How to find reason for failed RenameFile()?

You can use the API function "GetLastError" with PB functions as they call the API (on windows), but i would use "MoveFile" if using API error checking .... just in case!!

;result = RenameFile("||.ext", "nofile2.ext")
result = MoveFile_("||.ext", "nofile2.ext")

Buffer.s = Space(4096)
Chars.l ...
by MicroByte
Thu Jun 21, 2012 1:12 pm
Forum: Tricks 'n' Tips
Topic: MindMap
Replies: 43
Views: 15066

Re: MindMap

Perfect, thanks for that, seems to work pretty well

FYI line 1765 in v1.76
by MicroByte
Wed Jun 20, 2012 8:59 am
Forum: Tricks 'n' Tips
Topic: MindMap
Replies: 43
Views: 15066

Re: MindMap

-Automatic calculation of the anchor point of the entity son.
For example, try to place the entity son above the parent entity.

Wow, perfect, i was making a bunch of small flowcharts with MindMap that shows my boss the basic workings of a web app im working on (template/database structure and ...
by MicroByte
Tue Jun 19, 2012 6:06 pm
Forum: Tricks 'n' Tips
Topic: MindMap
Replies: 43
Views: 15066

Re: MindMap

@falsam, i have tested this code on Windows 7 x86 and in my test all was working fine, and i agree, this is great code to learn from

Loving the new Canvas gadget, it has really spured the imagination of the forum gurus and some real nice stuff has come out of it, and going back to a comment on the ...
by MicroByte
Mon Jun 18, 2012 8:22 pm
Forum: Tricks 'n' Tips
Topic: MindMap
Replies: 43
Views: 15066

Re: MindMap

HI

This is shaping up to be a really useful tool, thanks for all your hard work
by MicroByte
Tue May 08, 2012 11:11 pm
Forum: Feature Requests and Wishlists
Topic: PureBasic Portable
Replies: 10
Views: 2446

Re: PureBasic Portable

you can do that yourself:


/P <Preferences file> loads/saves all the configuration to/from the given file
or
/NOEXT disables the registering of the .pb extension in the registry
/LOCAL puts all preferences in the PureBasic directory instead of the user profile location
/PORTABLE the same as ...