| Thread | Last Post | Replies |
|
| Include & library paths, Linker/Inputs | 28 Mar 2006 20:33 GMT | 3 |
I'm trying to configure Visual Studio 2005 (C#) to produce a MEX DLL that will interface with MatLab. I found an online source that describes some files that I need to attach to the DLL. The source says:
|
| Log design (serialization) | 28 Mar 2006 20:11 GMT | 1 |
I'm building a class library that uses the serial port to communicate with a custom serial bus. Two of the classes I've built ("Packet" and "SerialPort") uses an aggregated class "Log" to log their activity on a log file. Now that it is working, I'd like to refactor it so it ...
|
| Threads & Memory | 28 Mar 2006 20:08 GMT | 3 |
I create a method that copy files from one folder to another (see the ex. code). A new thread will create every time when user click the button. The button is enable only when the copy process was finished( ThreadState =
|
| enumerations as options for a custom function? | 28 Mar 2006 20:06 GMT | 1 |
I was hoping someone could tell me how to declare/create a function so that when I call for it programatically one of the input parameters appears as a drop down list of possible options instead of typing in the value. I believe it has to due with declaring an enumeration but not ...
|
| MDI Child window behavior | 28 Mar 2006 20:01 GMT | 1 |
I am trying to develop a Windows Forms application in Visual C#.NET 2005. I have created a FormMainMDI, which has the IsMDIContainer property set to true. I have created a second form, FormClients, which displays information about the clients in the system. This form has the ...
|
| Disable the 'ok' button - Forms application | 28 Mar 2006 19:56 GMT | 6 |
Dear list, I have a smartphone Forms application built using C#. When I display the Form I would like the 'ok' button which resides at the top right of the screen to be disabled, so the user cant exit the application without setting
|
| Picturebox, focus, and tabstops | 28 Mar 2006 19:32 GMT | 4 |
Is there anyway to get a picturebox to recieve focus? I ask because I implemented a "delete" button in a picturebox (due to size constraints), but now due to accessibility reasons I need to be able to tab to the picturebox via the keyboard. Since the picturebox
|
| C# 2.0 spec: generics and invalid overloads | 28 Mar 2006 19:22 GMT | 2 |
According to the C# 2.0 draft spec, the following should not compile: class G1<U> { long F1(U u) {return 0;} // Invalid overload, G<int> would have two
|
| Need help with impersonation, please. | 28 Mar 2006 18:24 GMT | 2 |
I have a .net DLL that I've created (based on someone's post in this group, sorry I've forgotten who) and I need a little help with making it work. I want to provide the same functionality as "runas /netonly" and I'm
|
| namespace DLL problem | 28 Mar 2006 18:14 GMT | 3 |
i compil my c# program into a DLL. next i install it into my framework directory : c:/windows/Microsoft.NET/myframework.../MyDll.dll but... when i want use it with "unsing MyDll.dll" i obtain this error :
|
| Regex replace help | 28 Mar 2006 16:46 GMT | 4 |
I have a string like "bla<cut>blubb<cut>bla<cut>blubb" and want to replace the substring from the first occurrence of <cut> to the second with "TEST" in order to get "blaTESTbla<cut>blubb". So far I only managed to get blaTESTblubb:
|
| Logging runtime values passed to a function | 28 Mar 2006 16:39 GMT | 2 |
Hi, I want to write down a function entry point logging method, allowing logging of passed in parameters values along with function name and parameter names. I know I can get the parameter name and function name using System.Reflection or StackFrame but not sure if if it's ...
|
| Does socket has 2 streams ? What is "(a)synchronous"? Will BeginReceive() creates too many threads so hurt performance? | 28 Mar 2006 16:04 GMT | 4 |
TcpClient has a method called GetworkStream GetStream(); So in other words, there is only one stream associate with it for input and output, right? So while it is receiving, it can not send, and vise visa, right? So will it
|
| How can I display info text in my dialoge form? | 28 Mar 2006 15:17 GMT | 6 |
I want to display some informational text in a dialog something along the lines of 'enter your text in the below box and press OK to save, or Cancel to exit'. I'm using a textbox to display this is that the right way to do it? The
|
| Properly checking for nulls | 28 Mar 2006 15:14 GMT | 3 |
What is a better way for checking nulls than using the "==" operator? For example, .Equals() is better than == for most operations since it knows the type being checked. However, it doesn't seem to work for nulls. For example:
|