active questions tagged interop - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T16:38:04Z http://stackoverflow.com/feeds/tag/interop http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/727386/making-a-c-kill-event-for-a-vb6-app 0 Making a C# kill event for a vb6 app? Steve 2009-04-07T20:10:16Z 2009-11-27T12:33:40Z <p>I have a VB6 app that processes for a very, very long time. Killing it directly is not feasible, so I would like to set some sort of flag in the VB6 app. If in my C# app I decide to shut it down, I would like to toggle this flag to let the VB6 app know that a shutdown has been requested. Now, I also need something that is named because there will be several of the VB6 apps spun up as activex exes. Does anyone have any idea how to implement something like this? The workflow follows below</p> <p>C# app - Spin up mulitple VB6 activex.exes in separate threads, Initialize the app with something (henceforth called a flag) I can change in C#, and call the DoStuff command, which takes a very long time to return.</p> <p>VB6 - Gets the initialize command with the flag. DoStuff gets called. In the DoStuff loop, it checks if the flag is still set.</p> <p>C# - Kill the project by setting the flag to another state</p> <p>Any ideas?</p> http://stackoverflow.com/questions/239910/sql-ce-3-5-deployment-problem-concerning-interop-between-c-and-c 0 SQL CE 3.5 deployment problem, concerning interop between C# and C++ Presidenten 2008-10-27T13:41:02Z 2009-11-27T11:06:37Z <p>Hi!</p> <p>We have a situation where a C# application is working with SQL CE 3.5 . To allow for a legacy program to use some of its features we have produced a C++ dll which uses interop to extract the info that it needs from the C# program. For this to work, the C#-program needs to access the database. Its not a very complex scenario.</p> <p>When trying to deploy with a private install some problems occur though. <strong>There is no problem with the C# program, it can access the database and work with it without any problems.</strong></p> <p><strong>But when trying to access functions in the C#-program through the C++ interop which forces the C#-program to access the database, we get a crash with the exception saying that "...the Provider: System.Data.SqlServerCe.3.5 is not installed".</strong></p> <p>This is obviously because we cannot add a App.config file to the executing program.</p> <p>How can we get around this? Is there another way to fix this? Any other forms of SQL CE 3.5 install methods are out of the question. So we must get this to work.</p> <p>Regards,</p> <p>P</p> <p><strong>Edit:</strong></p> <p>I'm not working against SQL CE directly, but through Linq2SQL. I have tried to add config files to all my dll's, it does not help. It seems to only matter if the executable file have got a app.config.</p> <p>The exception thrown says - The provider System.Data.SqlServerCe.3.5 is not installed.</p> <p>And the latest function to be called according to the stack trace is System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Initialize(...).</p> <p><strong>Edit 2</strong></p> <p>I have added all the files necessery for the deployment to work. As I wrote above, it works if I use the program dll (which uses Linq 2 Sql) through a .net executable with a app.config file that specifies where to look for the SQL CE 3.5 dll. Deployment will <em>not</em> work with only the files, an app.config file is necessary.</p> <p>The problem is that we have to use the dll file through a C++ executable which have no means of telling .net where to look for the Sql Ce 3.5 dll.</p> http://stackoverflow.com/questions/1805179/how-to-declare-a-union-in-c 3 How to declare a union in C#? mark 2009-11-26T18:55:59Z 2009-11-27T10:06:24Z <p>Dear ladies and sirs.</p> <p>Observe the following sample code:</p> <pre><code>struct DDD { [MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 512, ArraySubType = UnmanagedType.I1)] byte[] x; } struct BBB { DDD x; } struct CCC { DDD x; ulong y; ulong z; } [StructLayout(LayoutKind.Explicit)] struct AAA { [FieldOffsetAttribute(0)] BBB a; [FieldOffsetAttribute(0)] CCC b; } </code></pre> <p>Unfortunately, <code>AAA</code> cannot be loaded, trying to execute <code>new AAA()</code> fails with <code>System.TypeLoadException: Could not load type 'AAA' from assembly 'Shunra.Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=807fc02bc4ce69db' because it contains an object field at offset 0 that is incorrectly aligned or overlapped by a non-object field.</code></p> <p>How do one deal with it?</p> <p>Thanks.</p> <p><strong>EDIT:</strong></p> <p>BTW, This is a stripped down version of MINIDUMP_CALLBACK_INPUT struct interop created by PInvokeTool (the original struct is defined in DbgHelp.h)</p> http://stackoverflow.com/questions/1774952/accessviolationexception-in-com-control-in-net-app 0 AccessViolationException in COM control in .NET app Krzysztof Koźmic 2009-11-21T08:39:03Z 2009-11-27T06:26:47Z <p>I'm working for a client that has a VB6 app in the migration process to .NET.</p> <p>Currently they have a .NET shell, but host some old VB6 controls in .NET. There's an error I stumbled upon is logs that happens when they in .NET asynchronously pull some data from the database, and then forward that data to a COM component to display it:</p> <pre><code>The Undo operation encountered a context that is different from what was applied in the corresponding Set operation. The possible cause is that a context was Set on the thread and not reverted(undone). Err Source: mscorlib Err Type: System.InvalidOperationException ERROR stack trace: at System.Threading.SynchronizationContextSwitcher.Undo() at System.Threading.ExecutionContextSwitcher.Undo() at System.Threading.ExecutionContext.runFinallyCode(Object userData, Boolean exceptionThrown) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteBackoutCodeHelper(Object backoutCode, Object userData, Boolean exceptionThrown) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Windows.Forms.Control.InvokeMarshaledCallback(ThreadMethodEntry tme) at System.Windows.Forms.Control.InvokeMarshaledCallbacks() </code></pre> <p>then the following shows up in the logs:</p> <pre><code>Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Err Source: mscorlib Err Type: System.AccessViolationException ERROR stack trace: at System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&amp; msgData) at _Client's component that forwards calls to COM_ </code></pre> <p>Did anyone ever encounter something like this? How do I approach fixing it?</p> http://stackoverflow.com/questions/1563051/c-hook-into-existing-com-object 1 C# - Hook into existing COM object Jonathan.Peppers 2009-10-13T21:38:19Z 2009-11-26T17:05:18Z <p>Say we have an existing process (or application) that calls a COM object from an ocx file such as "MyCOMLibrary.ocx".</p> <p>Is there a way to write a C# library to exactly replicate the ocx file? So that the original application can call your C# code rather than the original COM object?</p> <p>You would, of course, have to use identical CLSID and ProgIDs as the original ocx. And assuming there is no signing involved, such as a SNK in the .Net world.</p> <p>Also, are there any tools that exist to automate this? Something that takes in an ocx and spits out a C# file with methods to implement.</p> <p>EDIT: I want to add that the original application is VB6, and does not use .Net at all. They are most likely loading the ocx as a VB6 app would (ProgId or Guid). Does this cause any issues?</p> <p>We also have no problem with completely rewriting the ocx--we will most likely just return success error codes for all methods and only use methods/events required by our situation.</p> <p>EDIT: You would think this would not be too difficult to accomplish. Can we make a VB6 ocx file that could replace the old ocx, and just pass all calls to a .Net assembly?</p> <p>EDIT: I tried using the following open source library: <a href="http://easyhook.codeplex.com" rel="nofollow">EasyHook</a></p> <p>But it seems like this question should still be viable. VB6 seems to load COM objects in a way that prevents hooking. I don't see a way to hook instance methods on a class/interface or a class's constructor with EasyHook.</p> http://stackoverflow.com/questions/1800168/accessing-protected-memory-in-c-via-com-interop 1 Accessing protected memory in C# via COM interop Lynxy 2009-11-25T21:43:13Z 2009-11-25T22:36:04Z <p>I am making a DLL "Plugin" for a EXE. The EXE calls a function in the DLL with an Object as a parameter, and goes from there.</p> <p>It all works fine and dandy until I split it to a new thread. This error happens</p> <blockquote> <p>Attempted to read or write protected memory. This is often an indication that other memory is corrupt.</p> </blockquote> <p>when executing this code on the object in the new thread:</p> <pre><code> protected object GetPropertyValue(object obj, string PropertyName) { return obj.GetType().InvokeMember(PropertyName, BindingFlags.GetProperty, null, obj, new object[] { }); } </code></pre> <p>The above is trying to access a property on a COM object. Changing the function to 'public' doesn't affect it. The code works just fine however if I'm using just one thread.</p> <p>What's happening is clear: The new thread does not have access to the variable in the EXE. How can I fix this? Not using a thread is not a viable option.</p> <p>Appreciate any help</p> http://stackoverflow.com/questions/1795121/marshalling-array-of-structures-from-c 1 Marshalling array of structures from C#. Manigandan 2009-11-25T06:58:51Z 2009-11-25T07:27:21Z <p>Hey folks,</p> <p>I have a requirement where I need to marshal an array of structures from managed code(c#) to native code(C++). The structure is something like</p> <pre><code>//need to put any attributes here? public struct inner { [MarshalAs(UnmanagedType.U8)] public long l1; [MarshalAs(UnmanagedType.U8)] public long l2; } public struct outer { [MarshalAs(UnmanagedType.LPWStr)] public string s1; [MarshalAs(UnmanagedType.U4)] public int i1; [MarshalAs(UnmanagedType.U4)] public int i2; [MarshalAs(UnmanagedType.U8)] public long l1; // How can I marshal an array of structures here? public inner[] array1; } </code></pre> <p>My requirement is to return an array of the struct outer :)</p> <p>Can anyone help me out?</p> <p>Thanks in Advance, -Mani.</p> http://stackoverflow.com/questions/1787405/c-access-interop-docmd-value-combobox 0 C#/Access Interop DoCmd value combobox lb 2009-11-24T02:27:20Z 2009-11-25T02:46:51Z <p>Hi All</p> <p>I've succesfully connected to a Microsoft Access database through the interop/COM.. I need to put some data into a combo box and Requery so I can get the information displayed.</p> <pre><code> // Create app MsAccess.Application app = new MsAccess.Application(); // Open the database app.OpenCurrentDatabase( @"C:/Prog.mdb" , false, ""); // Open the form app.DoCmd.OpenForm("frmMain", MsAccess.AcFormView.acNormal, System.Reflection.Missing.Value, System.Reflection.Missing.Value, MsAccess.AcFormOpenDataMode.acFormPropertySettings, MsAccess.AcWindowMode.acWindowNormal, System.Reflection.Missing.Value ); app.Forms["frmMain"]["ctrlCustList"] .. . // This gets me the control instance validly.. // but do I put text in it? app.DoCmd.Requery("ctrlCustList"); </code></pre> <p>Is there a way to send text into a control through the Interop? (I've seen GoToControl but that is for the focus) but I'm still lost and tried googling without much luck..</p> <p>Thanks lb</p> http://stackoverflow.com/questions/312278/how-to-draw-procedural-graphics-in-vista-sidebar 3 How to draw procedural graphics in Vista Sidebar? Foo Dog 2008-11-23T07:47:35Z 2009-11-24T22:30:39Z <p>How do I draw procedural graphics in a Vista Sidebar gadget? </p> <p>I have a gadget that collects data over time and I want to draw animating graphs. My current approach is to draw the graph with VML that I update from JScript on a timer tick. Is this the best way? Can I return bitmap bits from a DLL function as the srouce to an <code>&lt;IMG&gt;</code>? Embed bitmap bits into the HTML itself (and again update it via JScript)? I'd love to hear some ideas.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1777668/send-message-to-a-windows-process-not-its-main-window 3 Send message to a Windows process (not its main window) chitza 2009-11-22T02:50:40Z 2009-11-24T20:54:55Z <p>I have an application that on a subsequent start detects if there's a process with the same name already running and, if so, activates the running app's window and then exits.</p> <p>The problem is that the main window could be hidden (only a notification area icon visible), thus leaving me with no window handle.</p> <p>At startup, previous instance's <code>MainWindowHandle</code> property is 0, so I can't send <code>ShowWindow</code> or <code>PostMessage</code>.</p> <p>Is there any way I can send a message that can be intercepted by the running app, thus allowing it to display its main window?</p> <p>The application is written in C#, the code I'm using to achieve this below.</p> <pre><code>[STAThread] static void Main() { bool createdNew = true; using (Mutex mutex = new Mutex(true, "MyMutexName", out createdNew)) { if (createdNew) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } else { Process current = Process.GetCurrentProcess(); foreach (Process process in Process.GetProcessesByName(current.ProcessName)) { if (process.Id != current.Id) { Interop.WINDOWINFO pwi = new Interop.WINDOWINFO(); IntPtr handle = process.MainWindowHandle; var isVisible = Interop.GetWindowInfo(handle, ref pwi); if (!isVisible) { MessageBox.Show(Constants.APP_NAME + " is already running, check the notification area (near the clock).", Constants.APP_NAME, MessageBoxButtons.OK, MessageBoxIcon.Information);//temporary message, until I find the solution //Interop.ShowWindow(handle, Interop.WindowShowStyle.ShowNormal); //Interop.PostMessage(handle, Interop.WM_CUSTOM_ACTIVATEAPP, IntPtr.Zero, IntPtr.Zero); } else Interop.SetForegroundWindow(handle);//this works when the window is visible break; } } } } } } </code></pre> http://stackoverflow.com/questions/1784133/how-can-i-convert-scala-xml-elem-to-something-compatible-with-the-javax-xml-apis 2 How can I convert scala.xml.Elem to something compatible with the javax.xml APIs? overthink 2009-11-23T16:07:37Z 2009-11-24T03:26:07Z <p>I have a Scala representation of some XML (i.e. a <a href="http://www.scala-lang.org/docu/files/api/scala/xml/Elem.html" rel="nofollow"><code>scala.xml.Elem</code></a>), and I'd like to use it with some of the standard Java XML APIs (specifically <a href="http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/validation/SchemaFactory.html" rel="nofollow">SchemaFactory</a>). It looks like converting my <code>Elem</code> to a <a href="http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/transform/Source.html" rel="nofollow"><code>javax.xml.transform.Source</code></a> is what I need to do, but I'm not sure. I can see various ways to effectively write out my <code>Elem</code> and read it into something compatible with Java, but I'm wondering if there's a more elegant (and hopefully more efficient) approach?</p> <p>Scala code:</p> <pre><code>import java.io.StringReader import javax.xml.transform.stream.StreamSource import javax.xml.validation.{Schema, SchemaFactory} import javax.xml.XMLConstants val schemaXml = &lt;xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;xsd:element name="foo"/&gt; &lt;/xsd:schema&gt; val schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); // not possible, but what I want: // val schema = schemaFactory.newSchema(schemaXml) // what I'm actually doing at present (ugly) val schema = schemaFactory.newSchema(new StreamSource(new StringReader(schemaXml.toString))) </code></pre> http://stackoverflow.com/questions/16689/java-and-c-interoperability 7 Java and c# interoperability pbreault 2008-08-19T18:31:32Z 2009-11-24T00:45:57Z <p>I have two programs one in c# and another one in Java. Those programs will, most probably, always run on the same machine.</p> <p>What would be the best way to let them talk to each other ?</p> http://stackoverflow.com/questions/1782610/f-dynamically-importing-a-c-c-dll 3 F#: Dynamically importing a C/C++ DLL dreamist 2009-11-23T11:38:12Z 2009-11-23T18:53:37Z <p>From what I have learned, to use P/Invoke in F#, the function signature has to be declared first using DllImport like this:</p> <pre><code>[&lt;DllImport("kernel32.dll", EntryPoint="CopyFile")&gt;] extern bool copyfile(char[] lpExistingFile, char[] lpNewFile, bool bFailIfExists); </code></pre> <p>That's all good when the DLL name is known at compile time. How do I interface with an unmanaged C/C++ DLL if I can only discover the name at runtime?</p> http://stackoverflow.com/questions/1784485/how-to-centrally-define-icomparable-on-abstract-interface-types-in-f 1 How to centrally define IComparable on abstract (interface) types in F# Dan Fitch 2009-11-23T16:57:03Z 2009-11-23T17:24:54Z <p>This question is kind of the next level of <a href="http://stackoverflow.com/questions/895769/f-set-using-custom-class">http://stackoverflow.com/questions/895769/f-set-using-custom-class</a> -- I want to define IComparable for a generic interface.</p> <p>I have an arbitrary set of types which implement a shared metadata exchange interface, <code>ITree</code>. I want to compare across these types, using only the exposed data in <code>ITree</code>.</p> <p>I realize this stuff is not exactly idiomatic F#, but I'm trying to interop with existing C# and VB code, so I want to use .NET interfaces and comparison where possible.</p> <pre><code>open System open System.Collections.Generic // Simplified "generic" metadata type that all implementers agree on type ITree = abstract Path: string with get, set abstract ModifyDate: DateTime with get, set type Thing1(path, date) = interface ITree with member x.Path = path member x.ModifyDate = date // In reality, the types implementing ITree are going to // come from different external assemblies type Thing2(path, date) = interface ITree with member x.Path = path member x.ModifyDate = date let d1 = DateTime.Now let d2 = DateTime.Now.AddMinutes(-2.0) let xs : seq&lt;ITree&gt; = Seq.cast [ Thing1("/stuff", d1); Thing1("/dupe", d1); Thing1("/dupe", d1) ] let ys : seq&lt;ITree&gt; = Seq.cast [ Thing2("/stuff", d2); Thing2("/dupe", d1) ] // Then I would like to take advantage of F# Sets // to do comparison across these things let xset = Set.ofSeq xs let yset = Set.ofSeq ys let same = Set.intersect xset yset let diffs = (xset + yset) - same </code></pre> <p>Now the actual problem: this does not compile because <code>ITree</code> doesn't yet implement <code>IComparable</code>. I need a custom comparison that helps with clock skew and eventually other things.</p> <p>Is there a way I can define the comparison function <strong>on <code>ITree</code> directly</strong> so that all the other assemblies don't need to think about it, and can just provide their data?</p> <p>If I try to do</p> <pre><code>type ITree = abstract Path: string with get, set abstract ModifyDate: DateTime with get, set interface IComparable&lt;ITree&gt; with let Subtract (this: ITree) (that: ITree) = this.ModifyDate.Subtract(that.ModifyDate) match compare (this.Path, this.ParentPath) (that.Path, this.ParentPath) with | 0 -&gt; // Paths are identical, so now for a stupid timespan comparison match abs (Subtract this that).TotalSeconds with | x when x &gt; 60.0 -&gt; int x | _ -&gt; 0 | x -&gt; x </code></pre> <p>The compiler thinks <code>ITree</code> is no longer an abstract interface, or something confusing.</p> <p>Now, I could create a base type that all of the implementors must share, but I don't want to do that because those other types really just need to expose their data on this interface, they already exist, and may already have a base class for some other reason.</p> <p>Possibly I can use <code>IComparer&lt;T&gt;</code>, like</p> <pre><code>type ITreeComparer = interface IComparer&lt;ITree&gt; with member x.Compare(this, that) = ... </code></pre> <p>But then I have no idea how to tell the <code>Set...</code> functions to use that IComparer.</p> <p>(I assume that once I figure out how to apply <code>IComparer&lt;T&gt;</code>, the same methods will work for <code>IEqualityComparer&lt;T&gt;</code> as needed.)</p> <p><hr></p> <p><strong>Edit:</strong> I can do</p> <pre><code>let x = new HashSet&lt;ITree&gt;(a |&gt; Seq.cast&lt;ITree&gt;, new ITreeEqualityComparer()) </code></pre> <p>To use the normal .NET collections, which should be good enough for this problem; however, I would still like to know if there's a better way to do what I'm trying to do.</p> http://stackoverflow.com/questions/1700621/how-does-this-strange-32-bit-64-bit-interop-solution-work 0 How does this strange 32-bit/64-bit interop solution work? sharptooth 2009-11-09T12:11:44Z 2009-11-23T14:56:46Z <p>I'm currently maintaining a piece of software that we outsourced couple of years ago and that is poorly documented. The piece is a COM server for consuming by third-party applications and an installer that does all necessary deployment.</p> <p>There's the core compiled as 32-bit DLL and meant to be used from 32-bit applications. And there's also a shim compiled as 64-bit DLL and intended for being used from 64-bit applications. The shim calls CoCreateInstance() to instantiate the core and redirects the calls to the core. The core depends on a huge set of other 32-bit libraries.</p> <p>The 32-bit core is registered exactly as an in-proc server normally would - there's an entry under HKCR\CLSID that includes the core class id and the path to the library under InprocServer32. The 64-bit shim is registered the same way and also an Application Id is introduced for the 64-bit shim - it is added under HKCR\CLSID and also registered with DCOM - there's an entry in the DCOM console with that Application Id.</p> <p>Now the DCOM registration looks strange. Why would the shim be registered to DCOM and not the core? I expect that the 32-bit core should be registered to DCOM to be instantiated in a separate process and shielded from the 64-bit consumer. But apparently it works as it is currently done. What's the sence in registering the 64-bit shim and not the 32-bit core with DCOM?</p> http://stackoverflow.com/questions/1522097/ms-word-interop-cancel-dont-show-the-save-changes-dialog-on-close 0 MS Word Interop: Cancel (Don't Show) the 'Save Changes' Dialog on Close nomad311 2009-10-05T20:04:18Z 2009-11-23T06:00:02Z <p>Hi,</p> <p>I'm using MS Interop to open a generated file for a user, allow them to edit it and then close it, after which I save it for them (it's part of a larger process). Since the user doesn't need to save the file manually I would like to cancel that pop up dialog to save the file when the user tries to close the document. The following doesn't seem to work for me in a handler for the DocumentBeforeClose event:</p> <pre><code>App.ActiveDocument.Saved = true; </code></pre> <p>This seems like it should mark the Word document as saved, but doesn't.</p> <p>Anyone come across this issue?</p> <p>-nomad311</p> http://stackoverflow.com/questions/1776503/preventing-gettype-from-throwing-exceptions-on-internal-types 0 Preventing GetType from throwing exceptions on internal types Mikko Rantanen 2009-11-21T19:37:29Z 2009-11-22T06:49:48Z <p>Is there any way to prevent <code>o.GetType()</code> from throwing an exception when called on an object whose type is internal and resides in another assembly? </p> <p>I am wrapping a COM based API inside a .Net assembly so that it is possible to benefit from more native .Net integration (Collection interfaces, streams, exceptions etc.). The collections the original API has have been wrapped in the following way:</p> <pre><code>internal class ComItems : IList&lt;ComItem&gt; { internal ComItems(ComApi.ComItems unmanaged) { this.unmanaged = unmanaged; } public void Add(ComItem item) { this.unmanaged.Add(-1, item.ToUnmanaged()); } // Rest of the IList implementation } </code></pre> <p>Since there are several of these collections I wish to expose them as instances of <code>IList&lt;T&gt;</code> and keep the original type as internal so they don't clutter the namespaces. The issue here is that calling <code>GetType()</code> on one of the returned <code>IList&lt;T&gt;</code> objects results in an exception since the underlying type is an internal one.</p> <p>Are there any ways to prevent this exception?</p> <p>Is there any way to force GetType to return <code>typeof(IList&lt;T&gt;)</code> instead? Not sure if this is any better though since it differe from the standard behaviour.</p> <p>I understand one alternative to reducing clutter would be separating the collections into another namespace. Unfortunately <strong>some</strong> of the collections contain extra methods and are exposed as public types. This would either mean that the collections are divided behind two different namespaces (Main one and 'internal') or then they are all behind the 'internal' one and when people need those specialized collections they'll import that namespaces and those simple collections clutter IntelliSense again.</p> http://stackoverflow.com/questions/264318/vb-net-byte-to-c-char 2 vb.net byte[] to C++ char* Matt 2008-11-05T04:02:57Z 2009-11-21T13:52:49Z <p>I am calling an unmanaged C++ dll that expects a char* as one of its parameters and I want to push a byte[] into it. The project is written in VB.NET. </p> <p>What type of marshalling will work for this?</p> http://stackoverflow.com/questions/1769969/marshaling-delphi-5-olevariant-to-c 0 Marshaling Delphi 5 OleVariant to C# ulrikj 2009-11-20T11:45:38Z 2009-11-21T12:09:51Z <p>I'm trying to use some legacy Delphi 5 DLLs from C# (2.0/3.5). Some of the exported functions are declared as such:</p> <pre><code>function SimpleExport: OleVariant; stdcall; function BiDirectionalExport(X: OleVariant; var Y: OleVariant): OleVariant; stdcall; </code></pre> <p>I wish to set these up as delegates using Marshal.GetDelegateForFunctionPointer, but I'm having trouble getting the data Marshaled correctly. I'm using kernel32 imports of LoadLibrary and GetProcAddress, so I'm relying on GetDelegateForFunctionPointer to do my actual marshaling, not static p/invoke declarations.</p> <p>Since the .NET marshaling services can marshal objects to COM OleVariants, I tried this. But this causes an exception: "PInvoke restriction: can not return variants.". So I'm figuring I need to use a custom marshaller.</p> <p>What's the correct way to Marshal a Delphi 5 OleVariant into something .NET readable?</p> http://stackoverflow.com/questions/807128/whats-the-purpose-of-noncreatable-coclasses-in-idl 0 What's the purpose of noncreatable coclasses in IDL? sharptooth 2009-04-30T14:15:23Z 2009-11-21T00:00:01Z <p>What is the reason for declaring noncreatable coclasses like the following in IDL?</p> <pre><code>[ uuid(uuidhere), noncreatable ] coclass CoClass { [default] interface ICoClass; }; </code></pre> <p>I mean such class will not be registered to COM anyway. What's the reason to mention it in the IDL file and in the type library produced by compiling that IDL file?</p> http://stackoverflow.com/questions/1762823/whats-the-purpose-of-com-library-applications 0 What's the purpose of COM+ library applications? sharptooth 2009-11-19T12:01:47Z 2009-11-20T19:12:38Z <p>When a COM+ application is created the wizard offers to choose between a library and a server application.</p> <p>A server application is activated in a separate process and this can be used to cheaply interop 64-bit consumers with 32-bit in-proc COM components.</p> <p>What's the use of library applications that are activated right in the caller process? Why use them instead of plain old in-proc COM servers?</p> http://stackoverflow.com/questions/1733082/implement-a-comet-server-in-c 2 Implement a Comet server in C# su 2009-11-14T02:56:34Z 2009-11-20T18:40:11Z <p>I would like to know whether there is a way to write a comet server in C#. i have a C# code that generates data periodically, and I want to push these data to a java app. So would like to convert my C# code to a comet server. Also would like to know whether there is any comet server implemented that lets us connect the C# application and java application to it, so that the C# application can pass information to the java app, through the comet server. data push frequency would be high, but the size of an individual message is very small: a string value.</p> http://stackoverflow.com/questions/1729705/accessviolation-when-calling-unmanaged-dll 0 AccessViolation when calling unmanaged dll Paralife 2009-11-13T14:54:36Z 2009-11-20T09:12:35Z <p>When calling an unmanaged Dll from a c# application I get an <code>AccessViolationException</code>. The strange thing is that the exported function has no arguments, so the problem is not in the Marshalling of data. The function gets no argument and just returns an integer. Also note that calling convention is not an issue. An identical function with the same zero arguments and integer return value (but different name) works just fine. What are the remaining candidate reasons that such a call could cause this exception considering the fact that marshalling and calling convention is ruled out? </p> <p>UPDATE: The dll function is correct because if called from other unmanaged code through plain linking, then it works perfectly. </p> <p>UPDATE 2: Everything is compiled and run on 32 bit. I tried Win XP SP2 and Vista. Here is an interesting fact: On Vista Systems it works like a charm. On XP it fails.</p> <p>UPDATE 3: I didnt get the source code but I learned what essentially this dll does, so i tried to reproduce the problem with my own dll. Here is the story: The original dll is some kind of a wrapper to ei.lib (Erlang's c interface library). It exports some helper funcs. So to reproduce the problem I have made a wrapper dll around ei.lib which exports only one function, namely "test()". I did that so I wouldnt mess with marshalling and stuff. I wanted just to test an initialization, connecting and sending a message. So this test() func of my dll just calls <code>ei_connect_init()</code>, then <code>ei_connect()</code> and finaly <code>ei_reg_send()</code>, with arguments hardcoded inside. The problem is that if I call this dll and use the test() function from another unmanaged code, it works ok. Message is sent. But when I call it from c# through DllImport then it works only on Vista. Not on XP. On XP it fails with a AccessViolationException on the .net layer. I ve tried to trace down the problem and I see that from inside my dll, any call to <code>ei_connect()</code>, or any attempt to read <code>erl_errno</code> (these are defined in ei.lib) when running on XP and being called by managed code result in trying to read or write protected memory so the app crashes. It cant be something trivial since it works on Vista and it works when called by unmanaged code. </p> http://stackoverflow.com/questions/1766014/are-double-and-double-blittable-types-c 2 Are double* and double** blittable types? C# NumberFour 2009-11-19T19:43:36Z 2009-11-20T02:56:58Z <p>Hello,</p> <p>I have a question regarding marshalling of C++ arrays to C#. Does the double* automatically convert to double[]?</p> <p>I know double is a blittable type, so double from C++ is the same as double from C#. And what about double**, does it convert to double[,] ?</p> <p>I have the following unmanaged function: int get_values(double** param,int sz)</p> <p>where param is a pointer to array of doubles and sz it's size.</p> <p>How can I DLLImport this function to C#?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1729487/using-unreal-3-engine-within-a-net-application 1 Using Unreal 3 Engine within a .NET application bitbonk 2009-11-13T14:19:29Z 2009-11-19T16:36:09Z <p>Now that the <a href="http://udk.com/" rel="nofollow">Unreal Development Kit for Unreal 3 engine is free</a> I am thinking about utilizing it for an appication. Do you think it is possible to emebedd a Unreal 3 powered 3D window into a .NET (WPF or Windows Forms) and control patrs of the gameobjects therein using c#? Is the egine plain c++? Or COM or is there a .NET wrapper or something?</p> http://stackoverflow.com/questions/1756226/office-interop-word-c-net-copying-a-table-at-a-special-location 0 Office Interop Word c#.net : Copying a table at a special location Luna 2009-11-18T14:03:45Z 2009-11-19T10:23:28Z <p>I'm currently working on tables in a Word template with Interop.</p> <p>In my template I have a table which I want to copy (Copying will make it easier for me to fill in the data rather than inserting rows and column, because the template has a lot of write formatting). The new table should be inserted right under the original table. The best would be that they would look like one single table.</p> <p>My problem is that I get a paragraph between the two tables. How can I avoid this?</p> <p>Here is my code:</p> <pre><code>object oCollapseEnd = Word.WdCollapseDirection.wdCollapseEnd; Word.Range rng = table.Range; rng.Collapse(ref oCollapseEnd); Word.Table tableCopy = document.Tables.Add(rng, 1, 1, ref missing, ref missing); table.Range.Copy(); tableCopy.Range.Paste(); Clipboard.Clear(); </code></pre> <p>Any help would be very appreciated! :)</p> http://stackoverflow.com/questions/1719935/communication-between-java-and-c 1 communication between Java and C# su 2009-11-12T04:44:01Z 2009-11-19T04:13:19Z <p>Hi, I found out that there is a .Net toolkit called GCT - Group Communication Toolkit that is the C# version of JGroup. I want to know whether this and JGroup can be connected together to make java and C# clients communicate with each other. If not, what would be the best option to make a java program and a C# program communicate? One other option I came across is XMPP implementation. I require very fast message passing between those two programs that are running in the same computer. The main requirement is that either of this program would send a message to the other, when some particular events are triggered. any ideas are welcome.</p> http://stackoverflow.com/questions/1758456/how-come-replacing-char-with-intptr-or-stringbuilder-in-a-dllimport-return-valu 1 How come replacing char[] with IntPtr or StringBuilder in a DllImport return value causes my program to no longer find the correct entry point? IronicMuffin 2009-11-18T19:29:26Z 2009-11-18T20:23:22Z <p><strong>EDIT: I just realized this is defined as a MACRO, not a function. How the heck would I import a macro from a DLL to C#? (this may have to be a new question).</strong></p> <p>This is related to a question I just asked:</p> <blockquote> <p><a href="http://stackoverflow.com/questions/1757448/how-do-i-properly-return-a-char-from-an-unmanaged-dll-to-c">How Do I Properly Return A Char From An Unmanaged Dll To C#?</a></p> </blockquote> <p>Some of the answers suggested I change the function signature to IntPtr or StringBuilder. I also saw these solutions on a few sites in my googling, most notably <a href="http://www.pcreview.co.uk/forums/thread-1378860.php" rel="nofollow">here</a>. (There were others, but I don't have time to hunt down the links).</p> <p>Function signature:</p> <pre> [DllImport("api.dll")] internal static extern char[] errMessage(int err); </pre> <p>If I change the return type, my call throws the following exception: </p> <blockquote> <p>"Unable to find an entry point named 'errMessage' in DLL"</p> </blockquote> <p>I can't imagine people would suggest this if it didn't work. Am I doing something wrong here? Is there something missing? Sad to say, but my C/C++ skills are terrible, so I could be missing something really simple. Thanks for any help.</p> <p>EDIT: Function signature from documentation:</p> <pre> char * errMessage(int err); </pre> http://stackoverflow.com/questions/1757448/how-do-i-properly-return-a-char-from-an-unmanaged-dll-to-c 1 How do I properly return a char * from an Unmanaged DLL to C#? IronicMuffin 2009-11-18T16:56:38Z 2009-11-18T18:30:34Z <p>Function signature:</p> <pre> char * errMessage(int err); </pre> <p>My code: </p> <pre> [DllImport("api.dll")] internal static extern char[] errMessage(int err); ... char[] message = errMessage(err); </pre> <p>This returns an error: </p> <pre> Cannot marshal 'return value': Invalid managed/unmanaged type combination. </pre> <p>What am I doing wrong? Thanks for any help.</p> http://stackoverflow.com/questions/1754145/c-wrapper-native-interop-enterprise-scale 0 C++ Wrapper Native Interop Enterprise Scale Jason 2009-11-18T07:02:40Z 2009-11-18T17:54:31Z <p>I want to know what is the best approach to wrapping a massive library written in C++ to make it accessible in C#.</p> <p>I have done work with interop before, and I love IJW. But I am not sure of how to implement this approach with a huge library. I am wondering if there is any pattern to use, otherwise I just have to write a wrapper around every class that exists in the c++ library which is not really manageable.</p> <p>Also, I cannot just provide a single facade into the library, as again, it is very big, and overwhelming at this point, so any ideas would be greatly appreciated.</p>