Page 3 of 71
Posted: Wed Apr 01, 2009 8:58 pm
by garretthylltun
PrincieD wrote:My domain name
www.hashdesign.co.uk is currently down due to problems with 1&1 web hosting. I've changed my web host to freehostia and put up a temporary page for the time being:
http://hashdesign.freehostia.com/Index.html
There's a button on that page where you can purchase a licence for ProGUI. I'll upload a proper version of my site soon once I finish coding this release of ProGUI
Chris.
Thanks. I'll hit it some time this month.
~Garrett
Posted: Wed Apr 01, 2009 9:01 pm
by PrincieD
Thanks. I'll hit it some time this month.
Thanks man!

Posted: Thu Apr 02, 2009 12:39 am
by PrincieD
The text in the office demos jumps when the window is resized. And the text area flickers when the window is enlarged by pulling the top left corner.
Trond: add the following few of lines of code to the Office Example in order to eliminate the problem (not a ProGUI problem but an application specific problem).
Change in main event loop:
Code: Select all
; resize scintilla gadget when window resizing
If Event = #WM_SIZE
ResizeGadget(editor,0,RebarHeight(#REBAR_0),WindowWidth(#Window_0),WindowHeight(#Window_0)-RebarHeight(#REBAR_0))
EndIf
to :
Code: Select all
; resize scintilla gadget when window resizing
If Event = #WM_SIZE
SendMessage_(GadgetID(editor), #WM_SETREDRAW, #False, 0)
ResizeGadget(editor,0,RebarHeight(#REBAR_0),WindowWidth(#Window_0),WindowHeight(#Window_0)-RebarHeight(#REBAR_0))
SendMessage_(GadgetID(editor), #WM_SETREDRAW, #True, 0)
RedrawWindow_(GadgetID(editor),0,0,#RDW_NOERASE|#RDW_INVALIDATE|#RDW_UPDATENOW)
EndIf
Posted: Thu Apr 02, 2009 7:57 pm
by Trond
The font is Tahoma 8 bold.

Posted: Fri Apr 03, 2009 8:25 pm
by ts-soft
there is a small problem with your userlib. the userlib export:
AttachProcess and AttachThread, so i can't create a DLL with this reserved
Names.
Greetings
Thomas
Posted: Fri Apr 03, 2009 11:10 pm
by PrincieD
there is a small problem with your userlib. the userlib export:
AttachProcess and AttachThread, so i can't create a DLL with this reserved
Names.
Thanks for letting me know Thomas, I'll make sure the fix is added to the current build I'm working on (shouldn't be long now!)
Cheers!
Chris.
Posted: Sun Apr 19, 2009 2:47 pm
by PrincieD
Just a quick update : The new build is almost ready! yay!

I'm currently working on the menu auto scroll feature when large menus won't fit on the screen and then I have to fix the AttachProcess and AttachThread issue (pretty straight forward) and then it's done! (any day now!)
Sorry it's taking a while but it'll be worth the wait I promise and I have to make sure this update is as perfect as I can get it as I know Soner is ready for release of InstallForge using ProGUI.
Thanks guys!
Chris.
Posted: Sun Apr 19, 2009 7:07 pm
by ts-soft
Comes the update with unicode and threadsafe support for the userlib?
greetings
Thomas
Posted: Sun Apr 19, 2009 8:08 pm
by PrincieD
Comes the update with unicode and threadsafe support for the userlib?
Yep that too

Posted: Sun Apr 19, 2009 8:22 pm
by ts-soft
PrincieD wrote:Comes the update with unicode and threadsafe support for the userlib?
Yep that too

thanks
In the next some weeks, i require also a 64-bit version, is this an option?
Posted: Sun Apr 19, 2009 10:11 pm
by PrincieD
In the next some weeks, i require also a 64-bit version, is this an option?
The new update should theoretically work on 64-bit machines as I have changed various internal commands to the 64bit compatible versions however as "sods law" dictates you never know lol (I have no way to test on 64bit architecture too)
Posted: Sun Apr 19, 2009 10:37 pm
by ts-soft
PrincieD wrote:The new update should theoretically work on 64-bit machines as I have changed various internal commands to the 64bit compatible versions however as "sods law" dictates you never know lol (I have no way to test on 64bit architecture too)
Then it can't work! You have to compile it with from PB-64 Bit Version, newest Tailbite supports this (not complete)
If you don't have a 64-Bit Win-Version, i see a big problem
greetings
Thomas
Posted: Mon Apr 20, 2009 1:24 am
by PrincieD
Then it can't work! You have to compile it with from PB-64 Bit Version, newest Tailbite supports this (not complete)
If you don't have a 64-Bit Win-Version, i see a big problem Exclamation
I'll have to borrow a mates laptop and compile it on that then lol
The DLL version should work fine though.
Posted: Mon Apr 20, 2009 1:49 am
by ts-soft
> The DLL version should work fine though.
You can only load 64-Bit DLLs in 64-Bit Application
By the way, i have a problem with a shortcut for F10, this will always work
on the first menuitem and not for my application
Another problem with toolbar tooltip. With Style:
Code: Select all
#CCS_NODIVIDER | #TBSTYLE_AUTOSIZE | #TBSTYLE_WRAPABLE
No Tooltip
greetings
Thomas
Posted: Sat May 02, 2009 11:32 am
by ts-soft
Now I am not sure whether this problem deals with the ProGUI, but I
suppose it sometimes. Whenever I use an Escape-Shortcut and put
afterwards the focus on a Control, this gets lost after a strange Delay again
Another Question, where is the update?
