Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Skin Framework
  New Posts New Posts RSS Feed - command button with picture
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

command button with picture

 Post Reply Post Reply
Author
Message
mehdi0016 View Drop Down
Newbie
Newbie


Joined: 05 February 2007
Location: Iran
Status: Offline
Points: 3
Post Options Post Options   Thanks (0) Thanks(0)   Quote mehdi0016 Quote  Post ReplyReply Direct Link To This Post Topic: command button with picture
    Posted: 18 February 2007 at 5:55pm
hi
is there any command button which support SkinFramework and also have picture or icon property ?
also i need a skinnable multi-column combo box ?
thanx
):)
Back to Top
Oleg View Drop Down
Admin Group
Admin Group


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post Posted: 20 February 2007 at 2:50am
Hi,
We are preparing it for next release.
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
Back to Top
Source View Drop Down
Senior Member
Senior Member


Joined: 19 June 2006
Status: Offline
Points: 103
Post Options Post Options   Thanks (0) Thanks(0)   Quote Source Quote  Post ReplyReply Direct Link To This Post Posted: 22 February 2007 at 5:31am

If possible include also an edit control (with mask edit) similar with the one existing in the controls suite. It will be great!

Thanks. Regards.
Carlos Neves
Back to Top
wqweto View Drop Down
Newbie
Newbie
Avatar

Joined: 09 April 2007
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote wqweto Quote  Post ReplyReply Direct Link To This Post Posted: 09 April 2007 at 11:47am
Originally posted by mehdi0016 mehdi0016 wrote:

hi
is there any command button which support SkinFramework and also have picture or icon property ?
also i need a skinnable multi-column combo box ?
thanx

I'm using a modified version of Edanmo's Using XP Visual Style in Graphical buttons but only the original XP skin is applied.

Is it possible to use current custom skin in some way? I suppose an hTheme handle would be enough for XP and above systems. Don't know how you're dealing with 9x and NT though.

Kudos for the uber-hacks the skin control is doing! I personally would never dare such a massive API hooking :-))

cheers,
</wqw>
Back to Top
Oleg View Drop Down
Admin Group
Admin Group


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post Posted: 10 April 2007 at 12:14am
Hi,
 
With 11.1 we added PushButton with support winXP themes/SkinFramework, please wait a little, it will be really soon.
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
Back to Top
apuhjee View Drop Down
Senior Member
Senior Member
Avatar

Joined: 02 September 2005
Location: United States
Status: Offline
Points: 130
Post Options Post Options   Thanks (0) Thanks(0)   Quote apuhjee Quote  Post ReplyReply Direct Link To This Post Posted: 18 April 2007 at 11:38am
I notice that the "focus" look of PushButton does not match that of a native button + skin. Is this something that's going to be fixed in the future?

Regards ~ jp

Back to Top
Oleg View Drop Down
Admin Group
Admin Group


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post Posted: 18 April 2007 at 3:19pm

Hi,

this is not "focus" this is mark that button is "default". In Visual Basic there is way to automatically set button as default when it become focused (try same sample with VB6) in .NET activeX object can't be defaulted automatically:

try workaround code:
 

private void axPushButton1_Enter(object sender, System.EventArgs e)

{

axPushButton1.Default = true;

}

private void axPushButton1_Leave(object sender, System.EventArgs e)

{

axPushButton1.Default = false;

}

Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
Back to Top
apuhjee View Drop Down
Senior Member
Senior Member
Avatar

Joined: 02 September 2005
Location: United States
Status: Offline
Points: 130
Post Options Post Options   Thanks (0) Thanks(0)   Quote apuhjee Quote  Post ReplyReply Direct Link To This Post Posted: 19 April 2007 at 9:47am
Thanks Oleg -
This code cures 1/2 of the problem. Is there a way to prevent the dashed line from appearing in the button? It's evoking memories of Petzold and 3.1 :)

Regards ~ jp

Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.141 seconds.