Search found 1088 matches

by ChrisR
Wed Mar 20, 2024 11:59 am
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 580
Views: 142755

Re: IceDesign GUI designer

Hi William, I'm not sure I understand, the change you had with a previous version. I haven't had any changes in this part for a while now ! For me, empty texts were always included, but I agree, they shouldn't be. There's little chance of an empty text being translated in another things. Just 2 line...
by ChrisR
Mon Mar 18, 2024 10:28 pm
Forum: Announcement
Topic: Chordian - An Omnichord Emulator
Replies: 10
Views: 788

Re: Chordian - An Omnichord Emulator

Very nice, with a very pleasing look, It's just a bit difficult to read the labels with the 800*600 window size I did make a few sounds for fun but I'm not a musician to play and enjoy it. Otherwise, FYI, outside the exe, I was able to compile Chordian with PB v6.04 by renamed: Base64Encoder() to Ba...
by ChrisR
Mon Mar 18, 2024 8:29 pm
Forum: Announcement
Topic: ProGUI V3 Alpha Sneak Peek!
Replies: 26
Views: 2170

Re: ProGUI V3 Alpha Sneak Peek!

Sounds very interesting, impressive, can't wait to see more, will be better than a mobile capture :wink:
Good progress to the alpha version.
by ChrisR
Mon Mar 18, 2024 1:21 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 580
Views: 142755

Re: IceDesign GUI designer

IceDesign has been updated in version 2.0.6 Fix the above bug reported by Storck. In procedure Resize_Window(), with a Menu, ToolBar or StatusBar, the line: WindowName_HeightIni - MenuHeight - ToolBarHeight - StatusBarHeight Must be written Only if at least one of the child gadgets has a proportion...
by ChrisR
Sat Mar 16, 2024 11:50 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 580
Views: 142755

Re: IceDesign GUI designer

Hi storck,
I didn't have time to look at it before but with your icef file, I reproduced the error, I'll fix it.
Thanks
by ChrisR
Thu Mar 14, 2024 6:59 pm
Forum: Feature Requests and Wishlists
Topic: case statements can have the same values?
Replies: 17
Views: 589

Re: case statements can have the same values?

Yes but with all the possible types of case expression, I don't see how it could be complete. J = 1 ; Can be a caculated variable, a field in a structured list... Select I Case 0 To 2 Debug "First Case 0" Case J Debug "Never fits because I = 0 here, and case J is already done, 0 To 2,...
by ChrisR
Thu Mar 14, 2024 6:20 pm
Forum: Feature Requests and Wishlists
Topic: case statements can have the same values?
Replies: 17
Views: 589

Re: case statements can have the same values?

:lol:
I can confirm that there's a bug. If I go second, I'll miss my coffee :wink:
by ChrisR
Thu Mar 14, 2024 12:18 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 580
Views: 142755

Re: IceDesign GUI designer

I just realized that your surprise is probably linked to my changing for "Proportional Size for All Gadgets" and "DPIAware" default values on the 1st use. Both options are now enabled by default on 1st use (without IceDesign.ini). When closing IceDesign, changed or not, the setti...
by ChrisR
Thu Mar 14, 2024 11:47 am
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 580
Views: 142755

Re: IceDesign GUI designer

Hi Cyllceaux, Thanks for sharing your .icef form, the right way to understand and reproduce :) That's because you have the "Proportional Size for All Gadgets" option enabled in the settings. "Proportional Size for All Gadgets" is a general option that takes priority over the Lock...
by ChrisR
Wed Mar 13, 2024 10:55 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 580
Views: 142755

Re: IceDesign GUI designer

IceDesign has been updated in version 2.0.5 Add a third set of toolbar images for DPI scaling factors of 200% or more. IceDesign window positions, including in multi-monitor mode, are now saved in IceDesign.ini, in addition to the size, so it can reuse the same position and size at the next restart...
by ChrisR
Wed Mar 13, 2024 5:48 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 580
Views: 142755

Re: IceDesign GUI designer

Oops, there's a bug, it should never crash, the generated source code should always be operational out of the box. However, I've just tried following your instructions with a window and a button, but I can't reproduce it! When you have the problem, can you save the .icef form and share the contents ...
by ChrisR
Mon Mar 11, 2024 6:35 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 580
Views: 142755

Re: IceDesign GUI designer

Fixed a small error in the control name check due to a typo, sorry. It is online
Thanks Pete for seeing it so quickly :)
by ChrisR
Mon Mar 11, 2024 4:56 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 580
Views: 142755

Re: IceDesign GUI designer

IceDesign has been updated in version 2.0.4
  • Panel tab heights and ComboBox line heights are DPIaware now in the Designer.
  • For HiDPI screens with scaling of 150% or up, toolbar button images are enlarged with a 2nd set of images.
by ChrisR
Mon Mar 11, 2024 12:58 am
Forum: Coding Questions
Topic: Purebasic 6.10 beta 6
Replies: 9
Views: 699

Re: Purebasic 6.10 beta 6

The next PureBasic stable release is probably more or less ready and if no change is made somewhere this mean I will not be able to use it... Salut Philippe, It's Avira and other AntiVirus products that should be blamed for doing a poor job, not PureBasic or other products. They piss off all the de...
by ChrisR
Sat Mar 09, 2024 1:12 am
Forum: Off Topic
Topic: Problem with SQLite query
Replies: 3
Views: 514

Re: Problem with SQLite query

No tables to test it but to get L.book_id, B.Title, count(*), Group By should probably use the same fields: L.book_id, B.Title Select L.book_id, B.Title, count(*) from Lendings L left join Books B on L.book_id = B.id where L.stud_id like '2023-2024%' group by L.book_id, B.Title order by count(*) DESC