| Thread | Last Post | Replies |
|
| C# Interop with Remote COM Object | 28 Jul 2005 20:56 GMT | 2 |
I'm having trouble connecting to a remote COM object using Reflection. I've got a Web Form using C# that needs to connect to a COM object on a remote server. The snippet of code that follows is what I've got (and found through all of my research as the necessary code):
|
| InvokeMember Woes | 28 Jul 2005 20:14 GMT | 5 |
All, I am trying to access a complex COM library with nested COM classes. In order to get at a certain class you must call a method on class A and this method will return a instance of COM class B. FOr instance the VB code looks
|
| C# MAPIPDL | 28 Jul 2005 19:39 GMT | 2 |
I setup an Exchange Distribuition List containing external e-mail addresses; non-exchange users and asked my developer to send e-mail to it from his app. He said he cannot using C# and that he can only send via SMTP which cannot utilize my Distribution List. Is there any way to ...
|
| MVP help required Web Services | 28 Jul 2005 19:33 GMT | 7 |
Ok, I've removed the MyItem class which is found in References.cs and replaced it with a reference to the namespace that has MyItem in it. I've also got rid of the [Serializable] tag at the top of the MyItem class. the web service works now, only the problem is, it only returns ...
|
| problem with OleDb | 28 Jul 2005 18:18 GMT | 2 |
OleDbConnection m_cnADONewConnection = new OleDbConnection(); OleDbDataAdapter m_daDataAdapter = new OleDbDataAdapter(); DataTable m_dtBackups = new DataTable(); // Connect:
|
| Shell Question | 28 Jul 2005 17:17 GMT | 1 |
I am creating an update application that is called by multiple applications to verify the application version and if it is out of date then it will update that application. The problem I am running in to is getting the instance of the application that called the update ...
|
| DISCUSSION: About the Comega language. | 28 Jul 2005 17:16 GMT | 9 |
I've been reading about and trying out Cw from microsoft research. http://research.microsoft.com/Comega/doc/comega_startpage.htm My first cent is that the language is weird but have potential. I have more cents on the subject but are eager to hear what others have to say.
|
| Howto capture VIDEO, not only acquire a single image from a usb we | 28 Jul 2005 17:14 GMT | 1 |
We need to access to a webcam in .net c# We need to show the video in a form from a web cam, and when push a buttom record it to a file ..... How can we do it ??
|
| arraylist object in hashtable | 28 Jul 2005 17:07 GMT | 3 |
I'm trying to build a hashtable and a arraylist as object value I'm not able to retrieve stored object from the hashtable. Hashtable mp = new Hashtable(); // THE HASHTABLE ArrayList atemp = new ArrayList(); // THE ARRAY
|
| Validate a CSV file | 28 Jul 2005 16:39 GMT | 2 |
I have a CSV file which contains comma seperated data that I need to validate against our database.I was thinking about loading that CSV file into a Typed-Dataset which has our database schema in it and then try to load the CSV file into that Typed-Dataset and automatically get ...
|
| problem with xml | 28 Jul 2005 16:36 GMT | 1 |
I'm trying to get xml working, but even when I copy/paste a simple example from online, I get the error An unhandled exception of type 'System.Xml.XmlException' occurred in system.xml.dll
|
| Drag and Drop into a DataGrid | 28 Jul 2005 15:44 GMT | 2 |
I have spent two days on drag and drop now and I'm getting no where. I am trying to drag an item from a listbox and load it into a datagrid (actually a child of the datagrid, but I'll be happy for now to get to the parent.) I can get the selected row of the target, but that is
|
| using smartcard | 28 Jul 2005 15:29 GMT | 2 |
I am new in smartcard programming. Could you tell me where I can found a tutorial please ? I am trying to read the pin code of the smartcard... Thanks for your help.
|
| Regular Expression - Unprintable Character | 28 Jul 2005 14:57 GMT | 2 |
Hello, I have an file that I am reading and it has some goffy characters in it and I want to use a regular expression to clean up those characters. I am not sure how to construct a regular expression which find these characters and replace them with spaces. I am guessing that a ...
|
| How to convert/cast sqldbtype.int | 28 Jul 2005 14:33 GMT | 3 |
When I call a stored procedure, one of the output parameter returns a sqldbtype.integer but when assigned to a C# int field/property I get this error: int myfield;
|