Page 66 of 103

Posted: Mon May 26, 2008 12:51 pm
by gnozal
Update (build 318)

Changes :
- this release should fix the cosmetic issue (posted by Flype) when dragging a gadget outside it's parent limits

Posted: Sat May 31, 2008 9:57 am
by gnozal
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

Posted: Sun Jun 08, 2008 1:12 pm
by tinman
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?

Posted: Mon Jun 09, 2008 8:00 am
by gnozal
Update (build 322)

Changes :
- fixed Undo issue posted by Tinman

Posted: Wed Jun 11, 2008 1:20 am
by byo
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.

Posted: Wed Jun 11, 2008 10:29 am
by gnozal
Update (build 323)

Changes :
- fixed recursive event problem posted by byo

Posted: Wed Jun 11, 2008 11:55 am
by byo
Fix confirmed. Thanks a lot. :D

Posted: Sun Jun 15, 2008 12:29 pm
by tinman
Thank you for the fix gnozal.

ParentWindowID

Posted: Fri Jun 27, 2008 6:29 pm
by helpy
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?

Code: Select all

Procedure OpenWindow_winStatus()
  winStatus = OpenWindow(#PB_Any, ............................... , winMain)
;...
cu, guido

Re: ParentWindowID

Posted: Sat Jun 28, 2008 2:15 pm
by gnozal
helpy wrote:Is it possible to have the winMain as ParentWindow of the winStatus window?
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].

Re: ParentWindowID

Posted: Sat Jun 28, 2008 4:36 pm
by helpy
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].
cool !! Danke ... ähhh ... Thank you!

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

Posted: Fri Jul 04, 2008 9:58 am
by xaby
Thanks for new release.

If I use the "Panel-Gadget" all is looking nice.
It looks also beautyful if I make a check at the "[ ] Enable (PureCOLOR and/or PB4)

But, if I clear the check my "Panel-Gadget" will be white and also my "Gadget properties"

This problem I saw only with the "Panel-Gadget"

Posted: Fri Jul 04, 2008 10:48 am
by gnozal
xaby wrote:...
But, if I clear the check my "Panel-Gadget" will be white and also my "Gadget properties"
It's a class issue.
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.

Posted: Mon Jul 07, 2008 3:47 pm
by Perkin
Thanks for this great tool.

I've just read through all 66 pages of this thread, my eyes look like :shock: .

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.

Or do I just have to edit the source and set them 'manually'

Thanks
Perkin

Posted: Mon Jul 07, 2008 4:51 pm
by gnozal
Perkin 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.
No
Perkin wrote:Or do I just have to edit the source and set them 'manually'
Yes.
Note that you can use code infusion.
Right-click on window -> Code infusion -> Window Event -> Window creation -> Add some code like : SetGadgetState(#MyCheckBox, #True)