• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.

A Modified MonthCalendar Control in C#

Status
Not open for further replies.

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
You have probably been thinking that old Uncle Kreij has been a bit quiet in the Programming
section lately. This should explain a bit about what I've been up to ....

I am writing a business management application for my wife's Massage Therapy business.
While working on the scheduling portion of the application, I wanted to use a
DateTimePicker (DTP) so that she could select dates to view in the scheduler. When you click
on the drop down part of the DTP, it displays a MonthCalendar control.
Unfortunately, the MonthCalendar control that is instantiated from the DTP does
not expose the methods and properties (like bolded dates) that the Normal MonthCalendar
control exposes.

So what is one to do? Write your own custom control :rockout:
I figured that since I had to go through the trouble of writing a custom control, I might as well
add a bunch of funtionality to it.
My new MonthCalendar will allow the following:
..Bolded Dates
..Colored Dates
..Colored Date Backgrounds
..Colored Boxes surrounding the background.
..Any combination of the above.

Okay, first we need something to hold the date information that will be passed to the control
I chose to use an internal class (embedded in the UserControl). I could have used a struct type
but since I wanted it to have multiple constructors I felt that a class was more appropriate.
It is, however, completely valid to write a struct with multiple constructors.
Code:
[color=blue]internal class[/color] [color=teal]HighlightedDates[/color]
{
    [color=blue]public[/color] [color=teal]DateTime[/color] Date;
    [color=blue]public[/color] [color=teal]Point[/color] Position = [color=blue]new[/color] [color=teal]Point[/color](0, 0);
    [color=blue]public[/color] [color=teal]Color[/color] DateColor;
    [color=blue]public[/color] [color=teal]Color[/color] BoxColor;
    [color=blue]public[/color] [color=teal]Color[/color] BackgroundColor;
    [color=blue]public[/color] [color=teal]Boolean[/color] Bold;

    [color=green]// This constructor is used if you only want to make dates bold. All colors are set to "Empty"(null color)[/color]
    [color=blue]public[/color] HighlighedDates([color=teal]DateTime[/color] date);
    {
        [color=blue]this[/color].Date = date;
        [color=blue]this[/color].DateColor = [color=blue]this[/color].BoxColor = [color=blue]this[/color].BackgroundColor = [color=teal]Color[/color].Empty;
        [color=blue]this[/color].Bold = [color=blue]true[/color];
    }

    [color=green]// This constructor is used if you want colored and/or bolded dates[/color]
    [color=blue]public[/color] HighlighedDates([color=teal]DateTime[/color] date, [color=teal]Color[/color] dateColor, [color=teal]Boolean[/color] bold);
    {
        [color=blue]this[/color].Date = date;
        [color=blue]this[/color].DateColor = dateColor;
        [color=blue]this[/color].BoxColor = [color=blue]this[/color].BackgroundColor = [color=teal]Color[/color].Empty;
        [color=blue]this[/color].Bold = bold;
    }

    [color=green]// This constructor is used when you want to control everything[/color]
    [color=blue]public[/color] HighlightedDates([color=teal]DateTime[/color] date, [color=teal]Color[/color] dateColor, [color=teal]Color[/color] boxColor,
                [color=teal]Color[/color] backgroundColor, [color=teal]Boolean[/color] bold)
    {
        [color=blue]this[/color].Date = date;
        [color=blue]this[/color].DateColor = dateColor;
        [color=blue]this[/color].BoxColor = boxColor;
        [color=blue]this[/color].BackgroundColor = backgroundColor;
        [color=blue]this[/color].Bold = bold;
    }
}

Alrighty then, we have our class for date data. Now the fun begins.
We need to create a class that inherits the functionality of the MonthCalendar control
and override stuff so we can draw it the way we want. I named it MonCal. Pretty original, huh?

This class takes as input a typed List (List<T>) of the above class of date information.

The interesting part is that there is no easy way to determine exactly where we want to draw
on the control. The MonthCalendar control is divided into areas, but these areas cannot be accessed
through methods of anykind. Thankfully, we can determine where we are on the control by doing a HitTest
which when given a point on the control will return the area. There are three areas that are of interest to us.
The Date area, PrevMonthDate area, and NextMonthDate area. These are the areas which contain the actual
dates in the control. The rest of the areas are titles, button and other stuff.

The way we have to do the drawing is to override the WndProc method (which is a message pump) and
test for the WM_PAINT message. When we see it, trap on it and call our own custom OnPaint method.
Sounds like fun, right?

So let's do some code.
Code:
[color=blue]internal class[/color] [color=teal]MonCal[/color] : [color=teal]MonthCalendar[/color]
{
    [color=blue]protected static int[/color] WM_PAINT = 0x000F;
    [color=blue]private[/color] [color=teal]Rectangle[/color] dayBox;
    [color=blue]private int[/color] dayTop = 0;
    [color=blue]private[/color] [color=teal]SelectionRange[/color] range;

    [color=blue]private[/color] [color=teal]List[/color]<[color=teal]HighlightedDates[/color]> highlightedDates = [color=blue]new[/color] [color=teal]List[/color]<[color=teal]HighlightedDates[/color]>();

    [color=blue]public[/color] MonCal([color=teal]List[/color]<[color=teal]HighlightedDates[/color]> HighlightedDates)
    {
        [color=blue]this[/color].ShowTodayCircle = [color=blue]false[/color];               
        [color=blue]this[/color].highlightedDates = HighlightedDates;
        range = GetDisplayRange([color=blue]false[/color]);
        SetDayBoxSize();
        SetPosition([color=blue]this[/color].highlightedDates);
    }

    [color=green]// This method figures out the size of the entire date area portion of the control 
     //   and then divides it up o create a Rectagle for painting to individual dates[/color]
    [color=blue]private void[/color] SetDayBoxSize()
    {
        [color=blue]int[/color] bottom = [color=blue]this[/color].Height;

        [color=blue]while[/color] (HitTest(1, dayTop).HitArea != [color=eal]HitArea[/color].Date &&
            HitTest(1, dayTop).HitArea != [color=teal]HitArea[/color].PrevMonthDate) dayTop++;

        [color=blue]while[/color] (HitTest(1, bottom).HitArea != [color=teal]HitArea[/color].Date &&
            HitTest(1, bottom).HitArea != [color=teal]HitArea[/color].NextMonthDate) bottom--;

        dayBox = [color=blue]new[/color] [color=teal]Rectangle[/color]();
        dayBox.Size = [color=blue]new[/color] [color=teal]Size[/color]([color=blue]this[/color].Width / 7, (bottom - dayTop) / 6);
    }

    [color=green]// This method determines where in the 7 x 6 array of dates on the control our highlighted dates reside.[/color]
    [color=blue]private void[/color] SetPosition([color=teal]List[/color]<[color=teal]HighlightedDates[/color]> hlDates)
    {
        [color=blue]int[/color] row = 0, col = 0;

        hlDates.ForEach([color=blue]delegate[/color]([color=teal]HighlightedDates[/color] date)
        {
            [color=blue]if[/color] (date.Date >= range.Start && date.Date <= range.End)
            {
                [color=teal]TimeSpan[/color] span = date.Date.Subtract(range.Start);
                row = span.Days / 7;
                col = span.Days % 7;
                date.Position = [color=blue]new[/color] [color=teal]Point[/color](row, col);
            }
        });
    }

    [color=green]// This overrides the message pump and traps the WM_PAINT call[/color]
    [color=blue]protected override void[/color] WndProc([color=blue]ref[/color] [color=teal]Message[/color] m)
    {
        [color=blue]base[/color].WndProc([color=blue]ref[/color] m);
        [color=blue]if[/color] (m.Msg == WM_PAINT)
        {
            [color=teal]Graphics[/color] g = [color=teal]Graphics[/color].FromHwnd([color=blue]this[/color].Handle);
            [color=teal]PaintEventArgs[/color] pea =
                [color=blue]new[/color] [color=teal]PaintEventArgs[/color](g, [color=blue]new[/color] [color=teal]Rectangle[/color](0, 0, [color=blue]this[/color].Width, [color=blue]this[/color].Height));
            OnPaint(pea);
        }
    }

    [color=green]// Here is where we use our information to selectively draw what we want[/color]
    [color=blue]protected override void[/color] OnPaint([color=teal]PaintEventArgs[/color] e)
    {
        [color=blue]base[/color].OnPaint(e);

        [color=eal]Graphics[/color] g = e.Graphics;
        [color=teal]Rectangle[/color] backgroundRect;

        highlightedDates.ForEach([color=blue]delegate[/color]([color=teal]HighlightedDates[/color] date)
        {
             backgroundRect = [color=blue]new[/color] [color=teal]Rectangle[/color](
                date.Position.Y * dayBox.Width + 1,
                date.Position.X * dayBox.Height + dayTop,
                dayBox.Width, dayBox.Height);

            [color=blue]if[/color] (date.BackgroundColor != [color=teal]Color[/color].Empty)
            {
                [color=blue]using[/color] ([color=teal]Brush[/color] brush = [color=blue]new[/color] [color=teal]SolidBrush[/color](date.BackgroundColor))
                {
                    g.FillRectangle(brush, backgroundRect);
                }

            [color=blue]if[/color] (date.Bold || date.DateColor != [color=teal]Color[/color].Empty)
            {
                [color=blue]using[/color] ([color=teal]Font[/color] textFont =
                    [color=blue]new[/color] [color=teal]Font[/color](Font, (date.Bold ? [color=teal]FontStyle[/color].Bold : [color=teal]FontStyle[/color].Regular)))
                {
                    [color=teal]TextRenderer[/color].DrawText(g, date.Date.Day.ToString(), textFont,
                        backgroundRect, date.DateColor,
                        [color=teal]TextFormatFlags[/color].HorizontalCenter | [color=teal]TextFormatFlags[/color].VerticalCenter);
                }
            }

            [color=blue]if[/color] (date.BoxColor != [color=teal]Color[/color].Empty)
            {
                [color=blue]using[/color] ([color=teal]Pen[/color] pen = [color=blue]new[/color] [color=teal]Pen[/color](date.BoxColor))
                {
                    [color=teal]Rectangle[/color] boxRect = [color=blue]new[/color] [color=teal]Rectangle[/color](
                        date.Position.Y * dayBox.Width + 1,
                        date.Position.X * dayBox.Height + dayTop,
                        dayBox.Width, dayBox.Height);
                    g.DrawRectangle(pen, boxRect);
                }
            }
        });    
    }
}

Hey! That wasn't so bad.
Now all we have to do is make a UserControl that contains and utilizes are classes.

Code:
[color=blue]public partial class[/color] [color=teal]NFXMonthCalendar[/color] : [color=teal]UserControl[/color]
{
    [color=blue]private[/color] [color=teal]List[/color]<[color=teal]HighlightedDates[/color]> highLightedDates;

    [color=blue]public[/color] NFXMonthCalendar()
    {
        InitializeComponent();
         
        [color=green]// Dates would normally be passed in, in a List. For testing purposes I added the next declaration[/color]
        highLightedDates.Add([color=blue]new[/color] [color=teal]HighlightedDates[/color]([color=teal]Convert[/color].ToDateTime([color=red]"9/1/2008"[/color]), 
                    [color=teal]Color[/color].Red, [color=teal]Color[/color].Blue, [color=teal]Color[/color].Pink, [color=blue]true[/color]));

            [color=teal]MonCal[/color] mCal = [color=blue]new[/color] [color=teal]MonCal[/color](highLightedDates);
            [color=blue]this[/color].Controls.Add(mCal);
        }
    }

    [color=green]// Add MonCal class here[/color]

    [color=green]// Add HighlightedDates class here[/color]
}

Since the UserControl was generated in VS, there is some garbage collection and control iniialization
that is not included here.

Here is the ouput in the VS Control tester.
9-1-2008 is our highlighted date. 9-5-2008 is todays date and automatically highlighted by the base MonthCalendar functionaliy,


I have not gotten too detailed on how everything works, so if anyone has any questions or comments or code corrections, feel free to post.

I hope you enjoyed my little tutorial on modifying a MonthCalendar.
Next I will generate a custom DTP that will use this modified MonthCalendar as its drop down.

Have fun coding !!
 
Last edited:

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
Update:

Sometimes yer old Uncle Kreij just ain't thinkin' ...

The original code above used an array of type HighlightedDates as input.
This worked fine, the only problem is that an array in C# is static in size.
That means that means that when you initialize the array you have to know how many array elements you are going to need or you need to initialize the array with the data.

For instance;
string[] myStringArray = new string[5]; (an array that will hold 5 strings)
or
string[] myStringArray = new string[]{ "hello", "how", "are", "you" }; (4 string array)

Since I do not know how many dates will need to be highlighted (that information will be taken from the scheduling database) it makes much more sense to use a typed list (List<T>) that can grow dynamically. You can then just use the List<T>.Add method to insert another entry into the list. The List<T>.ForEach(action) method also makes it pretty easy to iterate through the List.

The code in the original post has been changed to reflect this.
 

cishumate

New Member
Joined
Nov 7, 2008
Messages
2 (0.00/day)
I am really trying to learn this C# stuff. So I have to ask the dumb question. How do I get your control on my form and pass it a few dates to highlight?

I thank you in advance for your reply and for creating the control that I so desperately need.
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
The original code above used an array of type HighlightedDates as input.
This worked fine, the only problem is that an array in C# is static in size.
That means that means that when you initialize the array you have to know how many array elements you are going to need or you need to initialize the array with the data.

...
In complex code, I usually require a static-length array for input because they are easier on the memory. By doing so, it just requires users to use a few extra lines. Something like this:
Code:
// Make the strongly-typed collection.
List<string> templist = new List<string>();
templist.Add("hello");
templist.Add("how");
templist.Add("are");
templist.Add("you");

// Convert the dynamic List to a static array.
string[] array = templist.ToArray();

// Initialize the class with the array.
MonthCalendar cal = new MonthCalendar(array);

The above code is not test and is provided just as an example of how easy it is to turn dynamic to static.

It should also be noted that Lists can occassionally cause issues when used in multithreading. I usually use a static array when changing the length of the array could cause a catastrophic failure while in execution. I use Lists most of the time because the performance of them is actually quite respectable. Not excellant, but respectable. I loaded up over 22 MiB into Lists up to 6 dimensions deep and it wades through the whole lot in under a minute.


How do I get your control on my form and pass it a few dates to highlight?
Heh, he needs to attach the *.cs files (hint, hint)... XD
 
Last edited:

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
True, but I really had no need for the static array at all. The dynamic list served the purpose much better, and you can always set the initial size of the list to a lower value if you do not think you will need a lot of space.

@cishumate : When you create the control in a control library, you just have to add the DLL in your project, and then include the namespace in the "using" statements at the top of your form. If you need more details let me know.

@Wolf2009 : I'll be 50 years old next year. Come on over to WI and see if you can cut more wood with a chainsaw, out ride me on an ATV or drink more beer. ;)
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
True, but I really had no need for the static array at all. The dynamic list served the purpose much better, and you can always set the initial size of the list to a lower value if you do not think you will need a lot of space.
Lists have more overhead no matter what. I almost always use Lists because I won't want to establish a fixed maximum for anything. It's a bad habit of mine. :(


@Cishumate : When you create the control in a control library, you just have to add the DLL in your project, and then include the namespace in the "using" statements at the top of your form. If you need more details let me know.
I don't see any attachments. :confused:
 

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
Yeah, the lists have more overhead, but if your application is not so memory intesive that it requires it they are much more versatile. But also, the conversion of a list to an array (and back if needed) is also quite expensive.

As far as an attachment, I did not include the source for my project.
It's up to you guys to make your own stuff and learn from it. I'm always willling to help in any way that I can, but if I just post plug-in code people don't learn squat. :D
My code is not proprietary, and I could post it, but use your own minds people !!
No one learns when given all the answers, but they do learn when given a start.
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
As far as an attachment, I did not include the source for my project.
You mentioned a DLL but I don't see anything attached.
 

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
You are correct.
People can create a control library and compile it as a DLL.
Then all they have to do is include the DLL in their project.
I'm just posting code for learning, not finished solutions.
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
So, why not release the source or binary in order to save those that need the finished product without taking the time to author their own?

A working example with either thorough commenting or an accompanied tutorial is a better method of learning than a tutorial alone.
 

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
@Ford : I completely understand what you are saying, but much of the code that I post here has limited testing and I do not want to drop something on people only for them to say, "that sucks".
I present code that is proof of a concept that I am working on and works in a limited environment and state.
My goal on this section of the forums is not to give out authored code, but to present a concept I've worked on, show problems that I've solved and get people to understand that coding isn't a chore, it's an adventure (cue cool adventure music).

Thanks for you input and I never considered your posts as fighting words.
I'm always happy to work with anyone on anything to assist them.
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
Hmm...

I respect what you are trying to do but...

I'll leave it at that. :)
 

cishumate

New Member
Joined
Nov 7, 2008
Messages
2 (0.00/day)
Thank you Kreij, I have never done a control before. I will see if there is a project in my Visual Studio 2008 that lets me do that.

I have had great results using Lists to store info in a custom object quickly and easily. I write programs for a small company and so far programming by the seat of my pants has done me well. Glad to hear you have some experience behind you.
 
Joined
Aug 30, 2006
Messages
7,197 (1.12/day)
System Name ICE-QUAD // ICE-CRUNCH
Processor Q6600 // 2x Xeon 5472
Memory 2GB DDR // 8GB FB-DIMM
Video Card(s) HD3850-AGP // FireGL 3400
Display(s) 2 x Samsung 204Ts = 3200x1200
Audio Device(s) Audigy 2
Software Windows Server 2003 R2 as a Workstation now migrated to W10 with regrets.
Knowledge Share. Top marks. +1
 

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
@ Cish : There is a project for creating a control library in VS2008. That is what I use to write code. BTW, seat of the pants programming is the most fun :D I'm not a professional coder and do it for a small company as part of my IT Manager position. I am currently writing a full ERP system (quoting, work orders, purchase orders, labor tracking, etc. etc.) for them. It's lots of fun as long as they don't give you a deadline (which I told them was out of the question since I manage the networks also).

@Ford : Another reason that I post snippets and not full projects is that my I cannot be sure what level of framework people are using. I am running on .Net 3.5 and a lot of people simply do not pull the latest frameworks (I do for coding reasons). That would cause the code to fuss at them and they would have to download anything they do not have just to get things to run.

@Lemon : Thanks. If we gain knowledge and are unwilling to share it, how does that benefit the next generation that will follow?
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
I use .NET 3.5 as well but, if I'm concerned about compatibility, I'll use .NET 2.0. I have yet to use anything .NET 3.5 has added on top of .NET 2.0 so it really doesn't make much difference to me. .NET 1.1 is virtually dead.
 

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
You're right. I could just target the compilation at .net 2.0.
Guess I'm just too lazy to make multiple versions. :D
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
Heh, and I'm too lazy to comment and/or explain code. XD
 

Smurfman87

New Member
Joined
Dec 18, 2008
Messages
1 (0.00/day)
Code Question

Kreij,
I have been messing around with your code example, and basically this seems to be exactly what I am trying to acomplish.

So I built a simple form control in C# (VS2008) and tried to re-create your example.

I am not sure why but I am getting wierd results. One thing is that I created a testForm in my project to add the NFXMonthCalendar to the form. It adds it... but the Date you have hard coded of Dec 1, 2008 is always present on the top left date of the calendar control, it seems too that it is behaving more like the arror button that moves back and forth.

I even converted the code to VB and I still get the same results.

In both cases, I did have to do some modifications to make the code work too.

I wonder if you can clairify if the code has some bugs in it and if I modified it correctly.

For example:

(1) The semi-colon would not compile, and even when removed I had some compile issues so I was forced to remove these two sections and leave only the third. In VB I was able to make it work.
Code:
public HighlighedDates(DateTime date);

public HighlighedDates(DateTime date, Color dateColor, Boolean bold);

(2) There seemed to be a missing semi-colon here, so I added one...
Code:
        highlightedDates.ForEach(delegate(HighlightedDates date)
        {
             backgroundRect = new Rectangle(
                date.Position.Y * dayBox.Width + 1,
                date.Position.X * dayBox.Height + dayTop,
                dayBox.Width, dayBox.Height);

            if (date.BackgroundColor != Color.Empty)
            {
                using (Brush brush = new SolidBrush(date.BackgroundColor))
                {
                    g.FillRectangle(brush, backgroundRect);
                }

************missing semi-colon ? **********

            if (date.Bold || date.DateColor != Color.Empty)
            {
                using (Font textFont =
                    new Font(Font, (date.Bold ? FontStyle.Bold : FontStyle.Regular)))
                {
                    TextRenderer.DrawText(g, date.Date.Day.ToString(), textFont,
                        backgroundRect, date.DateColor,
                        TextFormatFlags.HorizontalCenter | TextFormatFlags.VerticalCenter);
                }
            }

            if (date.BoxColor != Color.Empty)
            {
                using (Pen pen = new Pen(date.BoxColor))
                {
                    Rectangle boxRect = new Rectangle(
                        date.Position.Y * dayBox.Width + 1,
                        date.Position.X * dayBox.Height + dayTop,
                        dayBox.Width, dayBox.Height);
                    g.DrawRectangle(pen, boxRect);
                }
            }
        });

(3) This statement was causing a null exception when trying to add the control to the form.

Code:
private List<HighlightedDates> highLightedDates;

I changed to

Code:
private List<HighlightedDates> highLightedDates = new List<HighlightedDates>();

This got me further along, but again with wierd things going on.

Also, it seems that even with adding the control to the form, nothing is exposed, meaning I can't change the properties of the MonthCalendar in this case MonCal, things like the size ie (4,3) for a full year to show. Also once added, I can't access it to be able to add dates to it.

If you can assist it would be greatly appreciated. I loved how simple the example was, which helping in making a similar VB example. I found one other one but it was way too complicated a control.

Thanks
J
 

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
Yes, there appear to be a couple of typos in the code I posted. I did this one manually and did not copy and paste.

(1) The first two constructors should not have semicolons after the parenthesis. The constructors should work if you remove the semicolons.

(2) Yup, a bracket is missing. There should be no semicolon, but there shoudl be a closing bracket.

Not sure about the null exception, I did not get that. I will have to go back and look at the code as I have not done anything with this lately. I did not post every single line of code so that could be an initializer or something that I did not include to keep the post from getting too long.

Not sure why you cannot access the properties either.

I'll take a look at it when I get a chance.
 
Status
Not open for further replies.
Top