A C1 Visual Style aware Message Box - Our ComponentOne

Here ware two artcles about how to use the component one Message Box control for Silverlight.  The message box the comes with Silverlight is really limiting. It only allows users to send "OK" and "Cancel" as responses. the Component One version gives a lot more options but the problem is it does not return any values so instead you have to do the following:




C1MessageBox.Show("Do you want to delete?", "The question", C1MessageBoxButton.YesNoCancel, C1MessageBoxIcon.Question,
                new System.Action<MessageBoxResult>((result) =>
                {
                    switch (result)
                    {
                        case MessageBoxResult.Yes:
                            MessageBox.Show("You Pressed Yes");
                            break;
                        case MessageBoxResult.No:
                            MessageBox.Show("You Pressed No");
                            break;
                        case MessageBoxResult.Cancel:
                            MessageBox.Show("Are you sure you want to cancel");
                            break;
                    }
                }));




A C1 Visual Style aware Message Box - Our ComponentOne



and



http://our.componentone.com/groups/topic/c1messageboxresult/

WCF Throttling – Part 1 | Anders Lybecker's Weblog!

This is a great article regarding how WCF web services can be better optimized when running on IIS. I have been running into this problem when two or more users are trying to use my web service at the same time.  I will conduct a few more tests but I think this will solve the problem



WCF Throttling – Part 1 | Anders Lybecker's Weblog!