First  |  Prev |  Next  |  Last
Pages: 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
Design time serialization!
Hi! My component has two properties which cause problems with serialization in the IDE: int Field1; MyObject Object1; The MyObject can be (binary) serialized and that works fine on its own. When this object is a property of a component, it can only be edited with the component editor (displaying separate... 15 May 2010 07:13
is dotnet framework 4 compatiable with 3.5 app?
I currently uses 3.5 sp1 with vst 2008, no plan to go to 2010 for at least half a year. However, someone wanted a dump of the crash visual studio 2008 standard and I was not able to get the info they wanted. They suggest if I have dotnet 4 installed I can use another tool to make easier to get the dump they want... 15 May 2010 11:32
Inherit from generic base type
I was expecting the following code to work in C# 4.0: public class MyGenericType<T>: T { //... stuff ... } But it doesn't. Perhaps the syntax is different than what I'm attempting? Or is it just that it still hasn't been implemented and maybe in C# 5.0? http://books.google.com/books... 16 May 2010 05:57
This might seems like a strange question but a Thread can'r run if the main Thread stops
Hi! I just want to make sure that have understood this correct. If the main thread stop than all other thread will stop and the application will exit. So without having a main thread running it's impossible to use any other threads. //Tony ... 15 May 2010 05:05
using the ThreadPool
Hi! At the end is text from the e-learning. I just made a check I started 100 threads from the Threadpool and used a very long sleep for each one and it worked to create at least 100 threads. So what the text say about 25 is that wrong perhaps ? There is a limit of 25 threads in a thread pool; therefore, ev... 17 May 2010 14:40
2-dimensional array
How do I create an array like the following which contains string and integer? string[,] siblings = { {"Mike", 28}, {"Mary", 25}, {"John", 31} }; ... 20 May 2010 11:40
When to use ThreadPool
Hi! Here is some text from e-learning. What does it mean when the text says "don't require scheduling of your thread's execution" ? *ThreadPool class is best suited for use when your threads are performing short tasks or when you don't require scheduling of your thread's execution.* //Tony ... 14 May 2010 19:26
No really - How Do You Play A Flash File in WPF
I've searched all over the place, tried all kinds of things and I can't get a Flash file to play in WPF. Here's the code I'm using: private void WindowLoaded(object sender, RoutedEventArgs e) { System.Windows.Forms.Integration.WindowsFormsHost host = new System.Windows.Forms.Int... 14 May 2010 16:08
Report Viewer Memory Leak
It seems there is a bug in the report viewer control which leaks memory which using it as a local report. Here is the discussion and the possible solution - https://connect.microsoft.com/VisualStudio/feedback/details/527451/ms-report-viewer-memory-leak-any-update-fix-winforms-application?wa=wsignin1.0 J.Marsch w... 14 May 2010 10:37
asp.net C# calling VB dll function
Hi All, I have a DLL created by VB.net with the following function: Public Shared Function Upload(ByRef thePage As Page) As String I have no problem calling from a VB.net ASPX page, but having problem with C# page with the following call: protected void Page_Init(object sender, EventArgs e) { string m... 14 May 2010 09:30
First  |  Prev |  Next  |  Last
Pages: 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44