Search found 4 matches

by FGK
Sun Feb 12, 2012 2:23 pm
Forum: Feature Requests and Wishlists
Topic: OS depending Pathseperator() command
Replies: 6
Views: 1267

OS depending Pathseperator() command

Hello everybody,

I would like to have a simple build in function for getting the correct pathseperator for the used OS.

Today you have to use CompilerIf to select the right seperator or build up a macro for that case.

How nice could it be to write following?

PathName.s = Drive ...
by FGK
Fri May 27, 2011 10:04 pm
Forum: Feature Requests and Wishlists
Topic: What is about a Layout-Manager?
Replies: 7
Views: 1898

What is about a Layout-Manager?

Hello purebasic-team,

I would appreciate if a kind of Layout-Manager could included to Purebasic. in a
similar way like java oder TK/Tcl.
This would help to arange Gadgets more easy and proper especially when the
window will be resized. All Gadgets will maybe resized and rearranged according
the ...
by FGK
Thu May 22, 2008 8:12 pm
Forum: Feature Requests and Wishlists
Topic: Layoutmanager for PB?
Replies: 7
Views: 2208

Layoutmanager for PB?

Hi folks,

what's about the idea to integrate layoutmanagers in PB to place
the gadgets with? This would be an nice enhancement for the
gadget library and simplify the GUI handling due the possibility
of resizing and positioning the gadgets on its own.

Whats your opinion?

FGK
by FGK
Sun Oct 02, 2005 12:11 pm
Forum: Coding Questions
Topic: Grid Gadget - Is there going to be one?
Replies: 25
Views: 6463

@fiver @LuckyLuke

to access the Griddata with the #GM_GETCELLDATA Message
the Position of cols und rows is calculated like this:



RetValue.l = 0 ; Holds the Data (ptr for String or Value)
Pos= (row << 16) + col
SendMessage_(hGrid,#GM_GETCELLDATA,Pos,@RetValue)



@javabean

You invoke the ...