| Thread | Last Post | Replies |
|
| C# analog's of Java classes | 24 Dec 2006 18:30 GMT | 9 |
Is there any resource where someone who is familiar with Java might find which .NET classes are similar to classes they are familiar with in Java? For example, I have a project that I'd like to tackle as a learning project. In Java, I'd subclass the Panel or JPanel class. Is
|
| How to get a default instance of built-in type? | 24 Dec 2006 18:27 GMT | 4 |
Lets say I want to get the default value for a system type... how would I implement the following function: public object DefaultValueOfType(Type t) {
|
| Video and .Net Framework | 24 Dec 2006 15:26 GMT | 1 |
I want to create project with video abilities. Here is short description of my needs: Application needs to be done with .NET Framework. Application should consist from two parts:
|
| Can a method know the name of the calling class & method? | 24 Dec 2006 15:12 GMT | 4 |
I want to write a logging method. I want it to log the name of the calling class and method. Is there any way to do this? I presume it'll use Reflection but it's not an area I've used much.a Alternatively, is there a piece of code I can use to pass in the name
|
| How can I open Form2 from Form1.. using same window | 24 Dec 2006 14:17 GMT | 4 |
I want to Open Form2 from Form1 when Button pressed. When Form2 Opens I want it to be opened in the same window..but diffrent login ... Like Explorer.
|
| tutorial on html help workshop | 24 Dec 2006 10:15 GMT | 1 |
Could someone point me to a simple to follow tutorial on using html help workshop? Or even a step by step approach that is not so complex? I have downloaded the program but I find it hard to follow the process to develop a chm file for my application.
|
| get processes ID and Kill | 24 Dec 2006 09:04 GMT | 2 |
I need to get all the IDs of specific process and kill all the instances of that process. Something like: // theArray get all the Excel proc IDs in the Task manager
|
| Is CAB overkill for my Windows app? | 23 Dec 2006 21:33 GMT | 3 |
I'm reading up on Composite Application UI Block (CAB) and wondering if it is overkill for the enterprise Windows app we plan to build. We simply want a shell app where then each modult that is selected exists within. We could use user controls but we're not crazy about the ...
|
| How to get Array element type? | 23 Dec 2006 21:28 GMT | 7 |
Let's say I am using reflection to analyze my classes, and I have an array of another class. How do I get the base class that forms the array from a type? public class A
|
| what does reuse thread meaning -- call thread.Start() again to execute same threadStart again? | 23 Dec 2006 20:52 GMT | 2 |
How a thread is reused in thread pool? Change the context and call theThread.Run() again, and it executes same threadStart? Thanks!
|
| stream associate with socket; will one end block another | 23 Dec 2006 20:36 GMT | 1 |
As I remember theare are In and Out stream associate with a socket. TcpClient seems there in only one NetworkStream to do both read and write. Then will it be a conflicit if both side try to send data? And when one end is sending data, if another end is not calling Recevive or
|
| Creating an executable version of the entire Web site. | 23 Dec 2006 19:29 GMT | 5 |
How to create an executable version of the entire Web site without any source code. Best Regards, S.N.Ramkumar.
|
| 'OptionalField' could not be found | 23 Dec 2006 18:35 GMT | 5 |
This is the first time I try to use [OptionalField] thingy. I think I use it in a proper way. But, I have following code: using System; using System.Collections;
|
| Sort Criteria for Generic.List ??? | 23 Dec 2006 16:21 GMT | 3 |
How does not specify the sort criteria for Generic.List ?? The way that this is done in C++ STL is to implement operator<(), how is this done in C# and DotNet for Generic.List ???
|
| Determine visible row # in winforms datagrid? | 23 Dec 2006 06:51 GMT | 1 |
How can I tell which rows are visible in a datagrid (winforms app)? I have alot of data in the grid (bound to a datatable), and I need to refresh that data frequently. (theres no easy way to know what data has changed), so Im looking at just updating the visible portion of the
|