| Thread | Last Post | Replies |
|
| Custom event handlers in .NET Winforms | 15 Apr 2008 18:42 GMT | 1 |
I have an application that needs to respond to events that occur outside of the application itself. My project, called "ShowDetection" declares the event. I have a console app called "TestEvent" that I would like to use to test the event handler. Any action in the console app would ...
|
| Version of running exe | 15 Apr 2008 18:23 GMT | 1 |
How do I get the version of a running exe using managed code? I can using API calls. Objective: display the version in the exe's about message i.e the code will be inside the exe itself.
|
| Microsoft.ReportViewer.WebForms Assembly - Configuration Error | 15 Apr 2008 17:41 GMT | 1 |
Configuration Error from Visual Studio 2005 .NET 2.0 This is an ASP.NET Website with a Report Viewer Component - Microsoft.ReportViewer.WebForms & .Common included in project output Trying to install on a remote server with websetup project and the
|
| XmlException - The ':' character, hexadecimal value 0x3A, cannot be included in a name | 15 Apr 2008 17:08 GMT | 6 |
Ive seen this posted around on the interwibble a few times, but no post so far has helped me to understand the problem any better i appreciate the error is because of "well-formed" xml practices what i am trying to do however is read an "xml" file using the
|
| Create Program Without DB | 15 Apr 2008 16:55 GMT | 1 |
Hi, i must create a program to save my list of DVD but i don't have a DB like SQL or Access o file... it's possible??
|
| Overloading binary + operator | 15 Apr 2008 16:19 GMT | 8 |
I need to sum two classes in this way MyClass CT = myCollectionOfMyClass[0]; MyClass C1 = myCollectionOfMyClass[1]; CT = CT + C1;
|
| How add row to grid bound to IEnumerable(Of Employee)? | 15 Apr 2008 16:07 GMT | 1 |
I have a grid (Infragistics UltraGrid but I don't think that matters) that is bound to data source IEnumerable(Of Employee). How do I add a row to the grid (i.e. to the underlying data source, I suppose?
|
| How to embed HTML into a C# component | 15 Apr 2008 15:54 GMT | 1 |
I am creating a webmail solution and need to be able to display HTML e- mails in a placeholder without screwing up the styling of the rest of the page. I know that I could use an iframe to do this, but the problem that I am running into is that iframe's require a src which
|
| Error: Does not exist in the current context | 15 Apr 2008 15:46 GMT | 2 |
Like my name says I am a total novice at C#. I am trying to following examples in a book that I have but unfortunately they do not provide you with code for the whole project. Up till now I could figure out what is causing my problems but now I am stuck. I added in the books ...
|
| LINQ dataContext methods - should you put business logic there? | 15 Apr 2008 14:09 GMT | 5 |
I was just wondering, when you create dataContext methods, should you put business logic there to try and minimize pushing data through 2-3 layers of code? or should the business logic still go in another class somewhere making it access the dataContext methods?
|
| Checking cursor type | 15 Apr 2008 13:43 GMT | 2 |
I have a C# application where I've grabbed a control's cursor handle using the WINAPI function GetCursor(). This returned an IntPtr and I want to check what type of cursor this is (arrow, sizing, hourglass, etc.)
|
| Serialiazing pure HTML via DataContractSerializer (CDATA?) | 15 Apr 2008 12:51 GMT | 9 |
I have a class which I can serialize and deserialize just fine, but one of its fields actually contains html data, including <, > etc. Now in the serialized .xml files, these are actually escaped or converted into entities (<) etc.
|
| How to Capture the screen of another application? | 15 Apr 2008 11:47 GMT | 3 |
I'm trying to write an application to read another program, to capture the screen, read some text and then write it into a database. The data i need to get will always be at the same point on the program's window - but i dont have the first idea how to go about
|
| convert (list) | 15 Apr 2008 11:00 GMT | 4 |
I am looking for a way to convert list<string> to string (one string conainig all list members). How can I do it in an elegant way ? (I mean without foreach and appendind strings)
|
| dllImport unable to load DLL | 15 Apr 2008 10:08 GMT | 4 |
I have my own win app developed in VS C# 2005. This app uses a dll file (I import methods from the library by dllimport attribute). The dll file is provided by another program (let's call it program AA) that
|