1. How do I remove the control's border
| C# |
|---|
axCalendar1.Appearance = EXCALENDARLib.AppearanceEnum.None2; |
2. How do I change the control's border, using your EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.Appearance = (EXCALENDARLib.AppearanceEnum)16777216; |
3. How can I change the control's font
| C# |
|---|
axCalendar1.Font.Name = "Verdana"; |
4. How do I change the control's background color
| C# |
|---|
axCalendar1.BackColor = Color.FromArgb(200,200,200); |
5. How do I change the control's foreground color
| C# |
|---|
axCalendar1.ForeColor = Color.FromArgb(255,0,0); |
6. How do I change the visual appearance of the up and down buttons in the calendar's header, using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exScrollUp,16777216); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exScrollDown,16777216); |
7. How do I change the visual appearance of the left and right buttons in the calendar's header, using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exScrollLeft,16777216); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exScrollRight,16777216); |
8. How can I change the visual appearance of the drop down button, using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exDropDownButtonUp,16777216); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exDropDownButtonDown,33554432); |
9. How can I change the visual appearance of header that displays days, using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exDaysHeader,16777216); |
10. How can I change the visual appearance of header that week numbers, using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exWeeksHeader,16777216); axCalendar1.HeaderForeColor = Color.FromArgb(255,0,0); axCalendar1.ShowWeeks = true; |
11. How can I change the visual appearance of header , using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exDateHeader,16777216); axCalendar1.HeaderForeColor = Color.FromArgb(255,0,0); |
12. How can I change the visual appearance of 'Today' button, using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exDateTodayUp,16777216); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exDateTodayDown,33554432); |
13. How can I change the visual appearance of the scrolling bar for years, using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exDateScrollRange,16777216); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exDateScrollThumb,33554432); |
14. How can I change the visual appearance of separator between calendar and 'Today' button , using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exDateSeparatorBar,16777216); |
15. How can I change the visual appearance of Today date in the calendar, using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\pushed.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exMarkToday,16777216); axCalendar1.SelForeColor = Color.FromArgb(0,0,0); axCalendar1.MarkToday = true; |
16. How can I change the visual appearance of the selected month, in the months selector, using EBN files
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exMonthSelect,16777216); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exMonthSelectForeColor,255); |
17. Can I change the default border of the tooltip, using your EBN files
| C# |
|---|
axCalendar1.ToolTipDelay = 1; axCalendar1.ToolTipWidth = 364; axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exToolTipAppearance,16777216); axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
18. Can I change the background color for the tooltip
| C# |
|---|
axCalendar1.ToolTipDelay = 1; axCalendar1.ToolTipWidth = 364; axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exToolTipBackColor,255); axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
19. Can I change the forecolor for the tooltip
| C# |
|---|
axCalendar1.ToolTipDelay = 1; axCalendar1.ToolTipWidth = 364; axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exToolTipForeColor,255); axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
20. How do I disable or enable the control
| C# |
|---|
axCalendar1.Enabled = false; |
21. How do I enable multiple selection
| C# |
|---|
axCalendar1.SingleSel = false; |
22. How do I enable single selection
| C# |
|---|
axCalendar1.SingleSel = true; |
23. How can I hide the control's selection when the control loses the focus
| C# |
|---|
axCalendar1.HideSelection = true; |
24. How can I show the control's selection even if the control loses the focus
| C# |
|---|
axCalendar1.HideSelection = false; |
25. How do I mark the Today date
| C# |
|---|
axCalendar1.MarkToday = true; |
26. How can I change the visual appearance of Today date in the calendar
| C# |
|---|
axCalendar1.MarkToday = true; axCalendar1.set_Background(EXCALENDARLib.BackgroundPartEnum.exMarkToday,255); |
27. How do I show or hide the weeks
| C# |
|---|
axCalendar1.ShowWeeks = true; |
28. How can I show or hide the header that displays the week days
| C# |
|---|
axCalendar1.ShowDays = false; |
29. How can I show or hide the header that displays the months
| C# |
|---|
axCalendar1.ShowMonth = false; |
30. How can I show or hide the scroll bar that changes the year
| C# |
|---|
axCalendar1.ShowYearScroll = false; |
31. How can I show or hide the 'Today' button
| C# |
|---|
axCalendar1.ShowTodayButton = false; |
32. How do I change the background color for the week days and week numbers header
| C# |
|---|
axCalendar1.HeaderBackColor = Color.FromArgb(255,0,0); axCalendar1.ShowWeeks = true; |
33. How do I change the foreground color for the week days and week numbers header
| C# |
|---|
axCalendar1.HeaderForeColor = Color.FromArgb(255,0,0); axCalendar1.ShowWeeks = true; |
34. How do I draw the grid lines
| C# |
|---|
axCalendar1.DrawGridLine = EXCALENDARLib.LineStyleEnum.SmallDots; |
35. How do I specify the color for the grid lines
| C# |
|---|
axCalendar1.DrawGridLine = EXCALENDARLib.LineStyleEnum.SmallDots; axCalendar1.GridLineColor = Color.FromArgb(255,0,0); |
36. How do I change the appearance for dates in the calendar
| C# |
|---|
axCalendar1.AppearanceDay = EXCALENDARLib.AppearanceDayEnum.Day3D; (axCalendar1.GetOcx() as EXCALENDARLib.Calendar).BackColor = 0x8000000f; |
37. How can I specify the width and height for dates being displayed in the calendar
| C# |
|---|
axCalendar1.AutoSize = false; axCalendar1.FixedCellWidth = 32; axCalendar1.FixedCellHeight = 24; |
38. How can I specify the width and height for dates being displayed in the calendar
| C# |
|---|
axCalendar1.AutoSize = false; axCalendar1.FixedCellWidth = 22; axCalendar1.FixedCellHeight = 16; |
39. How do I change the name for each week day
| C# |
|---|
axCalendar1.AutoSize = false; axCalendar1.FixedCellWidth = 24; axCalendar1.FixedCellHeight = 16; axCalendar1.set_WeekDayShortName(EXCALENDARLib.WeekDayEnum.Sunday,"Sun"); axCalendar1.set_WeekDayShortName(EXCALENDARLib.WeekDayEnum.Monday,"Mon"); axCalendar1.set_WeekDayShortName(EXCALENDARLib.WeekDayEnum.Tuesday,"Tue"); axCalendar1.set_WeekDayShortName(EXCALENDARLib.WeekDayEnum.Wednesday,"Wed"); axCalendar1.set_WeekDayShortName(EXCALENDARLib.WeekDayEnum.Thursday,"Thu"); axCalendar1.set_WeekDayShortName(EXCALENDARLib.WeekDayEnum.Friday,"Fri"); axCalendar1.set_WeekDayShortName(EXCALENDARLib.WeekDayEnum.Saturday,"Sat"); axCalendar1.HeaderForeColor = Color.FromArgb(255,0,0); axCalendar1.HeaderBackColor = Color.FromArgb(255,255,255); |
40. How do I change the name for each week day
| C# |
|---|
axCalendar1.AutoSize = false; axCalendar1.FixedCellWidth = 24; axCalendar1.FixedCellHeight = 16; axCalendar1.WeekDays = "Su Mo Tu We Th Fr Sa"; axCalendar1.HeaderForeColor = Color.FromArgb(255,0,0); axCalendar1.HeaderBackColor = Color.FromArgb(255,255,255); |
41. How do I change the name of the months
| C# |
|---|
axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.January,"Jan"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.February,"Feb"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.March,"Mar"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.April,"Apr"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.May,"May"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.June,"Jun"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.July,"Jul"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.August,"Aug"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.September,"Sep"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.October,"Oct"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.November,"Nov"); axCalendar1.set_MonthName(EXCALENDARLib.MonthEnum.December,"Dec"); |
42. How do I change the name of the months
| C# |
|---|
axCalendar1.MonthNames = "Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec"; |
43. How do I change the first day of the week
| C# |
|---|
axCalendar1.FirstDay = EXCALENDARLib.WeekDayEnum.Monday; |
44. How can I lock the control, so user can't select a new date
| C# |
|---|
axCalendar1.Locked = true; |
45. How can I specify the number of months being displayed
| C# |
|---|
axCalendar1.ShowTodayButton = false; axCalendar1.ShowYearScroll = false; axCalendar1.MinMonthX = 2; axCalendar1.MaxMonthX = 2; axCalendar1.MinMonthY = 2; axCalendar1.MaxMonthY = 2; |
46. How can I change the style of the line arround a month
| C# |
|---|
axCalendar1.DrawBorderLine = EXCALENDARLib.LineStyleEnum.LargeDots; |
47. How can I change the color of the line arround a month
| C# |
|---|
axCalendar1.DrawBorderLine = EXCALENDARLib.LineStyleEnum.LargeDots; axCalendar1.BorderLineColor = Color.FromArgb(255,0,0); |
48. How can I change the colors for selected dates
| C# |
|---|
axCalendar1.SelBackColor = Color.FromArgb(0,0,0); axCalendar1.SelForeColor = Color.FromArgb(255,255,255); |
49. How can I change the visual aspect of the selected date, using your EBN
| C# |
|---|
axCalendar1.BackColor = Color.FromArgb(255,255,255); axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); (axCalendar1.GetOcx() as EXCALENDARLib.Calendar).SelBackColor = 0x1000000; axCalendar1.SelForeColor = axCalendar1.BackColor; |
50. How can I disable changing the month in the months selector
| C# |
|---|
axCalendar1.ShowMonthSelector = false; |
51. How can I show or hide the buttons that scrolls the years
| C# |
|---|
axCalendar1.ShowYearSelector = false; |
52. How can I show or hide the buttons that in the header
| C# |
|---|
axCalendar1.ShowYearSelector = false; axCalendar1.ShowMonthSelector = false; |
53. How can I change the browsed date
| C# |
|---|
axCalendar1.Date = "1/1/2001"; |
54. How can I select a new date
| C# |
|---|
axCalendar1.Date = "1/1/2001"; axCalendar1.SelDate = "1/2/2001"; |
55. How can I select a new date
| C# |
|---|
axCalendar1.Date = axCalendar1.get_DoDate(2001,1,1); axCalendar1.SelDate = axCalendar1.get_DoDate(2001,1,2); |
56. How can I build a date expression
| C# |
|---|
axCalendar1.Date = axCalendar1.get_DoDate(2001,1,1); |
57. How do I get the selected date
| C# |
|---|
axCalendar1.SelDate = axCalendar1.Date; |
58. How do I select multiple dates
| C# |
|---|
axCalendar1.SingleSel = false; axCalendar1.Date = "1/1/2001"; axCalendar1.SelDate = "1/2/2001"; axCalendar1.SelDate = "1/3/2001"; axCalendar1.SelDate = "1/4/2001"; |
60. How do I unselect a date
| C# |
|---|
axCalendar1.SingleSel = false;
axCalendar1.Date = "1/1/2001";
axCalendar1.SelDate = "1/2/2001";
axCalendar1.SelDate = "1/3/2001";
axCalendar1.SelDate = "1/4/2001";
axCalendar1.UnSelDate("1/3/2001");
|
62. How can I change the caption of the Today's button
| C# |
|---|
axCalendar1.TodayCaption = "Azi"; |
63. Can I change the font for the tooltip
| C# |
|---|
axCalendar1.ToolTipDelay = 1; stdole.IFontDisp var_StdFont = axCalendar1.ToolTipFont; var_StdFont.Name = "Tahoma"; var_StdFont.Size = 14; axCalendar1.ToolTipWidth = 364; axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
64. How do I call your x-script language
| C# |
|---|
axCalendar1.Template = "BackColor = RGB(255,0,0)"; |
65. How do I call your x-script language
| C# |
|---|
axCalendar1.ExecuteTemplate("BackColor = RGB(255,0,0)");
|
66. How do I show the tooltip quicker
| C# |
|---|
axCalendar1.ToolTipDelay = 1; axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
67. How do I disable showing the tooltip for all control
| C# |
|---|
axCalendar1.ToolTipDelay = 0; axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
68. I've seen that the width of the tooltip is variable. Can I make it larger
| C# |
|---|
axCalendar1.ToolTipWidth = 328; axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
69. How can I select a new date
| C# |
|---|
axCalendar1.Date = "1/1/2001"; axCalendar1.Value = "1/2/2001"; |
70. How can I change the date that gets the focus
| C# |
|---|
axCalendar1.Date = "1/1/2001"; axCalendar1.FocusDate = "1/2/2001"; |
72. How do I let the tooltip being displayed longer
| C# |
|---|
axCalendar1.ToolTipPopDelay = 10000; axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
73. How can I specify the min and max years to scroll within
| C# |
|---|
axCalendar1.MinScrollYear = 2001; axCalendar1.MaxScrollYear = 2010; |
76. How can I specify the non working days
| C# |
|---|
axCalendar1.NonworkingDays = 6; |
77. How can I show or hide the non working days
| C# |
|---|
axCalendar1.NonworkingDays = 0; |
78. How can I change the pattern or the style to draw the non working days
| C# |
|---|
axCalendar1.NonworkingDays = 6; axCalendar1.NonworkingDaysPattern = EXCALENDARLib.PatternEnum.exPatternCross; |
79. How can I change the color for non working days
| C# |
|---|
axCalendar1.NonworkingDays = 6; axCalendar1.NonworkingDaysPattern = EXCALENDARLib.PatternEnum.exPatternCross; axCalendar1.NonworkingDaysColor = Color.FromArgb(255,0,0); |
80. How can I hide the days that are shown in gray, and doesn' belong to the month
| C# |
|---|
axCalendar1.ShowNonMonthDays = false; |
81. How can I change the color to highlight the dates that have a comment or a tooltip assigned
| C# |
|---|
axCalendar1.CommentBackColor = Color.FromArgb(0,0,0); axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
82. How can I change the visual aspect of the dates that have a comment or a tooltip assigned
| C# |
|---|
EXCALENDARLib.Appearance var_Appearance = axCalendar1.VisualAppearance; var_Appearance.Add(11,"c:\\exontrol\\images\\normal.ebn"); var_Appearance.Add(1,"CP:11 4 2 -2 -2"); (axCalendar1.GetOcx() as EXCALENDARLib.Calendar).CommentBackColor = 0x1000000; axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
83. How can I change the visual aspect of the dates that have a comment or a tooltip assigned
| C# |
|---|
axCalendar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn"); (axCalendar1.GetOcx() as EXCALENDARLib.Calendar).CommentBackColor = 0x1000000; axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; axCalendar1.HideSelection = true; |
84. How can I hide the ticker that's shown for dates that have a tooltip or a comment
| C# |
|---|
axCalendar1.CommentBackColor = axCalendar1.BackColor; axCalendar1.Events.Add(axCalendar1.Date).Comment = "This is a text that shows up when the cursor hovers the date"; |
85. How can I get the first visible date being displayed in the calendar
| C# |
|---|
axCalendar1.ShowNonMonthDays = false; axCalendar1.Events.Add(axCalendar1.FirstVisibleDate).Comment = "This is the first visible date"; |
86. How can I get the last visible date being displayed in the calendar
| C# |
|---|
axCalendar1.ShowNonMonthDays = false; axCalendar1.Events.Add(axCalendar1.LastVisibleDate).Comment = "This is the last visible date"; |
87. How can I bold a date
| C# |
|---|
axCalendar1.Events.Add(axCalendar1.Date).Bold = true; |
88. How can I make italic a date
| C# |
|---|
axCalendar1.Events.Add(axCalendar1.Date).Italic = true; |
89. How can I underline a date
| C# |
|---|
axCalendar1.Events.Add(axCalendar1.Date).Underline = true; |
90. How can I draw a date as strikeout
| C# |
|---|
axCalendar1.Events.Add(axCalendar1.Date).StrikeOut = true; |
91. How can I change the foreground color for a date
| C# |
|---|
axCalendar1.Events.Add(axCalendar1.Date).ForeColor = 255; |
92. How can I change the background color for a date
| C# |
|---|
axCalendar1.Events.Add(axCalendar1.Date).BackColor = 255; |
93. How can I assign any extra data to a date
| C# |
|---|
axCalendar1.Events.Add(axCalendar1.Date).UserData = "your data"; |
94. How can I assign a tooltip or a comment to a date
| C# |
|---|
EXCALENDARLib.event var_event = axCalendar1.Events.Add(axCalendar1.Date); var_event.Comment = "This is a text that shows up when the cursor hovers the date"; var_event.CommentTitle = "T I T L E"; axCalendar1.HideSelection = true; |
95. How can I mark or highlight a date
| C# |
|---|
axCalendar1.Events.Add(axCalendar1.Date).Marker = true; |
96. How can I enable or disable a date
| C# |
|---|
axCalendar1.Events.Add(axCalendar1.Date).Disabled = true; |
97. How can I assign an icon to a date
| C# |
|---|
axCalendar1.AutoSize = false;
axCalendar1.FixedCellWidth = 36;
axCalendar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axCalendar1.Events.Add(axCalendar1.Date).Image = 1;
|
99. How can I clear all events
| C# |
|---|
axCalendar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axCalendar1.Events.Add(axCalendar1.Date).Image = 1;
axCalendar1.Events.Clear();
|
100. How can I count the events
| C# |
|---|
axCalendar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axCalendar1.Events.Add(axCalendar1.Date).Image = 1;
int var_Count = axCalendar1.Events.Count;
|
101. How can I remove an event
| C# |
|---|
axCalendar1.AutoSize = false;
axCalendar1.FixedCellWidth = 36;
axCalendar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
axCalendar1.Events.Add(axCalendar1.Date).Image = 1;
axCalendar1.Events.Remove(axCalendar1.Date);
|