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 300)
Changes :
- fixed crash while editing gadget text if UI = classic and gadgetlist = disabled
Changes :
- fixed crash while editing gadget text if UI = classic and gadgetlist = disabled
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
First, great job
I have a feature request : a easier way to place gadget
Dock gadget > Top, Bottom, Left, Right
It's mainly to place gadget inside usable client area.

I have a feature request : a easier way to place gadget
Dock gadget > Top, Bottom, Left, Right
It's mainly to place gadget inside usable client area.
- For example 'Dock gadget > Top' will update the gadget position like that
x = 0
y = 0 + toolbar height (if exists)
w = ... current window width
h = ... unchanged - For example 'Dock gadget > Bottom' will update the gadget position like that
x = 0
y = window height - h - statusbar height (if exists)
w = ... current window width
h = ... unchanged

-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
I don't fully understand : Editor = CodeView ? Main panel = ?eddy wrote:Sometimes, the main panel of your editor is resized when the editor is restored.
And I can't fix its size. I tried the 'rearrange' option but the main panel size is not fixed by this.
Could you post the steps to reproduce the problem ?
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Featue request
@gnozal
Thank you for the dock gadget feature. Would it be possible, in some distant future, to add one more option. Something like Dock gadget -> Fill to have the gadget fill the entire client area.
Regards,
Storck
Thank you for the dock gadget feature. Would it be possible, in some distant future, to add one more option. Something like Dock gadget -> Fill to have the gadget fill the entire client area.
Regards,
Storck
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Could not reproduce the problem, tried with multiple forms under NT4 and XP. Changed some code, don't know if it helps though.eddy wrote:1 - create a project (mine contains a splitter gadget)
2 - minimize application
3 - restore application
Done.storck wrote:Would it be possible, in some distant future, to add one more option. Something like Dock gadget -> Fill to have the gadget fill the entire client area.
Download updated (build 302).
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:
Yes!!!! That's it!eddy wrote:'PURERESIZE Minimum size control' causes this problem. (In my example, the values are 600x600)
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
bug report
-build 309 1.99
1.when check "prepare multilanguage support" and select "procedure":
if purebasic was not install in "c:\program files",the temp language file will not be created
2.about window should be "modeless" like "visual designer",now it looks very strange
3.very hope for double-byte charset string support
(i have to use english name in title$ etc,and use multilanguage support for chinese)
1.when check "prepare multilanguage support" and select "procedure":
if purebasic was not install in "c:\program files",the temp language file will not be created
2.about window should be "modeless" like "visual designer",now it looks very strange
3.very hope for double-byte charset string support

-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Re: bug report
I have Purebasic not installed in 'Program files', and it works (the temp language file during compile/run is created).andyryu wrote:-build 309 1.99
1.when check "prepare multilanguage support" and select "procedure":
if purebasic was not install in "c:\program files",the temp language file will not be created
If PBversion <= 4.02, the temp language file is created in the PB 'Compilers' directory.
If PBversion > 4.02, the temp language file is created in windows temp directory [GetTempPath_()].
Since build 1, the 'About' window is a message requester, and therefore modal. What's the issue with this anyway ?andyryu wrote:2.about window should be "modeless" like "visual designer",now it looks very strange
Sorry, but some characters are used internally and in ini file as data separators, so they are not authorized.andyryu wrote:3.very hope for double-byte charset string support(i have to use english name in title$ etc,and use multilanguage support for chinese)
These are : #ProjectSeparator = "¶", #ListSeparator = "·", #ListItemSeparator = "¸".
And PureFORM is (still) written in PB3.94 anyway (not unicode capable).
So I guess multibyte compatibility is not for tomorrow.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
-
- New User
- Posts: 4
- Joined: Fri May 09, 2008 1:38 pm