| Thread | Last Post | Replies |
|
| how to print string esc characters | 16 May 2007 00:30 GMT | 2 |
im sending this string to a device String cmd = ""N1\x0D") this device needs the esc \x0D on the end where you see it After i have sent this string i want to print it our to a rich
|
| XML Delete | 16 May 2007 00:10 GMT | 3 |
I have just started working with XML , and am sure this is easy but drawing blanks on this one! e.g <Files>
|
| virtuality and user-defined conversions | 16 May 2007 00:09 GMT | 3 |
Are user-defined conversions chosen at compile time, or are there ways to make sure that they are chosen at run-time, based on the actual type of the object? Here is a simplified example of what I'm trying to accomplish:
|
| Reporting Technologies | 16 May 2007 00:06 GMT | 2 |
Dear friends, I would like to know what you are using to generate reports on your WinForms and Asp.net (web) applications. Crystal? Microsoft Reporting? 3rd party? I am still lost on this part and I would like to have a better idea to
|
| Exception handling | 15 May 2007 23:29 GMT | 7 |
Is it possible to set up C# compiler so that I would get a warning when I miss any exception thrown by a framework? Something like in Java, where the compiler forces you to handle all exceptions.
|
| Getting the window/control that lost the focus | 15 May 2007 23:19 GMT | 1 |
When processing the OnGotFocus event, I need to know the window/control that lost the focus. Is there a way to determint this? With MFC, you could use OnSetFocus which passed you the window that lost the focus. It there something similar with a c# control.
|
| Static, ReadOnly/Const array in a method | 15 May 2007 23:00 GMT | 4 |
Considering the code below, is it possible to declare this array static and readonly/const in order to force .NET to allocate this array only once instead of at each method call. Thank you for your help !
|
| Serialization in Mono | 15 May 2007 22:52 GMT | 5 |
I ran in Mono a program developed on .NET Framework 2.0 and it ran OK until I tried to desirialize a object. There the program died abruptly dumping this: System.ArgumentOutOfRangeException: Value -8590321990885400808 is
|
| Which process is using a file? | 15 May 2007 22:45 GMT | 3 |
I would like know is it possible someway to find out which process is holding a file using c#? I have a problem where one file is been held by some process (I don't have a clue) and I want to force delete that file with out stopping the application or restarting the computer. Is
|
| Functional programming: its got what coders crave! | 15 May 2007 22:40 GMT | 1 |
Read our free introduction to the F# programming language from Microsoft Research: http://www.ffconsultancy.com/products/fsharp_journal/free/introduction.html?u2 Register your interest in our journal:
|
| Generic casting | 15 May 2007 22:38 GMT | 3 |
I'm currently working with vbscripting through MSScriptControl. We have shared some of our objects that should be available for scripting. Some of the functions of these objects will return an interface to a class that must be cast to the appropriate higher level class to use all
|
| How to switch from VB to C# on startup | 15 May 2007 22:18 GMT | 1 |
C# newbie here, Launching VS, my start page assumes I'm using VB. Likewise when I start a new project. How do I change default language to C#? TIA,
|
| need grid-style control | 15 May 2007 22:10 GMT | 5 |
I know there's a DataGridView, but I think that's for synching the GUI to data in a SQL database. Is there anything simple like a slightly more complicated list box? Even if I could use a listbox of strings which align the text into multiple columns with tabs I would be happy.
|
| disabled Button's text glows when bg color of owner is changed | 15 May 2007 21:54 GMT | 2 |
If you have a disabled button in a form (or tabpage) whose background color is customized, the text on the disabled button will not be gray. In fact, it becomes a *brighter* version of the backgrond color of the button's owner, making it glow, destroying the apperance that
|
| Declaring Data Buffer | 15 May 2007 21:44 GMT | 1 |
I'm converting a project from C++ to C#. I need a structure with several members that will be read from a file as a single block of data. But when I try the following, I get an error for the data declaration that says "Array size cannot be specified in variable declaration".
|