PureFORM 1.99 (yet another FORM designer)
Moderator: gnozal
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Update (build 318)
Changes :
- this release should fix the cosmetic issue (posted by Flype) when dragging a gadget outside it's parent limits
Changes :
- this release should fix the cosmetic issue (posted by Flype) when dragging a gadget outside it's parent limits
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Update (build 321)
Changes :
- F6/F7 : now PureFORM adds the PBCompiler path to %PATH% before compile/run a form to ensure the PB DLLs are in the path
Changes :
- F6/F7 : now PureFORM adds the PBCompiler path to %PATH% before compile/run a form to ensure the PB DLLs are in the path
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
- tinman
- PureBasic Expert
- Posts: 1102
- Joined: Sat Apr 26, 2003 4:56 pm
- Location: Level 5 of Robot Hell
- Contact:
Hi,
If I enable the undo option and also have the file confirmation option, then I get a configrmation for every change to the form. It makes some things impossible.
For example, try to resize a gadget with these two options enabled.
I don't know if this is by design or not, but could you please remove the confirmation dialogs for saving the undo files?
If I enable the undo option and also have the file confirmation option, then I get a configrmation for every change to the form. It makes some things impossible.
For example, try to resize a gadget with these two options enabled.
I don't know if this is by design or not, but could you please remove the confirmation dialogs for saving the undo files?
If you paint your butt blue and glue the hole shut you just themed your ass but lost the functionality.
(WinXPhSP3 PB5.20b14)
(WinXPhSP3 PB5.20b14)
Hi, gnozal.
Thanks for this useful tool.
I'd like to report a bug though.
Everytime I try to MOVE a Frame3DGadget when this gadget is inside a ContainerGadget, PureFORM freezes and keeps consuming 46-50% of CPU and then I have to kill the process from the Task Manager.
[EDIT] After moving it I select the ContainerGadget and then it happens.
Thanks for this useful tool.
I'd like to report a bug though.
Everytime I try to MOVE a Frame3DGadget when this gadget is inside a ContainerGadget, PureFORM freezes and keeps consuming 46-50% of CPU and then I have to kill the process from the Task Manager.
[EDIT] After moving it I select the ContainerGadget and then it happens.
Proud registered Purebasic user.
Because programming should be fun.
Because programming should be fun.
ParentWindowID
I have two windows in a PureFORM project (winMain and winStatus). There is the main window (winMain) and a Status window which is only opened if it is necessary.
Is it possible to have the winMain as ParentWindow of the winStatus window?
Is there an option, which I can use, that the OpenWindow() function for winStatus wil use the option ParentWindowID?
cu, guido
Is it possible to have the winMain as ParentWindow of the winStatus window?
Is there an option, which I can use, that the OpenWindow() function for winStatus wil use the option ParentWindowID?
Code: Select all
Procedure OpenWindow_winStatus()
winStatus = OpenWindow(#PB_Any, ............................... , winMain)
;...
Windows 10 / Windows 7
PB Last Final / Last Beta Testing
PB Last Final / Last Beta Testing
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Re: ParentWindowID
You can specify a main window [Main menu -> Project -> Set main window] : the current window becomes the main project window, i.e. all other windows will be it's child windows ['ParentWindowID' optional parameter will be used for OpenWindow() in the generated code].helpy wrote:Is it possible to have the winMain as ParentWindow of the winStatus window?
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Re: ParentWindowID
cool !! Danke ... ähhh ... Thank you!gnozal wrote:You can specify a main window [Main menu -> Project -> Set main window] : the current window becomes the main project window, i.e. all other windows will be it's child windows ['ParentWindowID' optional parameter will be used for OpenWindow() in the generated code].
I was looking with full text search in the help file (F1) ... but the word "ParentWindowID" was not found, although it is in there!
Thank you for the help!
cu, guido
Windows 10 / Windows 7
PB Last Final / Last Beta Testing
PB Last Final / Last Beta Testing
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
It's a class issue.xaby wrote:...
But, if I clear the check my "Panel-Gadget" will be white and also my "Gadget properties"
As stated in the PureCOLOR help file, PureCOLOR uses SetClassLong() to color PanelGadgets, ContainerGadgets and PureScrollAreaGadgets.
This means that if you colorize one gadget, all gadgets within the same class will have the same colors.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
NoPerkin wrote:Is there anyway to set a checkbox gadget to ticked as default, also set which of a set of Option gadgets is set as default.
Yes.Perkin wrote:Or do I just have to edit the source and set them 'manually'
Note that you can use code infusion.
Right-click on window -> Code infusion -> Window Event -> Window creation -> Add some code like : SetGadgetState(#MyCheckBox, #True)
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).