+1Marco2007 wrote:Very cool! Thx!
Thanks for SaveRebarLayout() and LoadRebarLayout()
I miss some examples for Skinning and ButtonEx.
Greetings - Thomas
+1Marco2007 wrote:Very cool! Thx!
Thanks for SaveRebarLayout() and LoadRebarLayout()

No worries Marco, ahh yes it needs the ShowRebarBand state saved too doh! I'll sort itMarco2007 wrote:Very cool! Thx!
Thanks for SaveRebarLayout() and LoadRebarLayout()
It would be perfect, if the state of ShowRebarBand() would be included....

Yes sorry Thomas I just wanted to get the release out as I know you've all been waiting a while for it!ts-soft wrote:I miss some examples for Skinning and ButtonEx.

 
 Thanks Barney! and no worries, I'm glad you're enjoying using it!Barney wrote:Thanks for your great work, PrincieD. I am really enjoying using your software.

Hi Marc, yes thats correct, it's because of the UnlockMutex bug. I should have the new update ready in an hour or so.marc_256 wrote:Hi Chris,
I just started to use your software,
when I started 'PanelExample.exe' my computer hangs...
even when I use it in PB 4.51RC2 with 'PanelExample.pb' file the computer hangs.
Even other examples hangs.
Is this the reason you mention above.
If not so, must I remove older ProGui 1.18 before installing 1.20 ?
I use WIN XP SP2 / ATHLON XP CPU
Marc,

No Gold-UpdatePrincieD wrote:Ok guys, the new bug fix release is out - see top of thread
Chris.


yep soon soonts-soft wrote:No Gold-UpdatePrincieD wrote:Ok guys, the new bug fix release is out - see top of thread
Chris.
 just testing out a new mailing list with Josh (thanks man!), this is so that everybody's email address isn't visible to everyone when sending the update emails.
 just testing out a new mailing list with Josh (thanks man!), this is so that everybody's email address isn't visible to everyone when sending the update emails.
No worries Cho, glad it's workingcsk wrote:Hi Chris,
I am Cho. "csk" is my forum ID.
Thanks for the ver 1.21 update. I confirm the Menu bug is now resolved.
Thanks and Regards
Cho

Code: Select all
EnableExplicit
DataSection
  ico: IncludeBinary "ProfanIDE.ico"
EndDataSection
Define tmpimg
Dim IMG(3)
tmpimg = CatchImage(#PB_Any, ?ico)
IMG(0) = ImageID(tmpimg)
IMG(1) = ImgBlend(IMG(0), 255, 20, 20, 0, 0, 0)
IMG(2) = ImgBlend(IMG(0), 255, 0, 0, 0, 50, 0)
IMG(3) = ImgBlend(IMG(0), 0, 0, 0, 0, 0, #ImgBlend_Greyscale)
OpenWindow(0, #PB_Ignore, #PB_Ignore, 150, 88, "Test")
;ImageButtonEx(WindowID(0), 1, 20, 20, 48, 48, IMG(0), IMG(1), IMG(2), 0)
ButtonEx(WindowID(0), 1, 20, 20, 100, 50, "Profan", IMG(0), IMG(1), IMG(2), IMG(3), 0)
Repeat
  Select WaitWindowEvent()
    Case #PB_Event_CloseWindow : Break
    Case #PB_Event_Menu
      Select EventMenu()
        Case 1
          MessageRequester("3-State-Test", "Button Click")
      EndSelect
  EndSelect
ForEver
Hi Thomas,ts-soft wrote:Hi Chris,
this code crashes with ButtonEx but works with ImageButtonEx?
Code: Select all
Select WaitWindowEvent()
Thanks Thomas, I've confirmed the crash, working on a fix now (due to me using some exported string functions internally I think, Tailbite doesn't like this!)ts-soft wrote:Tested with Userlib and PB 4.51 x86. One or two moves with the mouse over the windows crashes always at:Crashes with your userlib, with my userlib but not with DLL!Code: Select all
Select WaitWindowEvent()
// edit
problem is only on x86, not on x64!