It is currently Sun May 26, 2013 8:25 am

All times are UTC + 1 hour




Post new topic Reply to topic  [ 926 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6 ... 62  Next
Author Message
 Post subject:
PostPosted: Wed Apr 01, 2009 8:58 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Oct 26, 2005 2:46 am
Posts: 308
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

_________________
'What you do not want done to yourself, do not do to others.' - Confucius (550 b.c. to 479 b.c.)

Some software and links: [Parabolic Logic]
My blog, or, My Rants: [MSN Live Spaces]


Top
 Profile  
 
 Post subject:
PostPosted: Wed Apr 01, 2009 9:01 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Aug 10, 2005 2:08 pm
Posts: 558
Location: Yorkshire, England
Quote:
Thanks. I'll hit it some time this month.


Thanks man! :)


Top
 Profile  
 
 Post subject:
PostPosted: Thu Apr 02, 2009 12:39 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Aug 10, 2005 2:08 pm
Posts: 558
Location: Yorkshire, England
Quote:
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:
; 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:
; 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


Top
 Profile  
 
 Post subject:
PostPosted: Thu Apr 02, 2009 7:57 pm 
Offline
Always Here
Always Here
User avatar

Joined: Mon Sep 22, 2003 6:45 pm
Posts: 7304
Location: Norway
The font is Tahoma 8 bold. :)

_________________
Woa, I set up a web server.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 03, 2009 8:25 pm 
Offline
Addict
Addict
User avatar

Joined: Thu Jun 24, 2004 2:44 pm
Posts: 4715
Location: Berlin - Germany
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

_________________
PureBasic 5.11 | Windows 7 SP1 (x64) | Mageia 3 (x64) | RealSource

The use of EnableExplicit is free of charge and avoids errors.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Apr 03, 2009 11:10 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Aug 10, 2005 2:08 pm
Posts: 558
Location: Yorkshire, England
Quote:
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.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 19, 2009 2:47 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Aug 10, 2005 2:08 pm
Posts: 558
Location: Yorkshire, England
Just a quick update : The new build is almost ready! yay! :D
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.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 19, 2009 7:07 pm 
Offline
Addict
Addict
User avatar

Joined: Thu Jun 24, 2004 2:44 pm
Posts: 4715
Location: Berlin - Germany
Comes the update with unicode and threadsafe support for the userlib?

greetings
Thomas

_________________
PureBasic 5.11 | Windows 7 SP1 (x64) | Mageia 3 (x64) | RealSource

The use of EnableExplicit is free of charge and avoids errors.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 19, 2009 8:08 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Aug 10, 2005 2:08 pm
Posts: 558
Location: Yorkshire, England
Quote:
Comes the update with unicode and threadsafe support for the userlib?


Yep that too :)


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 19, 2009 8:22 pm 
Offline
Addict
Addict
User avatar

Joined: Thu Jun 24, 2004 2:44 pm
Posts: 4715
Location: Berlin - Germany
PrincieD wrote:
Quote:
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?

_________________
PureBasic 5.11 | Windows 7 SP1 (x64) | Mageia 3 (x64) | RealSource

The use of EnableExplicit is free of charge and avoids errors.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 19, 2009 10:11 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Aug 10, 2005 2:08 pm
Posts: 558
Location: Yorkshire, England
Quote:
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)


Top
 Profile  
 
 Post subject:
PostPosted: Sun Apr 19, 2009 10:37 pm 
Offline
Addict
Addict
User avatar

Joined: Thu Jun 24, 2004 2:44 pm
Posts: 4715
Location: Berlin - Germany
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

_________________
PureBasic 5.11 | Windows 7 SP1 (x64) | Mageia 3 (x64) | RealSource

The use of EnableExplicit is free of charge and avoids errors.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 20, 2009 1:24 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Wed Aug 10, 2005 2:08 pm
Posts: 558
Location: Yorkshire, England
Quote:
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.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Apr 20, 2009 1:49 am 
Offline
Addict
Addict
User avatar

Joined: Thu Jun 24, 2004 2:44 pm
Posts: 4715
Location: Berlin - Germany
> The DLL version should work fine though.
You can only load 64-Bit DLLs in 64-Bit Application :wink:

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:
#CCS_NODIVIDER | #TBSTYLE_AUTOSIZE | #TBSTYLE_WRAPABLE

No Tooltip :(

greetings

Thomas

_________________
PureBasic 5.11 | Windows 7 SP1 (x64) | Mageia 3 (x64) | RealSource

The use of EnableExplicit is free of charge and avoids errors.


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 02, 2009 11:32 am 
Offline
Addict
Addict
User avatar

Joined: Thu Jun 24, 2004 2:44 pm
Posts: 4715
Location: Berlin - Germany
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? :wink:

_________________
PureBasic 5.11 | Windows 7 SP1 (x64) | Mageia 3 (x64) | RealSource

The use of EnableExplicit is free of charge and avoids errors.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 926 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6 ... 62  Next

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  

 


Powered by phpBB © 2008 phpBB Group
subSilver+ theme by Canver Software, sponsor Sanal Modifiye