Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Calendar
  New Posts New Posts RSS Feed - the bug again in v 2006 Q3
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

the bug again in v 2006 Q3

 Post Reply Post Reply
Author
Message
jcbaena View Drop Down
Newbie
Newbie
Avatar

Joined: 20 July 2006
Location: Spain
Status: Offline
Points: 19
Post Options Post Options   Thanks (0) Thanks(0)   Quote jcbaena Quote  Post ReplyReply Direct Link To This Post Topic: the bug again in v 2006 Q3
    Posted: 03 August 2006 at 9:50am
I'm going to buy the component. I reported the bug: icons are not displayed on Office2007 theme.

In the new version was to be fixed. I have download it and the bug persists!!. I have launched the example but there is a menu to checkit. The menu show always 3 icons, but they aren't the correct.

Is a bug or I have confused??
Back to Top
SuperMario View Drop Down
Admin Group
Admin Group
Avatar

Joined: 14 February 2004
Status: Offline
Points: 18057
Post Options Post Options   Thanks (0) Thanks(0)   Quote SuperMario Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 9:55am
Not a bug, it works really good, you can now choose which icons are displayed, override the icons, display as many icons as you want.
Check out the picture, you can see where you can choose to display icons. 

To see, simply use the Office 2007 theme and look at the picture below.  Do not check the custom icons menu item.  The custom icons menu item inserts custom icons, not the standard ones, so they will not be the correct ones.



Hope this helps
Back to Top
jcbaena View Drop Down
Newbie
Newbie
Avatar

Joined: 20 July 2006
Location: Spain
Status: Offline
Points: 19
Post Options Post Options   Thanks (0) Thanks(0)   Quote jcbaena Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 10:09am
But...if I don't check the show custom icons menu....the standards icons disappears too.
Back to Top
SuperMario View Drop Down
Admin Group
Admin Group
Avatar

Joined: 14 February 2004
Status: Offline
Points: 18057
Post Options Post Options   Thanks (0) Thanks(0)   Quote SuperMario Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 10:13am
Do your events have a private, meeting, recurrence, etc flag set?  All that is needed is to enable the Office 2007 theme and you will see all icons providing they ar checked as in the picture above.
Back to Top
jcbaena View Drop Down
Newbie
Newbie
Avatar

Joined: 20 July 2006
Location: Spain
Status: Offline
Points: 19
Post Options Post Options   Thanks (0) Thanks(0)   Quote jcbaena Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 10:21am
last 3 icons must disspears and stay only the bell...¿not?
Back to Top
SuperMario View Drop Down
Admin Group
Admin Group
Avatar

Joined: 14 February 2004
Status: Offline
Points: 18057
Post Options Post Options   Thanks (0) Thanks(0)   Quote SuperMario Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 10:26am
yes, those 4 are custom icons added, they are not part of the calendar.  They should disappear when the custom icon item is unchecked.

All I did was add a recurring event with a reminder, private and meeting flags set.


Back to Top
jcbaena View Drop Down
Newbie
Newbie
Avatar

Joined: 20 July 2006
Location: Spain
Status: Offline
Points: 19
Post Options Post Options   Thanks (0) Thanks(0)   Quote jcbaena Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 10:30am
Ahhh...ok.....sorry...... Ok...ok....

Fine!, I'm going to buy the component. It's perfect for my project.

Thanks.

P.S: These conversation have been quick. I like that support. Are you from Codejock?
Back to Top
SuperMario View Drop Down
Admin Group
Admin Group
Avatar

Joined: 14 February 2004
Status: Offline
Points: 18057
Post Options Post Options   Thanks (0) Thanks(0)   Quote SuperMario Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 10:35am
I try to be quick, just depends on when I check the forums.  Yes, I'm with Codejock
Back to Top
jcbaena View Drop Down
Newbie
Newbie
Avatar

Joined: 20 July 2006
Location: Spain
Status: Offline
Points: 19
Post Options Post Options   Thanks (0) Thanks(0)   Quote jcbaena Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 10:36am
Thks. 
Back to Top
SuperMario View Drop Down
Admin Group
Admin Group
Avatar

Joined: 14 February 2004
Status: Offline
Points: 18057
Post Options Post Options   Thanks (0) Thanks(0)   Quote SuperMario Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 10:39am
No Problem, glad you like the software
Back to Top
jcbaena View Drop Down
Newbie
Newbie
Avatar

Joined: 20 July 2006
Location: Spain
Status: Offline
Points: 19
Post Options Post Options   Thanks (0) Thanks(0)   Quote jcbaena Quote  Post ReplyReply Direct Link To This Post Posted: 03 August 2006 at 10:41am
Yes...you are very perfectionist and I like that. Your components make to my aplication seems works.... 
Back to Top
siva View Drop Down
Newbie
Newbie


Joined: 04 September 2006
Status: Offline
Points: 5
Post Options Post Options   Thanks (0) Thanks(0)   Quote siva Quote  Post ReplyReply Direct Link To This Post Posted: 05 September 2006 at 1:07am
How to set custom icons in .Net application
Back to Top
sserge View Drop Down
Moderator Group
Moderator Group


Joined: 01 December 2004
Status: Offline
Points: 1297
Post Options Post Options   Thanks (0) Thanks(0)   Quote sserge Quote  Post ReplyReply Direct Link To This Post Posted: 05 September 2006 at 6:51am
In .Net application -- in the same way as in others.

CalendarThemeOffice2007.CustomIcons is a Codejoke component - image manager.
There is a number of ways. See component members in object browser.
 
You can add bitmaps and icons using their handles as far as load them from file. See LoadBitmap method.
 
The code below was converted from VB6 example.
Also you can find bmp files there.


' This code just copy icons from
' VB6 compartible someImageList object.
objThemeOfice2007.CustomIcons = someImageList
 
' also add icons from another files
objThemeOfice2007.CustomIcons.LoadBitmap(VB6.GetPath & "\Icons\Reminder.bmp",
    XtremeCalendarControl.CalendarEventIconIDs.xtpCalendarEventIconIDReminder,
    XtremeCalendarControl.XTPImageState.xtpImageNormal)
 
 objThemeOfice2007.CustomIcons.LoadBitmap(VB6.GetPath & "\Icons\mail.bmp",
    ID_MAIL, XtremeCalendarControl.XTPImageState.xtpImageNormal)
' ID_MAIL - is icon ID for mail icon in mail.bmp
 
' add from some image list
objThemeOfice2007.CustomIcons.AddIcon ImageListCustomIcons.ListImages.Item(1).ExtractIcon.Handle,
    xtpCalendarEventIconIDReminder, xtpImageNormal
 
' add from a single file
Dim arCustIconsIDs(5) As Integer
 
arCustIconsIDs(0) = 1 ' unread mail
arCustIconsIDs(1) = 2 ' read mail
arCustIconsIDs(2) = 3 ' replyed mail
arCustIconsIDs(3) = 4 ' attachment
arCustIconsIDs(4) = 5 ' Low priority
arCustIconsIDs(5) = 6 ' HIGH priority
 

objThemeOfice2007.CustomIcons.LoadBitmap(VB6.GetPath & "\Icons\EventCustomIcons.bmp",
    arCustIconsIDs, XtremeCalendarControl.XTPImageState.xtpImageNormal)

 
--
WBR,
Serge
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.188 seconds.