Click here to Skip to main content
Page 1 of 11
Page Size: 10 · 25 · 50


Author filtered by: Pheonyx [x]
Answer 14 May 2013   license: CPOL
you cannot do a logical comparison on an event.ValueChanged is an event on the control not a property.Hence your error.
C#
Answer 13 May 2013   license: CPOL
This article was linked in todays CodeProject news letter, it might give you some hints and tips on how to achieve what you are after:http://endyourif.com/entity-framework-beginners-guide-done-right/[^]
Answer 13 May 2013   license: CPOL
Your issue, I believe relates to the fact that Skip uses defered execution.(see remarks on the following link)http://msdn.microsoft.com/en-us/library/bb358985(v=vs.90).aspx[^]I would suggest breaking the code down a bit:IEnumerable allines =...
C#
Answer 13 May 2013   license: CPOL
You are not setting the Array list to have any objects.You should change your code to do something similar to this:if(MyData.Count
C#
Answer 10 May 2013   license: CPOL
Ahh, I found my issue.It was actually further down in my user control.For those that are interested I was using stackpanel to contain my listbox.As the listbox grew so did the stackpanel (which is how it is meant to behave). However the stackpanel does not stop growing when it reaches...
Question 10 May 2013   license: CPOL
Hi guys,I have an issue that I don't know how to resolve.I am building a WPF C# application using a MVVM approach (well trying).I have a container window that has a menu on the left hand side, on the right different views are loaded depending on which menu option is...
Answer 9 May 2013   license: CPOL
How are you inserting the text to SQL. If you are not already I would suggest using a parametrised query as this should overcome that issue.
C#
Answer 9 May 2013   license: CPOL
I think you are better off doing something like this:Dim elapsedTimeList As New List(Of TimeSpan) elapsedTimeList.Add(sw.Elapsed)Then you can use Linq to get the largest and smallestdim min as timespan = elapsedTimeList.Min();dim max as timespan =...
Answer 9 May 2013   license: CPOL
This might give you a starting point,http://stackoverflow.com/questions/14259262/implementing-ivalueconverter-to-convert-string-to-image[^]You will want to look at how to access resources within a resource dictionary through code as well because that will be how to retrieve the image.
Answer 8 May 2013   license: CPOL
Break it down into chunks. It is only the individual message size limit that is being reached so, if for example you are transmitting a collection of data, send it in chunks rather than all at once.

Page 1 of 11
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid