PureFORM 1.99 (yet another FORM designer)
Moderator: gnozal
Hi,
at fiirst - i love PureFORM !!
But i get some Problems when using CodeInfusion. If i change the code for 2 or more Events at once (wothout closing the CodeInfusion-Editor after each change), it takes only the last Change.
Also it would be a great point for CodeInfusion - after Gadget-Creation.
Keep up the good Work !
Mike
at fiirst - i love PureFORM !!
But i get some Problems when using CodeInfusion. If i change the code for 2 or more Events at once (wothout closing the CodeInfusion-Editor after each change), it takes only the last Change.
Also it would be a great point for CodeInfusion - after Gadget-Creation.
Keep up the good Work !
Mike
Sorry, some more (small) bugs :
* There is a difference between the Code when save and when use 'complete code'. So i use this completed code mostly. But then all my windows are opened, disable image-gadgets are enabled....
* When using #PB_Any for Gadget-creation, i became probs with the results. (Pb4.10B2) So after open and close - and open again - The Background of my Text-Gadgets are not more transparent. Looks like a bug in PureColor...
One idea to make the Coding in PureForm easier is to add all Procedures as entry in the CodeFusion-Overview. So i can find my procedure with a simple click.
Mike
* There is a difference between the Code when save and when use 'complete code'. So i use this completed code mostly. But then all my windows are opened, disable image-gadgets are enabled....
* When using #PB_Any for Gadget-creation, i became probs with the results. (Pb4.10B2) So after open and close - and open again - The Background of my Text-Gadgets are not more transparent. Looks like a bug in PureColor...
One idea to make the Coding in PureForm easier is to add all Procedures as entry in the CodeFusion-Overview. So i can find my procedure with a simple click.
Mike
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
It's not a bug.Molchyn wrote:gnozal
in last version String gadget if I add PATH in Default gadget text- it's remove all slashes its mean c:\Program Files\PureBasic\Examples\PureZIP\_TEST_4.pb
looks like c:Program FilesPureBasicExamplesPureZIP_TEST_4.pb
The escape characters \n [CRLF] and \t [TAB] are supported (handy for multiline gadgets), so if you want a '\' you have to enter '\\'.
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, it's by design.neotoma wrote:* There is a difference between the Code when save and when use 'complete code'. So i use this completed code mostly. But then all my windows are opened, disable image-gadgets are enabled....
The complete code in the codeview opens all windows, for test purpose when you use F6/F7.
The complete saved code only opens the first window or the main window (if defined).
Can't confirm this here.neotoma wrote:* When using #PB_Any for Gadget-creation, i became probs with the results. (Pb4.10B2) So after open and close - and open again - The Background of my Text-Gadgets are not more transparent. Looks like a bug in PureColor...
Maybe some code would help.
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 206)
Changes :
- fixed potential crash in 'Include images as hexadecimal data' feature
- fixed lost code changes in code infusion in some particular cases
Changes :
- fixed potential crash in 'Include images as hexadecimal data' feature
- fixed lost code changes in code infusion in some particular cases
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
That give some problems, when using codefusion. If i use the GadgetEvent (click) for a Button, to open the next Window - i can't test it.gnozal wrote:Yes, it's by design.neotoma wrote:* There is a difference between the Code when save and when use 'complete code'. So i use this completed code mostly. But then all my windows are opened, disable image-gadgets are enabled....
The complete code in the codeview opens all windows, for test purpose when you use F6/F7.
The complete saved code only opens the first window or the main window (if defined).
Maybe it's a general problem. But in best case i thoght to code the main-window-flow in PureFORM and that covers the complete VIEW+CONTROL. And add some Main-Logic (Businesslogic) as MODEL vie PureBasic/JjaPBe. So i can have a strict sepearation between GUI and the Main-Code.
I tried to reproduce that problem, but without success.gnozal wrote:Can't confirm this here.neotoma wrote:* When using #PB_Any for Gadget-creation, i became probs with the results. (Pb4.10B2) So after open and close - and open again - The Background of my Text-Gadgets are not more transparent. Looks like a bug in PureColor...
Maybe some code would help.
BTW: One 'nice-to-have' thing would be a Color-Map for each Project. That stores the Colors in the Projevct. So i can use the same Colour for each button/Window ect. withot writing down the Hex-Code.....
Nike
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
I just tried and it's okCruster wrote:The download is showing as build 205 and the date is 30/06/07. Or am I being too quick to download this?
Code: Select all
c:\Internet.tmp\PureFORM.zip\PureFORM.chm 325 797 09/06/2007 10:45 -a--c:\Internet.tmp\PureFORM.zip\PureFORM.exe 256 060 02/07/2007 16:36 -a--
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
Changes :
- the complete code in the codeview opens all project windows, except if some code has been defined in code infusion (then only the first or main window is opened).
- the color requester custom colors (16) are now saved for each project (if defined)
Changes :
- the complete code in the codeview opens all project windows, except if some code has been defined in code infusion (then only the first or main window is opened).
- the color requester custom colors (16) are now saved for each project (if defined)
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Great Update - this helps a lot !
Another mini-bug - if i use a image as Background for more than one Window, PureForm generates a IncludeBinary for each Window, but it is the same File.... This makes the Application really fat
Mike
Another mini-bug - if i use a image as Background for more than one Window, PureForm generates a IncludeBinary for each Window, but it is the same File.... This makes the Application really fat

Code: Select all
IncludeBinary "T:\Images\Gui\_wizard.jpg"
BackgroundImage_WindowNewProject:
IncludeBinary "T:\Images\Gui\_wizard.jpg"
BackgroundImage_WindowSettings:
IncludeBinary "T:\Images\Gui\_wizard.jpg"
It's always been that wayneotoma wrote:Great Update - this helps a lot !
Another mini-bug - if i use a image as Background for more than one Window, PureForm generates a IncludeBinary for each Window, but it is the same File.... This makes the Application really fat
MikeCode: Select all
IncludeBinary "T:\Images\Gui\_wizard.jpg" BackgroundImage_WindowNewProject: IncludeBinary "T:\Images\Gui\_wizard.jpg" BackgroundImage_WindowSettings: IncludeBinary "T:\Images\Gui\_wizard.jpg"

I Stepped On A Cornflake!!! Now I'm A Cereal Killer!