Search found 25 matches
- Thu Sep 11, 2025 9:55 am
- Forum: Coding Questions
- Topic: ListIconGadget with specific font change row height randomly
- Replies: 2
- Views: 200
Re: ListIconGadget with specific font change row height randomly
Thanks for the hint.
- Thu Sep 11, 2025 6:54 am
- Forum: Coding Questions
- Topic: ListIconGadget with specific font change row height randomly
- Replies: 2
- Views: 200
ListIconGadget with specific font change row height randomly
Platform: Windows 11
Purebasic: 6.04 and 6.30 beta 1 (64bit)
Compiler Option: Modern Themes on or off - same problem
The test code creates 2 ListIconGadgets with a specific font. The content of the rows is not 100% the same (text).
I can start this test code several times and the height of the ...
Purebasic: 6.04 and 6.30 beta 1 (64bit)
Compiler Option: Modern Themes on or off - same problem
The test code creates 2 ListIconGadgets with a specific font. The content of the rows is not 100% the same (text).
I can start this test code several times and the height of the ...
- Fri Apr 28, 2023 5:36 pm
- Forum: Applications - Feedback and Discussion
- Topic: [Modules] ListEx (all OS / DPI)
- Replies: 486
- Views: 205576
Re: [Modules] ListEx (all OS / DPI)
Bug with #ResizeColumn:
ListExModule.pbi - date 17.7.2022 (latest version from download)
#Example = 4
1) Start test application in the module
2) Scroll down in the list with the mouse to the bottom
3) Change witdh of a column with the mouse
Problem: The list shows immediately the first row. The ...
ListExModule.pbi - date 17.7.2022 (latest version from download)
#Example = 4
1) Start test application in the module
2) Scroll down in the list with the mouse to the bottom
3) Change witdh of a column with the mouse
Problem: The list shows immediately the first row. The ...
- Sat Apr 01, 2023 1:55 pm
- Forum: Tricks 'n' Tips
- Topic: PureBasic Modules: A Quick Tutorial
- Replies: 21
- Views: 85329
Re: PureBasic Modules: A Quick Tutorial
Brilliant ! I was looking for this topic: "call an external procedure in a module" and your proposal worked !
- Thu Mar 09, 2023 9:15 pm
- Forum: Announcement
- Topic: PureBasic 6.01 LTS is released !
- Replies: 92
- Views: 34657
Re: PureBasic 6.01 LTS is released !
- Thu Mar 09, 2023 8:32 pm
- Forum: Announcement
- Topic: PureBasic 6.01 LTS is released !
- Replies: 92
- Views: 34657
Re: PureBasic 6.01 LTS is released !
Modified test prog without overlapping:
If OpenWindow(0, 0, 0, 1200, 700, "Create ComboBoxGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
t1 = ElapsedMilliseconds()
SendMessage_(WindowID(0),#WM_SETREDRAW,0,0)
For i = 0 To 1000
xx = 10 + ((i / 30) * 35)
yy = 10 + ((i % 30) * 20 ...
If OpenWindow(0, 0, 0, 1200, 700, "Create ComboBoxGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
t1 = ElapsedMilliseconds()
SendMessage_(WindowID(0),#WM_SETREDRAW,0,0)
For i = 0 To 1000
xx = 10 + ((i / 30) * 35)
yy = 10 + ((i % 30) * 20 ...
- Thu Mar 09, 2023 6:09 pm
- Forum: Announcement
- Topic: PureBasic 6.01 LTS is released !
- Replies: 92
- Views: 34657
Re: PureBasic 6.01 LTS is released !
I disabled the debugger (thanks for the hint) and get now these numbers:
6.00 : t=6039ms => redraw active
6.00 : t=3994ms => no redraw
6.01 : t=14266ms => redraw active
6.01 : t=14527ms => no redraw
I still have extreme differences and I'm surprised that your times are almost identical ...
6.00 : t=6039ms => redraw active
6.00 : t=3994ms => no redraw
6.01 : t=14266ms => redraw active
6.01 : t=14527ms => no redraw
I still have extreme differences and I'm surprised that your times are almost identical ...
- Thu Mar 09, 2023 1:54 pm
- Forum: Announcement
- Topic: PureBasic 6.01 LTS is released !
- Replies: 92
- Views: 34657
Re: PureBasic 6.01 LTS is released !
This adjustment has made the result worse.
- 6.00 : time=7074ms
- 6.01 : time=23636ms
- Thu Mar 09, 2023 11:44 am
- Forum: Announcement
- Topic: PureBasic 6.01 LTS is released !
- Replies: 92
- Views: 34657
Re: PureBasic 6.01 LTS is released !
I use in my application a lot of ComboBoxGadgets (more than 100) and i detected a significant increase in the time to create the ComboBoxGadgets with the new 6.01.
I wrote a small app to demonstrate this:
If OpenWindow(0, 0, 0, 320, 200, "Create ComboBoxGadget", #PB_Window_SystemMenu | #PB_Window ...
I wrote a small app to demonstrate this:
If OpenWindow(0, 0, 0, 320, 200, "Create ComboBoxGadget", #PB_Window_SystemMenu | #PB_Window ...
- Sun Sep 13, 2020 3:37 pm
- Forum: Applications - Feedback and Discussion
- Topic: [Modules] ListEx (all OS / DPI)
- Replies: 486
- Views: 205576
Re: [Modules] ListEx (all OS / DPI)
If the table is bigger than the gadget, i detected 2 problems:
XIncludeFile "listexmodule.pbi"
OpenWindow(0, 50, 50, 600, 500, "Test")
#lg_test1 = 2
ListEx::Gadget(#lg_test1,10,10,500,400,"Titel 1",200)
ListEx::DisableReDraw(#lg_test1,#True)
ListEx::AddColumn(#lg_test1,1,"Titel 2",100)
ListEx ...
XIncludeFile "listexmodule.pbi"
OpenWindow(0, 50, 50, 600, 500, "Test")
#lg_test1 = 2
ListEx::Gadget(#lg_test1,10,10,500,400,"Titel 1",200)
ListEx::DisableReDraw(#lg_test1,#True)
ListEx::AddColumn(#lg_test1,1,"Titel 2",100)
ListEx ...
- Sun Sep 13, 2020 9:20 am
- Forum: Applications - Feedback and Discussion
- Topic: [Modules] ListEx (all OS / DPI)
- Replies: 486
- Views: 205576
Re: [Modules] ListEx (all OS / DPI)
I made some tests with the release from 21.05.2020 and i have the problem with the scrollbar too. It happens with screen scaling 100% or 200% on my Win10 pc. The behaviour is very erratic.
Any chance to fix this ?
Regards Matthias
Any chance to fix this ?
Regards Matthias
- Wed Jan 22, 2020 9:41 am
- Forum: Coding Questions
- Topic: [5.60] tooltip not showing w/o "enable modern theme support"
- Replies: 21
- Views: 7685
Re: [5.60] tooltip not showing w/o "enable modern theme supp
I use this test-code:
OpenWindow(0, 50, 50, 600, 400, "Test")
SpinGadget(10,20,20,60,20,0,100,#PB_Spin_Numeric|#ES_RIGHT)
SetGadgetState(10,33)
GadgetToolTip(10,"ToolTip SpinGadget")
CheckBoxGadget(20,20,50,100,20,"CheckBoxGadget")
GadgetToolTip(20,"ToolTip CheckBoxGadget")
StringGadget(30,20 ...
OpenWindow(0, 50, 50, 600, 400, "Test")
SpinGadget(10,20,20,60,20,0,100,#PB_Spin_Numeric|#ES_RIGHT)
SetGadgetState(10,33)
GadgetToolTip(10,"ToolTip SpinGadget")
CheckBoxGadget(20,20,50,100,20,"CheckBoxGadget")
GadgetToolTip(20,"ToolTip CheckBoxGadget")
StringGadget(30,20 ...
- Tue Dec 24, 2019 4:34 pm
- Forum: Coding Questions
- Topic: [5.60] tooltip not showing w/o "enable modern theme support"
- Replies: 21
- Views: 7685
Re: [5.60] tooltip not showing w/o "enable modern theme supp
Yes you can clearly saw in the first pic than your text is already bigger than the textgadget() (but not clipped, but it's a Windows thing).
Ok, got it. The layout of my application is a little bit condensed.
Any idea to solve the problem with the flickering tooltip, when text scaling is not 100 ...
Ok, got it. The layout of my application is a little bit condensed.
Any idea to solve the problem with the flickering tooltip, when text scaling is not 100 ...
- Mon Dec 23, 2019 1:16 pm
- Forum: Applications - Feedback and Discussion
- Topic: [Module] ToolTipEx - Module (all OS)
- Replies: 18
- Views: 9141
Re: [Module] ToolTipEx - Module (all OS)
Thanks for the bugfix. My example-code works fine now.
- Mon Dec 23, 2019 9:14 am
- Forum: Applications - Feedback and Discussion
- Topic: [Module] ToolTipEx - Module (all OS)
- Replies: 18
- Views: 9141
Re: [Module] ToolTipEx - Module (all OS)
PB 5.71 x64, TooltipExModule.pbi 08.12.2019
I see only the last created ToolTip in my example.
XIncludeFile "TooltipExModule.pbi"
OpenWindow(0, 50, 50, 600, 400, "Test")
SpinGadget(10,20,20,60,20,0,100,#PB_Spin_Numeric|#ES_RIGHT)
SetGadgetState(10,33)
ToolTip::Create(10,0)
ToolTip::SetContent ...
I see only the last created ToolTip in my example.
XIncludeFile "TooltipExModule.pbi"
OpenWindow(0, 50, 50, 600, 400, "Test")
SpinGadget(10,20,20,60,20,0,100,#PB_Spin_Numeric|#ES_RIGHT)
SetGadgetState(10,33)
ToolTip::Create(10,0)
ToolTip::SetContent ...