Interoperability is a requirement for one computer system or programming language to work with another.
0
votes
1answer
22 views
When/Why does Marshal.GetLastWin32Error() return a negative error code?
When calling a particular Win32 API function(From C# through Interop), it fails and returns a negative error code
Background:
I'm doing this on Windows 8 OS running inside a TAB.
Function Signature
...
0
votes
1answer
26 views
Writing to an existing Excel File using c#
I am trying to open (or create a new xls) Excel file and write some values to it. Although, the program below works just fine if I simply create a new xls file, I encounter the some problem in line
...
0
votes
0answers
13 views
Difference between Office.Interop and Office.Tools
I've found this link where it's claimed that the relation between Office.Interop and Office.Tools is that the latter is a wrapper to the former.
When I switch the version to a later distribution like ...
1
vote
1answer
23 views
VB.NET print pointer of COM Objects
I want to print the memory address of my .NET compiled object imported with DLL.
The code for pinned object are (googling):
' dim managed variable
Dim primitiveObject As String="HELLO WORLD"
' pin ...
3
votes
2answers
34 views
How to add multiple recipients to mailitem.cc field c#
Oki, so im working on outlook .msg templates.
Opening them problematically, inserting values base on whats in my db.
ex. when i want to add multiple reciepients at "To" field, instead of doing as ...
0
votes
0answers
25 views
Interoperability managed <-> unmanaged , retun CString value of a function issue
I have written an wrapper for an custom nativ C++ DLL .
The DLL is used in a .NET app. I have used P/Invoke to call functions from DLL.
In my development I am limited at using visual studio 2003 , ...
0
votes
1answer
20 views
Interop.office.word.dll , Object reference error after publishing
I am using interop.office.word.dll to open word document from asp application and it is working fine on my application if i am running the application on code level , but after publishing the ...
1
vote
1answer
26 views
C# Excel (2003) interop - Margins don't correspond to the input value?
I'm using dotNET C# to communicate with Excel 2003.
I'm trying to change the print margins of the document, but the values that I put in, don't correspond to the margin values that Excel then uses...
...
0
votes
1answer
50 views
Cannot call C# library exposed through COM in Excel VBA
I have tried to create a very basic C# library and expose it through COM interface so that I can access it from VBA, but at runtime it throws an error "Class does not support Automation or does not ...
1
vote
1answer
36 views
Error : Interop.word.dll error
I have used Microsoft.office.interop.word dll to view word document and it is working fine on code level debugging
but after publishing my project on the same machine i am getting this exception
...
1
vote
1answer
27 views
Does the .NET Garbage Collector's stop-the-world effect halt or delay the execution of unmanaged threads and timer callbacks?
I have an application that needs to have code executed at very precise intervals. For that purpose I also need Windows' scheduler resolution increased to 1ms via timeBeginPeriod.
To do that, I have a ...
0
votes
0answers
36 views
Umanaged C++ code call from managed C++
I have linked an unmanaged C++ DLL to managed C++ code.
The problem is that one of the functions takes as argument an CStdioFile variable.
I could not find a way to marshal this type to an managed ...
0
votes
1answer
28 views
C# programatically protect word document readonly at paragraph or range level
My tool will process more than 1000 docs. We had set Readonly at document level, which leads to severe performance issue.
_appObject = new Microsoft.Office.Interop.Word.Application();
...
1
vote
0answers
25 views
Accesing powerpoint interop with Network Service user
I have a problem in a ASP web application using the Network service as IIS Identity, and using the Micorsoft Powerpoint Interop DLLs.
I have a windows 7 computer acting as server and developing ...
1
vote
1answer
56 views
Releasing COM objects in .NET from within enumerations and other reference scenarios
I have a WinForms application that uses COM Interop to connect to Microsoft Office applications. I have read a great deal of material regarding how to properly dispose of COM objects and here is ...
0
votes
1answer
28 views
Excel Interop - Copy a filtered worksheet to a different Excel instance
Suppose I have the following Excel Interop objects declared:
Dim ExcelToKeepHidden As New Microsoft.Office.Interop.Excel.Application
Dim SheetToCopy As Microsoft.Office.Interop.Excel.Workbook
...
0
votes
0answers
42 views
80040111 ClassFactory cannot supply requested class (Exception from HRESULT: 0x80040111 (CLASS_E_CLASSNOTAVAILABLE))
Retrieving the COM class factory for component with CLSID {0A80A563-28AE-11D3-9CD6-00C04F8B8EF1} failed due to the following error: 80040111 ClassFactory cannot supply requested class (Exception from ...
0
votes
0answers
20 views
Outlook Interop [duplicate]
I have a problem with outlook.Interop.
When i try to save msg to word if the msg is signed, interop gives me a warning from outlook.
Is there any way to automatically accept this warning.
I have ...
3
votes
0answers
36 views
Adding a tab stop to a paragraph range in c#
I need help with adding a tab stop(position at 1cm) to a word document using word interop and c#. This is what i tried already.
Range range = paragraph.Range;
int firstTabStart = range .Start;
range ...
0
votes
1answer
159 views
Inheriting from native C++ in C# and passing the inherit class backward to c++
I've an engine in a native C++ dll and I need to use it in a C# project.
I'm totally new on doing that, but I've been googling for hours and now I know more or less how to achieve it. I know I've to ...
1
vote
1answer
69 views
Calling a C++ function from C# - structs, pointers, function pointers
I'm currently trying to integrate a C++ DLL into our C# application, but I'm not able to identify the correct way to call one of their methods.
C++ methods definition:
typedef struct ...
2
votes
0answers
44 views
C# exceptions global handler under interop scenario
First of all I am going to explain the scenario. We have a Visual C++ application with some C# projects and with some wrapper projects (managed C++) to get interoperability.
We need to be informed in ...
6
votes
1answer
66 views
How to get boost multiprecision number parts?
Say I have this number:
// bmp = boost::multiprecision
bmp::cpp_dec_float n("123456789.1234567891011121314");
its backend data are:
[0] 1 unsigned int
[1] 23456789 unsigned int
[2] ...
0
votes
1answer
14 views
Hiding custom ItemProperties from print. Interop.Outlook
I have written an Outlook plugin that basically allows emails being received through Outlook to be linked with a website so that the email can also be view in the communications feature of the ...
1
vote
1answer
47 views
C#: State of a Checkbox in MS Excel
I am trying to acquire state of a checkbox existing in an XLS document via C#. Let me back up here. This is what I have:
MS Office 2007 + Dev Tools and VC# 2010 Express
Referenced MS Excel 12.0 ...
0
votes
1answer
91 views
Check for installed Excel version, then load COM object library dynamically in C#
I am using Microsoft.Office.Interop.Excel to write data to an excel file in C#. I am using Excel 2010, so I have Microsoft Excel 14.0 Object Library added as reference.. But now I need to make the ...
1
vote
2answers
58 views
Call a C++ DLL from a C# application
I'm currently trying to integrate a C++ DLL into our C# application, but I'm not able to identify what's the correct way to call one of their methods. In two different places of the documentation the ...
0
votes
1answer
25 views
Marshaling CTL_USAGE
I'm doing a project that does some work with certificates and I need to convert the CTL_USAGE structure to C#. The original structure is as follows:
typedef struct _CTL_USAGE {
DWORD ...
0
votes
1answer
27 views
Calling C# Method from C++ via Delegates Results in Reversed Parameters
I am trying to have a C++ function call a method on a form in C# in order to update the GUI. For some reason, the function call from C++ sends the parameters in reversed order.
So the ...
2
votes
0answers
55 views
Checking for Excel dll and loading dynamically
I am using Microsoft.Office.Interop.Excel for writing data to an Excel file, I have Excel 2010 installed on my machine. But I need the program to run on older versions of Excel..
The program should ...
0
votes
1answer
58 views
Missing entry point in my C#/C++ interoperability
I work on my program, which I need for my bachelor work(C#/C++ interoperability) and I have problem with missing entry point in my code... I try create simply number generator, which will be genarated ...
1
vote
0answers
58 views
AccessViolationException when setting/receiving callback
I'm trying to recreate the StreamingPreview sample from Blackmagic Design's DeckLink SDK in C# using DeckLink.net dll.
When I run the code below, it seems to work: the notifications get installed and ...
0
votes
0answers
38 views
Performance issue when resizing Win32 containing WPF
I am in the process of migrating an existing legacy project. For now we want to use C++/CLI as a bridge between business logic (native C++) and interface (WPF). I followed this MSDN article on how to ...
2
votes
2answers
49 views
How can I get the outlook contact's avatar image?
I am trying to get the contact's avatar image.
using Microsoft.Office.Interop.Outlook;
public sealed class OutlookAvatarFetcher
{
private static void FetchAvatars()
{
var outlook = ...
0
votes
0answers
37 views
Change Windows Wallpaper with Transition Effect (no ActiveDesktop)
I'll start by saying I have working code that changes the Windows desktop wallpaper, using either SystemParametersInfo or using IActiveDesktop.
When I use IActiveDesktop I do get the fade transition ...
2
votes
0answers
59 views
Marshaling a struct that has a variable array with zero elements
.NET 4 with 64bit. I have a C# structure that I intend to marshal to C
[StructLayout(LayoutKind.Sequential)]
public struct ParentStruct
{
public float[] FArray;
public int FArrayLength;
}
...
2
votes
0answers
34 views
EnableModelessKeyboardInterop or WindowInteropHelper when opening a WPF window from a Winforms app
I have a winforms application opening a wpf window. I've used both methods below:
System.Windows.Forms.Integration.ElementHost.EnableModelessKeyboardInterop(window)
and
Dim helper As ...
0
votes
0answers
56 views
does CXXI support any STL container or at least C style arrays?
I downloaded most fresh CXXI version, created a simple header test file (with 2 fundamental things I look for - lambdas/delegates, std::vector support):
#ifdef __GNUC__
#define EXPORT
#elif ...
0
votes
3answers
73 views
C#/Fortran: Unable to find an entry point
Keep getting the following error when trying to call a subroutine stored in a Fortran DLL from a C# console application: "An unhandled exception of type 'System.EntryPointNotFoundException' occurred ...
0
votes
1answer
15 views
LastModificationTime does not update when saving in Code Interop.Outlook
I'm depending on a read-only property in outlook interop.
TaskItem.LastModificationTime
I apply a change and save the item. Unfortunately the last modification time does not update, while the values ...
0
votes
0answers
4 views
Calling from C# EapHostPeerCredentialsXml2Blob
I am trying to call the EapHostPeerCredentialsXml2Blob function from C#. Not sure How I pass the IXMLDOMNode to it.
Would appreciate if someone has worked with this function before and can help me ...
0
votes
2answers
55 views
Auto close WPF application
I have a need to shutdown my application if the user haven't used it for certain period of time.
The method I use now works great on a single window but i can't seem to make it global.
this is how i ...
-4
votes
1answer
42 views
How to get old versions of Microsoft Office? [closed]
I am moving a project from one company (with Office 2010) to my own server.
How do I get Office 2010? The project uses Microsoft.Office.Interop and interacts with Excel.
0
votes
3answers
79 views
C# P/Invoke and array of structs containing byte arrays
I need to invoke a native DLL from C# code. As I am not very familiar with C/C++, I can't figure out how a structure defined in C should be declared in C# so it can be invoked. The problem is that two ...
0
votes
1answer
81 views
Using Stasm with C# - DllImport / Interop
I know this question has been asked before here and here, unfortunately, the answers provided were not able to solve my problem. I'm using Stasm (http://www.milbo.users.sonic.net/stasm/index.html) ...
0
votes
0answers
25 views
powerpoint interop running in cycle
I have a web application (asp.net) which generate ppt files. I know Asp.net and Interop are not working well together, but I didn't really have a choice in that case.
My problem is : When I launch in ...
0
votes
0answers
46 views
using .NET Interop with Word-inserting fields into footer
I have written code that allows me to insert a field into the footer, this field will insert the document ID. The trouble I am having is:
When I insert this new field it will delete everything else ...
0
votes
2answers
102 views
Changing a value at a specific taskID within MS Project through C#(Microsoft.Office.Interop.MSProject)
I am trying to edit a task in MS Project. I want to update specific tasks(multiple tasks) at the column "StartDate" with a single date from a dateTimePicker. I am using ...
-4
votes
0answers
39 views
Reading word doc with Interop.Word class [closed]
I need to read a a word documents hidden text which is a bunch of tags with this format:
<jl:jump,"text">
I then need to pull the "TEXT" part of the tag and stick each in a string [] ...
0
votes
1answer
109 views
“Object reference not set to an instance of an object” while trying to create a Excel file using Interop
I found this code on Internet to create a Excel file using Interop library:
object misValue = System.Reflection.Missing.Value;
xlWorkBook = xlApp.Workbooks.Add(misValue);
xlWorkSheet = ...




