User Sean Turner - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T09:27:51Zhttp://stackoverflow.com/feeds/user/96894http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/992241/what-does-cannot-modify-the-logical-children-for-this-node-at-this-time-because-a2What does Cannot modify the logical children for this node at this time because a tree walk is in progress mean?Sean Turner2009-06-14T05:27:10Z2009-08-25T13:01:59Z
<p>Hi, </p>
<p>I am setting the DataContext of an object in the completed method of a background worker thread. For some reason, I get an error saying: </p>
<p>Cannot modify the logical children for this node at this time because a tree walk is in progress pointing to the Chart1.DataContext=allDates line. </p>
<p>What does a tree walk is in progress mean? I've tried doing this set using a Dispatcher operation as well and that gives the same error... Any ideas? Google yeilds nothing on this error message. </p>
<p>The code taht's causing this is internal to Microsoft's Charting toolkit... I wonder if I've found a bug in their control...</p>
<p>Without Dispatcher:</p>
<pre><code> void bg_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
ArticlesPerTimePeriodResult result = (ArticlesPerTimePeriodResult)e.Result;
lvArticles.ItemsSource = result.DatesOfArticles;
Chart1.DataContext = result.AllDates;
}
</code></pre>
<p>With Dispatcher:</p>
<pre><code> void bg_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
ArticlesPerTimePeriodResult result = (ArticlesPerTimePeriodResult)e.Result;
lvArticles.ItemsSource = result.DatesOfArticles;
Dispatcher.BeginInvoke((Action<List<KeyValuePair<DateTime,int>>>)(delegate(List<KeyValuePair<DateTime,int>> allDates)
{
Chart1.DataContext = allDates;
}), result.AllDates);
//Chart1.DataContext = result.AllDates;
}
</code></pre>
<p>Error:</p>
<pre><code>System.Reflection.TargetInvocationException was unhandled
Message="Exception has been thrown by the target of an invocation."
Source="mscorlib"
StackTrace:
at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
at System.Delegate.DynamicInvokeImpl(Object[] args)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at System.Threading.ExecutionContext.runTryCode(Object userData)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.TranslateAndDispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Application.RunInternal(Window window)
at NewsCluesWpf.App.Main() in C:\SoftwareInstall\VSProjects\NewsClues\NewsCluesWpf\obj\Debug\App.g.cs:line 0
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.Runtime.Hosting.ApplicationActivator.CreateInstance(ActivationContext activationContext, String[] activationCustomData)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssemblyDebugInZone()
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException: System.InvalidOperationException
Message="Cannot modify the logical children for this node at this time because a tree walk is in progress."
Source="PresentationFramework"
StackTrace:
at System.Windows.FrameworkElement.AddLogicalChild(Object child)
at System.Windows.Controls.UIElementCollection.InsertInternal(Int32 index, UIElement element)
at System.Windows.Controls.DataVisualization.ObservableCollectionListAdapter`1.<>c__DisplayClass1.<OnCollectionChanged>b__0(T item, Int32 index)
at System.Windows.Controls.DataVisualization.EnumerableFunctions.ForEachWithIndex[T](IEnumerable`1 that, Action`2 action)
at System.Windows.Controls.DataVisualization.ObservableCollectionListAdapter`1.OnCollectionChanged(Object sender, NotifyCollectionChangedEventArgs e)
at System.Collections.ObjectModel.ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e)
at System.Collections.ObjectModel.ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedAction action, Object item, Int32 index)
at System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)
at System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection`1.InsertItem(Int32 index, T item)
at System.Collections.ObjectModel.Collection`1.Insert(Int32 index, T item)
at System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1.<>c__DisplayClass14.<>c__DisplayClass16.<ChildCollectionCollectionChanged>b__f(ReadOnlyObservableCollection`1 that)
at System.Windows.Controls.DataVisualization.ReadOnlyObservableCollection`1.Mutate(Action`1 action)
at System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1.<>c__DisplayClass14.<ChildCollectionCollectionChanged>b__e(T item, Int32 index)
at System.Windows.Controls.DataVisualization.EnumerableFunctions.ForEachWithIndex[T](IEnumerable`1 that, Action`2 action)
at System.Windows.Controls.DataVisualization.AggregatedObservableCollection`1.ChildCollectionCollectionChanged(Object sender, NotifyCollectionChangedEventArgs e)
at System.Collections.ObjectModel.ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e)
at System.Collections.ObjectModel.ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedAction action, Object item, Int32 index)
at System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)
at System.Collections.ObjectModel.Collection`1.Add(T item)
at System.Windows.Controls.DataVisualization.Charting.Chart.AddAxisToChartArea(Axis axis)
at System.Windows.Controls.DataVisualization.Charting.Chart.ActualAxesCollectionChanged(Object sender, NotifyCollectionChangedEventArgs e)
at System.Collections.Specialized.NotifyCollectionChangedEventHandler.Invoke(Object sender, NotifyCollectionChangedEventArgs e)
at System.Collections.ObjectModel.ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e)
at System.Collections.ObjectModel.ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedAction action, Object item, Int32 index)
at System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item)
at System.Windows.Controls.DataVisualization.UniqueObservableCollection`1.InsertItem(Int32 index, T item)
at System.Collections.ObjectModel.Collection`1.Add(T item)
at System.Windows.Controls.DataVisualization.Charting.DataPointSeriesWithAxes.GetAxes(DataPoint firstDataPoint, Func`2 independentAxisPredicate, Func`1 independentAxisFactory, Func`2 dependentAxisPredicate, Func`1 dependentAxisFactory)
at System.Windows.Controls.DataVisualization.Charting.AreaSeries.GetAxes(DataPoint firstDataPoint)
at System.Windows.Controls.DataVisualization.Charting.DataPointSeriesWithAxes.GetAxes()
at System.Windows.Controls.DataVisualization.Charting.DataPointSeriesWithAxes.OnDataPointsChanged(IList`1 newDataPoints, IList`1 oldDataPoints)
at System.Windows.Controls.DataVisualization.Charting.DataPointSingleSeriesWithAxes.OnDataPointsChanged(IList`1 newDataPoints, IList`1 oldDataPoints)
at System.Windows.Controls.DataVisualization.Charting.LineAreaBaseSeries`1.OnDataPointsChanged(IList`1 newDataPoints, IList`1 oldDataPoints)
at System.Windows.Controls.DataVisualization.Charting.DataPointSeries.LoadDataPoints(IEnumerable newItems, IEnumerable oldItems)
at System.Windows.Controls.DataVisualization.Charting.DataPointSeries.Refresh()
at System.Windows.Controls.DataVisualization.Charting.DataPointSeries.OnItemsSourceChanged(IEnumerable oldValue, IEnumerable newValue)
at System.Windows.Controls.DataVisualization.Charting.DataPointSeries.OnItemsSourceChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, OperationType operationType)
at System.Windows.DependencyObject.InvalidateProperty(DependencyProperty dp)
at System.Windows.Data.BindingExpression.Invalidate(Boolean isASubPropertyChange)
at System.Windows.Data.BindingExpression.TransferValue(Object newValue, Boolean isASubPropertyChange)
at System.Windows.Data.BindingExpression.Activate(Object item)
at System.Windows.Data.BindingExpression.HandlePropertyInvalidation(DependencyObject d, DependencyPropertyChangedEventArgs args)
at System.Windows.Data.BindingExpression.OnPropertyInvalidation(DependencyObject d, DependencyPropertyChangedEventArgs args)
at System.Windows.DependentList.InvalidateDependents(DependencyObject source, DependencyPropertyChangedEventArgs sourceArgs)
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, OperationType operationType)
at System.Windows.TreeWalkHelper.OnInheritablePropertyChanged(DependencyObject d, InheritablePropertyChangeInfo info)
at System.Windows.DescendentsWalker`1._VisitNode(DependencyObject d)
at System.Windows.DescendentsWalker`1.WalkLogicalChildren(FrameworkElement feParent, FrameworkContentElement fceParent, IEnumerator logicalChildren)
at System.Windows.DescendentsWalker`1.WalkFrameworkElementLogicalThenVisualChildren(FrameworkElement feParent, Boolean hasLogicalChildren)
at System.Windows.DescendentsWalker`1.IterateChildren(DependencyObject d)
at System.Windows.DescendentsWalker`1._VisitNode(DependencyObject d)
at System.Windows.DescendentsWalker`1.WalkLogicalChildren(FrameworkElement feParent, FrameworkContentElement fceParent, IEnumerator logicalChildren)
at System.Windows.DescendentsWalker`1.WalkFrameworkElementLogicalThenVisualChildren(FrameworkElement feParent, Boolean hasLogicalChildren)
at System.Windows.DescendentsWalker`1.IterateChildren(DependencyObject d)
at System.Windows.DescendentsWalker`1._VisitNode(DependencyObject d)
at System.Windows.DescendentsWalker`1.WalkLogicalChildren(FrameworkElement feParent, FrameworkContentElement fceParent, IEnumerator logicalChildren)
at System.Windows.DescendentsWalker`1.WalkFrameworkElementLogicalThenVisualChildren(FrameworkElement feParent, Boolean hasLogicalChildren)
at System.Windows.DescendentsWalker`1.IterateChildren(DependencyObject d)
at System.Windows.DescendentsWalker`1._VisitNode(DependencyObject d)
at System.Windows.DescendentsWalker`1.WalkLogicalChildren(FrameworkElement feParent, FrameworkContentElement fceParent, IEnumerator logicalChildren)
at System.Windows.DescendentsWalker`1.WalkFrameworkElementLogicalThenVisualChildren(FrameworkElement feParent, Boolean hasLogicalChildren)
at System.Windows.DescendentsWalker`1.IterateChildren(DependencyObject d)
at System.Windows.DescendentsWalker`1._VisitNode(DependencyObject d)
at System.Windows.DescendentsWalker`1.WalkFrameworkElementLogicalThenVisualChildren(FrameworkElement feParent, Boolean hasLogicalChildren)
at System.Windows.DescendentsWalker`1.IterateChildren(DependencyObject d)
at System.Windows.DescendentsWalker`1.StartWalk(DependencyObject startNode, Boolean skipStartNode)
at System.Windows.TreeWalkHelper.InvalidateOnInheritablePropertyChange(FrameworkElement fe, FrameworkContentElement fce, InheritablePropertyChangeInfo info, Boolean skipStartNode)
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, OperationType operationType)
at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, OperationType operationType, Boolean isInternal)
at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object value)
at System.Windows.FrameworkElement.set_DataContext(Object value)
at NewsCluesWpf.ArticlesPerDay.<bg_RunWorkerCompleted>b__1(List`1 allDates) in C:\SoftwareInstall\VSProjects\NewsClues\NewsCluesWpf\ArticlesPerDay.xaml.cs:line 72
InnerException:
</code></pre>
http://stackoverflow.com/questions/992241/what-does-cannot-modify-the-logical-children-for-this-node-at-this-time-because-a/992289#9922891Answer by Sean Turner for What does Cannot modify the logical children for this node at this time because a tree walk is in progress mean?Sean Turner2009-06-14T06:15:48Z2009-06-14T06:15:48Z<p>After playing around more, I think this is a bug in the Silverlight charting toolkit. </p>
<p>The following code causes a reproduceable crash. </p>
<pre><code>int runCount = 0;
private void bindChart(string searchString)
{
List<KeyValuePair<DateTime, int>> dataEmpty = new List<KeyValuePair<DateTime, int>>();
List<KeyValuePair<DateTime, int>> dataFilled = new List<KeyValuePair<DateTime, int>>();
dataFilled.Add(new KeyValuePair<DateTime, int>(DateTime.Today, 1));
if (runCount == 0)
{
Chart1.DataContext= dataEmpty;
}
else
{
Chart1.DataContext = dataFilled;
}
runCount++;
}
</code></pre>
<p>XAML:</p>
<pre><code><charting:Chart Grid.Row="0"
Title="Title"
LegendTitle="Legend" Name="Chart1" Grid.RowSpan="2">
<charting:AreaSeries ItemsSource="{Binding}"
DependentValuePath="Value"
IndependentValuePath="Key"
Background="Red" />
</charting:Chart>
</code></pre>
<p>This will fail on the second call to bindChart. </p>
http://stackoverflow.com/questions/890171/algorithm-to-divide-a-list-of-numbers-into-2-equal-sum-lists/890237#8902372Answer by Sean Turner for Algorithm to Divide a list of numbers into 2 equal sum listsSean Turner2009-05-20T21:02:32Z2009-05-20T21:02:32Z<p>Well, you can find a solution to a percentage precision in polynomial time, but to actually find the optimal (absolute minimal difference) solution, the problem is NP-complete. This means that there is no polynomial time solution to the problem. As a result, even with a relatively small list of numbers, it is too compute intensive to solve. If you really need a solution, take a look at some of the approximation algorithms for this. </p>
<p><a href="http://en.wikipedia.org/wiki/Subset_sum_problem" rel="nofollow">http://en.wikipedia.org/wiki/Subset_sum_problem</a> </p>
http://stackoverflow.com/questions/855985/invoke-delegate-for-many-controls/855993#8559931Answer by Sean Turner for Invoke delegate for many controlsSean Turner2009-05-13T03:58:34Z2009-05-13T03:58:34Z<p>How about something like:</p>
<pre><code>Dispatcher.BeginInvoke(new DispatcherOperationCallback((param) =>
{
this.statusDisplay1.CallStatus = callStatusMsg;
return null;
}), DispatcherPriority.Background, new object[] { null });
}
</code></pre>
http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql/855844#8558440Answer by Sean Turner for How to request a random row in SQL?Sean Turner2009-05-13T02:52:50Z2009-05-13T02:52:50Z<p>Be careful because TableSample doesn't actually return a random sample of rows. It directs your query to look at a random sample of the 8KB pages that make up your row. Then, your query is executed against the data contained in these pages. Because of how data may be grouped on these pages (insertion order, etc), this could lead to data that isn't actually a random sample. </p>
<p>See: <a href="http://www.mssqltips.com/tip.asp?tip=1308" rel="nofollow">http://www.mssqltips.com/tip.asp?tip=1308</a></p>
<p>This MSDN page for TableSample includes an example of how to generate an actualy random sample of data.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms189108.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms189108.aspx</a> </p>
http://stackoverflow.com/questions/775038/how-to-get-httpwebrequest-allowautoredirect-to-set-the-cookies-when-doing-a-get-p/808386#8083860Answer by Sean Turner for How to get HttpWebRequest.AllowAutoRedirect to set the cookies when doing a GET/POST on the redrected page?Sean Turner2009-04-30T18:28:40Z2009-04-30T18:28:40Z<p>If you don't want to use a CookieContainer, the following code will access a page, providing the cookie in the parameter. Then, it will download all cookies set by that page and return them as a List of strings. </p>
<p>Note that AllowAutoRedirect is set to false. If you want to follow the redirect, pull that object out of the HttpWebResponse headers and then manually construct another web request. </p>
<pre><code>Public Shared Function GetCookiesSetByPage(ByVal strUrl As String, ByVal cookieToProvide As String) As IEnumerable(Of String)
Dim req As System.Net.HttpWebRequest
Dim res As System.Net.HttpWebResponse
Dim sr As System.IO.StreamReader
'--notice that the instance is created using webrequest
'--this is what microsoft recomends
req = System.Net.WebRequest.Create(strUrl)
'set the standard header information
req.Accept = "*/*"
req.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705)"
req.ContentType = "application/x-www-form-urlencoded"
req.AllowAutoRedirect = False
req.Headers.Add(HttpRequestHeader.Cookie, cookieToProvide)
res = req.GetResponse()
'read in the page
sr = New System.IO.StreamReader(res.GetResponseStream())
Dim strResponse As String = sr.ReadToEnd
'Get the cooking from teh response
Dim strCookie As String = res.Headers(System.Net.HttpResponseHeader.SetCookie)
Dim strRedirectLocation As String = res.Headers(System.Net.HttpResponseHeader.Location)
Dim result As New List(Of String)
If Not strCookie = Nothing Then
result.Add(strCookie)
End If
result.Add(strRedirectLocation)
Return result
End Function
</code></pre>
http://stackoverflow.com/questions/767236/reading-custom-httpwebresponse-statusdescription/806395#8063950Answer by Sean Turner for Reading custom HttpWebResponse StatusDescription?Sean Turner2009-04-30T11:01:45Z2009-04-30T11:01:45Z<p>I think your issue is that your status code is 500. When the status code isn't OK (200 or some type of redirect), WebRequest.GetResponse() call throws a WebException in .NET. </p>
<p>This exception will actually contain the HttpWebResponse object with the StatusDescription set. The samples below are from MSDN:</p>
<pre><code>public static void GetPage(String url)
{
try
{
// Creates an HttpWebRequest for the specified URL.
HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(url);
// Sends the HttpWebRequest and waits for a response.
HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
if (myHttpWebResponse.StatusCode == HttpStatusCode.OK)
Console.WriteLine("\r\nResponse Status Code is OK and StatusDescription is: {0}",
myHttpWebResponse.StatusDescription);
// Releases the resources of the response.
myHttpWebResponse.Close();
}
catch(WebException e)
{
Console.WriteLine("\r\nWebException Raised. The following error occured : {0}",e.Status);
}
catch(Exception e)
{
Console.WriteLine("\nThe following Exception was raised : {0}",e.Message);
}
}
</code></pre>
<p>Source: <a href="http://msdn.microsoft.com/en-us/library/system.net.httpwebresponse.statuscode.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.httpwebresponse.statuscode.aspx</a></p>
<p>To actually get at the status, you'll need to get the HttpWebResponse object from the exception itself:</p>
<pre><code>try {
// Create a web request for an invalid site. Substitute the "invalid site" strong in the Create call with a invalid name.
HttpWebRequest myHttpWebRequest = (HttpWebRequest) WebRequest.Create("invalid site");
// Get the associated response for the above request.
HttpWebResponse myHttpWebResponse = (HttpWebResponse) myHttpWebRequest.GetResponse();
myHttpWebResponse.Close();
}
catch(WebException e) {
Console.WriteLine("This program is expected to throw WebException on successful run."+
"\n\nException Message :" + e.Message);
if(e.Status == WebExceptionStatus.ProtocolError) {
Console.WriteLine("Status Code : {0}", ((HttpWebResponse)e.Response).StatusCode);
Console.WriteLine("Status Description : {0}", ((HttpWebResponse)e.Response).StatusDescription);
}
}
catch(Exception e) {
Console.WriteLine(e.Message);
}
</code></pre>
<p>Source: <a href="http://msdn.microsoft.com/en-us/library/system.net.webexception.status.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.webexception.status.aspx</a> </p>
http://stackoverflow.com/questions/806317/include-my-code-to-windows-forms-application/806328#806328-1Answer by Sean Turner for Include my code to windows forms applicationSean Turner2009-04-30T10:35:28Z2009-04-30T10:35:28Z<p>You can add both projects to a single solution in VS. Then, simply reference your console project from your Winforms project. This way, both your console and your Winforms project can share code. </p>
<p>You could also copy your code to your Winforms project from the console project. You can simply copy and paste within visual stuio, or right click on the project in the Solution Explorer, select Add, then select Existing Item. Navigate to the .vb or .cs file in the selector and pick your old files. </p>
<p>If you're looking for where the "code" is in a winforms application, just double click a blank space on the form. The "code-behind file" will come up. The Form.Loaded event handler is almost equivalent to the main method in your console application. </p>
http://stackoverflow.com/questions/805160/how-can-i-get-the-results-of-a-perl-script-in-python-script/805185#8051852Answer by Sean Turner for How can I get the results of a Perl script in Python script?Sean Turner2009-04-30T02:51:05Z2009-04-30T02:51:05Z<p>You could serialize the results to some sort of a string format, print this to standard output in the Perl script. Then, from python call the perl script and redirect the results of stdout to a variable in python. </p>
http://stackoverflow.com/questions/798016/vcalendar-show-as-free-busy-tentative-out-of-office/800315#8003151Answer by Sean Turner for vCalendar - show as (Free/Busy/Tentative/Out of Office)Sean Turner2009-04-28T23:50:19Z2009-04-29T08:07:22Z<p>Which status field do you mean? Do you mean when replying to a meeting request or when sending information about a meeting? </p>
<p>Either way, the answer is in the vCalendar standard document. I think you mean the STATUS field. Wikipedia has an example of this field as: </p>
<pre><code>BEGIN:VCALENDAR
VERSION:1.0
BEGIN:VEVENT
CATEGORIES:MEETING
STATUS:TENTATIVE
DTSTART:19960401T033000Z
DTEND:19960401T043000Z
SUMMARY:Your Proposal Review
DESCRIPTION:Steve and John to review newest proposal material
CLASS:PRIVATE
END:VEVENT
END:VCALENDAR
</code></pre>
<p><a href="http://en.wikipedia.org/wiki/VCalendar#vCalendar_1.0" rel="nofollow">http://en.wikipedia.org/wiki/VCalendar#vCalendar_1.0</a> </p>
<p>The standards document for the format is: <a href="http://www.ietf.org/rfc/rfc2445.txt" rel="nofollow">http://www.ietf.org/rfc/rfc2445.txt</a></p>
<p>You might also try creating an event in outlook, saving it as a vCard, and then opening the vCard in notepad. This will show you how outlook saves the information. </p>
<p>The documentation leads me to believe that you can only set a Busy or Tentative status: </p>
<blockquote>
<p>4.8.1.11 Status</p>
<p>Property Name: STATUS</p>
<p>Purpose: This property defines the
overall status or confirmation for<br />
the calendar component.</p>
<p>Value Type: TEXT</p>
<p>Property Parameters: Non-standard
property parameters can be<br />
specified on this property.</p>
<p>Conformance: This property can be
specified in "VEVENT", "VTODO" or<br />
"VJOURNAL" calendar components.</p>
<p>Description: In a group scheduled
calendar component, the property is<br />
used by the "Organizer" to provide a
confirmation of the event to the<br />
"Attendees". For example in a "VEVENT"
calendar component, the "Organizer"
can indicate that a meeting is
tentative, confirmed or cancelled.
In a "VTODO" calendar component, the
"Organizer" can indicate that an
action item needs action, is
completed, is in process or being
worked on, or has been cancelled. In a
"VJOURNAL" calendar component, the
"Organizer" can indicate that a
journal entry is draft, final or
has been cancelled or removed.</p>
<p>Format Definition: The property is
defined by the following notation:</p>
<pre><code> status = "STATUS" statparam] ":" statvalue CRLF
statparam = *(";" xparam)
statvalue = "TENTATIVE" ;Indicates event is
;tentative.
/ "CONFIRMED" ;Indicates event is
;definite.
/ "CANCELLED" ;Indicates event was
;cancelled.
;Status values for a "VEVENT"
</code></pre>
</blockquote>
http://stackoverflow.com/questions/801284/is-there-a-tool-to-monitor-synchronisation-objects-mutex-events-semaphores-in/801316#8013161Answer by Sean Turner for Is there a tool to monitor synchronisation objects (mutex, events, semaphores) in Windows?Sean Turner2009-04-29T07:50:05Z2009-04-29T07:50:05Z<p>Take a look at Intel's ThreadChecker and Parallel Studio. Most of their tools sit on top of Visual Studio. </p>
<p><a href="http://software.intel.com/en-us/intel-vtune/" rel="nofollow">http://software.intel.com/en-us/intel-vtune/</a></p>
<p><a href="http://software.intel.com/en-us/intel-thread-checker/" rel="nofollow">http://software.intel.com/en-us/intel-thread-checker/</a> </p>
<p><a href="http://software.intel.com/en-us/intel-vtune/" rel="nofollow">http://software.intel.com/en-us/intel-vtune/</a></p>
http://stackoverflow.com/questions/791788/what-kind-of-jobs-are-out-there-for-someone-who-is-interested-in-language-design/801282#8012820Answer by Sean Turner for What kind of jobs are out there for someone who is interested in language design?Sean Turner2009-04-29T07:38:33Z2009-04-29T07:38:33Z<p>To add on to what JonnyBoats was saying, take a look at the Oslo / m from Microsoft. This is Microsoft's latest toolset for creating domain specific languages. </p>
<p><a href="http://msdn.microsoft.com/en-us/oslo/default.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/oslo/default.aspx</a> </p>
http://stackoverflow.com/questions/801237/windows-form-application/801271#8012711Answer by Sean Turner for windows form applicationSean Turner2009-04-29T07:33:26Z2009-04-29T07:33:26Z<p>Binary search is already built in to the .NET framework. </p>
<p>VB:</p>
<pre><code> Dim foo As New Collections.Generic.List(Of Integer)
foo.BinarySearch(3)
</code></pre>
<p>C#: </p>
<pre><code>List<Integer> foo = new List<Integer>();
foo.BinarySearch(3);
</code></pre>
<p>You could also write a C++ based WinForm if you want to write everything in C++...</p>
http://stackoverflow.com/questions/796290/display-row-tooltip-in-wpf-datagrid/796970#7969704Answer by Sean Turner for Display Row Tooltip in WPF DataGridSean Turner2009-04-28T09:20:46Z2009-04-28T09:28:53Z<p>Figured it out... took me about 6 hours...</p>
<p>For some reason, I can't set the value directly using Value.Setter. If I define the content for the tooltip as a static resource though, and then set it in the Style property of the DataGrid.RowStyle it works. </p>
<p>So, the datagrid row style looks like:
</p>
<pre><code> <Style TargetType="{x:Type dg:DataGridRow}">
<Setter Property="ToolTip" Value="{StaticResource resKWIC}">
</Setter>
</Style>
</dg:DataGrid.RowStyle>
</code></pre>
<p>And the resource is</p>
<pre><code><Window.Resources>
<StackPanel x:Key="resKWIC">
<TextBlock>f1</TextBlock>
<TextBlock>f2></TextBlock>
</StackPanel>
</Window.Resources>
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/796290/display-row-tooltip-in-wpf-datagrid2Display Row Tooltip in WPF DataGridSean Turner2009-04-28T04:57:01Z2009-04-28T09:28:53Z
<p>I'm using a the WPF datagrid from the Microsoft CodePlex project. I have a custom control that I want to databind to a field from the row of the datagrid. I can't for the life of me figure out how to specify a tooltip on a datagrid row. </p>
<p>The closest I've come is to use a RowStyle with a Setter to set the tooltip, but this only seems to work for text. When I try to put a ControlTempalte in as the Value for the ToolTip, it displays the result of calling ToString on the ControlTemplate type. </p>
<p>I think I need to set the "Template" property of the ToolTip, but I can't seem to figure out how to do that... </p>
<pre><code> <dg:DataGrid Name="dgResults" AutoGenerateColumns="True">
<dg:DataGrid.RowStyle >
<Style TargetType="{x:Type dg:DataGridRow}">
<Setter Property="ToolTip" >
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToolTip}">
<StackPanel>
<TextBlock>txt1</TextBlock><TextBlock>txt2</TextBlock>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</dg:DataGrid.RowStyle>
</dg:DataGrid>
</code></pre>
http://stackoverflow.com/questions/469382/what-differs-in-developing-critical-systems/796997#7969970Answer by Sean Turner for What differs in developing critical systems?Sean Turner2009-04-28T09:27:56Z2009-04-28T09:27:56Z<p>I've done some work on air traffic control systems. They do some formal algorithm proofs to mathematically prove the correctness of some of the functions. </p>
http://stackoverflow.com/questions/75014/detecting-concurrent-modifications/796493#7964930Answer by Sean Turner for Detecting concurrent modifications?Sean Turner2009-04-28T06:41:48Z2009-04-28T06:41:48Z<p>You can also synchronize over iteratins over the list. </p>
<pre><code>List<String> safeList = Collections.synchronizedList( originalList );
public void doSomething() {
synchronized(safeList){
for(String s : safeList){
System.out.println(s);
}
}
}
</code></pre>
<p>This will lock the list on synchronization and block all threads that try to access the list while you edit it or iterate over it. The downside is that you create a bottleneck.</p>
<p>This saves some memory over the .clone() method and might be faster depending on what you're doing in the iteration... </p>
http://stackoverflow.com/questions/796430/how-to-get-cpu-usage/796470#7964700Answer by Sean Turner for How to get CPU usage?Sean Turner2009-04-28T06:30:01Z2009-04-28T06:30:01Z<p>You can do it in .NET at least using the WMI API. WMI allows you to get a bunch of Windows Management type data such as CPU usage, hardare specs, etc. </p>
<p><a href="http://www.aspfree.com/c/a/VB.NET/WMI-Programming-with-Visual-BasicNET-What-is-the-WQL/" rel="nofollow">http://www.aspfree.com/c/a/VB.NET/WMI-Programming-with-Visual-BasicNET-What-is-the-WQL/</a> </p>
http://stackoverflow.com/questions/743288/java-synchronization-utility/796451#7964510Answer by Sean Turner for Java: Synchronization UtilitySean Turner2009-04-28T06:23:02Z2009-04-28T06:23:02Z<p>The overhead from reflection would also reduce the speedup that you'd get by threading your code... </p>
http://stackoverflow.com/questions/361182/if-you-could-only-ask-1-interview-question-for-a-programmer-what-would-it-be/796303#7963030Answer by Sean Turner for If you could only ask 1 interview question for a programmer, what would it be?Sean Turner2009-04-28T05:06:45Z2009-04-28T05:06:45Z<p>This question works decently well for new college grads:</p>
<p>Explain the code you wrote 2 weeks ago. </p>
<p>Many students are not able to explain the design choices they made in the code they just wrote. If their answer ultimately boils down to, "Well, because that's what the teacher told us to write, don't hire." </p>
http://stackoverflow.com/questions/992241/what-does-cannot-modify-the-logical-children-for-this-node-at-this-time-because-a/992289#992289Comment by Sean Turner on What does Cannot modify the logical children for this node at this time because a tree walk is in progress mean?Sean Turner2009-07-12T09:53:37Z2009-07-12T09:53:37ZI filed a bug on CodePlex. It turns out this is a bug in the chart framework. See <a href="http://silverlight.codeplex.com/WorkItem/View.aspx?WorkItemId=3258" rel="nofollow">silverlight.codeplex.com/WorkItem/…</a>
There is a workaround. Set teh chart's DataPointSeries Items source instead of the data context:
(Chart1.Series[0] as DataPointSeries).ItemsSource = dataEmpty;http://stackoverflow.com/questions/796290/display-row-tooltip-in-wpf-datagrid/796595#796595Comment by Sean Turner on Display Row Tooltip in WPF DataGridSean Turner2009-04-28T09:17:12Z2009-04-28T09:17:12ZYou would think so, but this doesn't work. Gives exception:
Cannot add content of type 'System.Windows.Controls.StackPanel' to an object of type 'System.Object'. Error at object 'System.Windows.Controls.StackPanel' in markup file 'NewsCluesWpf;component/processdictionary.xaml' Line 31 Position 31.