Print Page | Close Window

the bug again in v 2006 Q3

Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Calendar
Forum Description: Topics Related to Codejock Calendar
URL: http://forum.codejock.com/forum_posts.asp?TID=4718
Printed Date: 12 May 2024 at 4:46am
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: the bug again in v 2006 Q3
Posted By: jcbaena
Subject: the bug again in v 2006 Q3
Date 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??



Replies:
Posted By: SuperMario
Date 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


Posted By: jcbaena
Date Posted: 03 August 2006 at 10:09am
But...if I don't check the show custom icons menu....the standards icons disappears too.


Posted By: SuperMario
Date 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.


Posted By: jcbaena
Date Posted: 03 August 2006 at 10:21am
last 3 icons must disspears and stay only the bell...¿not?


Posted By: SuperMario
Date 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.




Posted By: jcbaena
Date 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?


Posted By: SuperMario
Date 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


Posted By: jcbaena
Date Posted: 03 August 2006 at 10:36am
Thks. 


Posted By: SuperMario
Date Posted: 03 August 2006 at 10:39am
No Problem, glad you like the software


Posted By: jcbaena
Date Posted: 03 August 2006 at 10:41am
Yes...you are very perfectionist and I like that. Your components make to my aplication seems works.... 


Posted By: siva
Date Posted: 05 September 2006 at 1:07am
How to set custom icons in .Net application


Posted By: sserge
Date 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



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.04 - http://www.webwizforums.com
Copyright ©2001-2021 Web Wiz Ltd. - https://www.webwiz.net