| Thread | Last Post | Replies |
|
| Late binding with unmanaged code | 16 Mar 2006 23:43 GMT | 7 |
i have the following problem. i want to write a code that enables the user to call functions from a unmanaged code .dll at running time . so i have to use the late binding . i tried the following code but it doesn't walk : Assembly assemblyInstance =
|
| C code passing a pointer to a function to a C# .Net object? | 16 Mar 2006 23:10 GMT | 2 |
I have a bit of C code, that creates an instance of a .Net class that has been built as a type library. Everything is working as expected, I can pass strings to methods in the object. What I would like to also do is pass a pointer to C function to one method to store it as a ...
|
| Webrequest Remove encoding from header | 16 Mar 2006 23:07 GMT | 1 |
I have created a webrequest that is failing at the server because it has Encoding =UTF-16 in the header. The server people want me to remove the entry altogether. I can't see where I have control over that with the WebRequest class.
|
| Microsoft WebBrowser control | 16 Mar 2006 22:58 GMT | 4 |
I have a Windows Form that uses the Microsoft WebBrowser control. If I load an HTML file into the control that contains Jscript code, can the Jscript code call a C# function in my Windows Form?
|
| Create remote object with specified credentials. | 16 Mar 2006 22:26 GMT | 4 |
Currently I am working on an application that will perform a remote scan of a specified server using the following code: Type t = Type.GetTypeFromProgID( "Microsoft.Update.Session", "proact" ); UpdateSession UpdSess = (UpdateSession) Activator.CreateInstance(t);
|
| Deaking with ComboBoxes and databases | 16 Mar 2006 21:44 GMT | 3 |
I have a couple of combo boxes and the data inthe combo boxes is from the SQL database. I have created datasets to reflect that data in one of the combo box. But, what I want is that, when I select certain data from one combo
|
| how to do this mapping "const struct outputinfor ** b" using p/invoke | 16 Mar 2006 21:21 GMT | 1 |
I have C API just like this: enum void getinfor(const struct inputinfor *a, const struct outputinfor ** b) i use p/invok to translate it to
|
| XmlDeserialization error - Input string was not in a correct format | 16 Mar 2006 21:01 GMT | 1 |
Hi I'm getting an error while deserializing an xml into object. [FormatException: Input string was not in a correct format.] System.Number.ParseDouble(String s, NumberStyles style,
|
| Serialization of a Queue | 16 Mar 2006 20:00 GMT | 2 |
Hi. I have a Queue<T> that I need to serialize, but when I try, I get the error: "You must implement a default accessor on System.Collections.Generic.Queue"
|
| How to get user under W98 without WMI | 16 Mar 2006 19:56 GMT | 2 |
Can anyone tell me either a) how to find the user of a process or, failing that b) how to find the currently logged in user
|
| newbie question: Can I use odbc and connect to Firebird SQL database? | 16 Mar 2006 19:46 GMT | 4 |
|
| VisualStudio : start application directly without build ??? | 16 Mar 2006 19:30 GMT | 2 |
is there a way in Visual Studio.NET 2005 to start an application without VS to first start the build-process ? Even when the previous compile didn't result in errors or warnings, or the source code hasn't change, he nevertheless executes the build-steps
|
| pass array from managed code to COM object | 16 Mar 2006 19:23 GMT | 3 |
I have written a C++ com object: STDMETHOD(myfunc)(INT* array) Now I need to pass an array from c# to com. I generated a COM interop and it the signature of the function is
|
| .NET 1.1 version of Datagrid available within VS 2005? | 16 Mar 2006 18:50 GMT | 3 |
Am porting a program from .net 1.1 to 2 in which I've done some pretty painful work in order to customise a datagrid. On installing Visual Studio 2005, I can't seem to find the old data grid, only the new data grid view. I understand that this can be quite
|
| .NET installer tips needed | 16 Mar 2006 18:44 GMT | 4 |
I'm having a very frustrating time with the .NET installer project. I can't make it uninstall a previous installation succsessfully. I also need to create an uninstall icon in the program group and can't figure out how to do that.
|