| Thread | Last Post | Replies |
|
| C# calling C++ dll (Instruction at referenced memory could not be read) | 10 Aug 2007 08:32 GMT | 6 |
I have a C# assembly that is calling directly into C++ unmanaged code. Everything is working fine but at the very end of the process I get an application error, which says:
|
| C# ASP.NET 2 Passing XML data to client browser JavaScript functio | 10 Aug 2007 03:23 GMT | 2 |
I am working on a multimedia-project whereby an XML File has to be loaded into the client browser's memory and then being used through client side JavaScript. The actual XML file to be loaded is being determined at runtime as followes:
|
| How to prevent compiling when an exception has not been handeled | 10 Aug 2007 01:13 GMT | 10 |
As you know in Java, when a method is able to throw an exception the programmer has to handle the exception otherwise the program will not compile. Is there anyway to do so in C#. I mean generate an error message for
|
| SendInput just doesn't work. | 09 Aug 2007 23:42 GMT | 3 |
Hi. I need to simulate keyboard and mouse events. For the first step, I tried to move mouse using SendInput. But it didn't work. I searched all over the internet for an example, but only questions were there. Please give me what was wrong in the following code. I simplified the
|
| Alternative Ways To Implement "Events" | 09 Aug 2007 22:43 GMT | 3 |
Just looking to compile a list of "all the ways to implement events". I'm NOT looking to get into the merits or mechanics of each in this thread... just want to identify them all - good, bad, and ugly. Here's what I have so far
|
| Form.MouseDown with non-rectangular Forms inside MDI container? | 09 Aug 2007 21:36 GMT | 7 |
I created a non-rectangular Windows Form which opens inside of an MDI container and I'm managing the MouseMove and MouseDown events with the following code. The problem is that when I click on the mouse button so that I can move the Form, the Form "jumps" about an inch to the ...
|
| Events in C# 3.5 - Anything New? | 09 Aug 2007 21:26 GMT | 10 |
Moving from .NET 1.1 to 2.0, we gained the generic System.EventHandler<T> which makes our lives easier when it comes time to implement an event. Now we're getting .NET 3.5 soon and I'm wondering of there are any new event-related features or capabilities in 3.5.
|
| List<int> Sort | 09 Aug 2007 20:47 GMT | 1 |
I'm working in Visual Studio 2005, .NET 2.0, and C#. I've got the below. I need to be sure that Sort() does the sorting in ascending order. Writing an IComparer Class for this seems like massive overkill. Any suggestions on how to assure an asending order sort for my
|
| DataRow | 09 Aug 2007 19:09 GMT | 3 |
is there some way to update a Row (the actual one) in a DataTable_RowChanged Event? The only way i see is to use a small "statemachine". _tia rene
|
| flushing a widicom bluetooth serial port | 09 Aug 2007 19:08 GMT | 2 |
Im having a tiresome amount of trouble with using a bluetooth serial link. The receiving end is a bluetooth-rs232 module conected to my embeded system. The PC has a little usb bluetooth dongle, ive tried a another dongle with widicom software
|
| Update exchange rates | 09 Aug 2007 18:53 GMT | 2 |
Right now we get a daily email with the current currency exchange rate in it. Then someone copies that data into a SQL Sever table every day. I am looking to automate this process. The source of the exchange rate does not have to be the email. I would like the server to update
|
| Using Regex to capture phrases inside of tags | 09 Aug 2007 18:09 GMT | 1 |
I have a regular expression for capturing all occurrences of words contained between {{ and }} in a file. My problem is I need to capture what is between those symbols. For instance, if I have tags such as {{FirstName}}, {{LastName}}, and {{Address}} placed in the file, I need ...
|
| Display Text or Picture over running Video | 09 Aug 2007 18:08 GMT | 3 |
Hi Evrybody, Some one can tell me how to display texte or tranparent icon (like mouse pointer) over a runnig video. This video is an IP camera stream displaying within control (Vitamin Control) in C# application.
|
| IConnectionPointContainer & C# | 09 Aug 2007 17:46 GMT | 2 |
Hi all. I'm trying to do something that I think should be fairly simple. We have some COM objects that used to communicate directly with each other. I've created a "shim" object in C# that intercepts all calls from client COM objects and forwards them on to a single
|
| RegEx upper case swap | 09 Aug 2007 17:40 GMT | 3 |
How can I use RegEx to search for a number of strings and replace them with upper case versions of themselves? Thanks
|