This blog will hold favorite gadgets and graphic user interfaces that don't really fit in my main blog @ mmcelhaney.blogspot.com
Tuesday, November 3, 2015
GitHub For Beginners: Don't Get Scared, Get Started - ReadWrite
Here is a good article about what GitHub is and how to use it!
GitHub For Beginners: Don't Get Scared, Get Started - ReadWrite
GitHub For Beginners: Don't Get Scared, Get Started - ReadWrite
Silverlight 4.0 feature #1: Right click Mouse events [Context Menu]
Here is some code for get a right-click mouse event to work in silverlight!
Silverlight 4.0 feature #1: Right click Mouse events [Context Menu]
Silverlight 4.0 feature #1: Right click Mouse events [Context Menu]
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:
A C1 Visual Style aware Message Box - Our ComponentOne
and
http://our.componentone.com/groups/topic/c1messageboxresult/
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/
Labels:
ComponentOne,
MessagwBox,
Microsoft Silverlight,
Silverlight
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!
WCF Throttling – Part 1 | Anders Lybecker's Weblog!
Labels:
.Programming,
IIS,
WCF,
WCF Throttling,
Web services
Subscribe to:
Posts (Atom)