C++/CLI is an extension of the C++ programming language. It extends the syntax to allow compilation of a mixture of native code and code for Microsoft's Common Language Infrastructure (CLI). It is a replacement for Microsoft's now deprecated Managed Extensions for C++.
0
votes
0answers
6 views
How to convert IPAddress from IPv4Base10Format to IPv4Base256Format
I have a problem reading IPAddress from a DNS Server for a given host using C++/CLI.
The following code always returns IPAddress in "IPv4Base10Format" where as I want it
in IPv4Base256Format.
...
0
votes
0answers
15 views
equivalent of a c# class in c /CLI when used as a parameter(managed) for a function in c /CLI
I have a c# file as below:
//MyHandler.cs
public **class MyHandler**
{
**Function1(IntPtr handle)**
{....}
Function2(MyImageHandler myImgHandler,int height,int width)
{....}
};
public **class ...
-2
votes
0answers
13 views
__declspec(dllexport) cannot be applied to a function with the __clrcall calling convention
I have created the wrapper for class library in C# and when I build the Wrapper then I get the following error as:
__declspec(dllexport) cannot be applied to a function with the __clrcall calling ...
0
votes
1answer
29 views
RichEditBox get and set Text C++
How can I set and get the text from a RichEditBox in an Windows 8 C++ App.
I already tried these two approaches, but the program keeps crashing at runtime
cpp
...
1
vote
0answers
35 views
C++ and C++/CLI cooperation
Can you remind me of how to make linking between C++ and C++/CLI?
I have it like this:
"hashtable" is a native code file with header where i do sample BIG RAM allocation, it compiles ok.
"BPSW" is ...
1
vote
1answer
16 views
Bubbling errors from c++/clr to c#/.net
I have the following code begin ran in a native/win32 c++ library.
// Load lt dll
OutputDebugString(L"LoadLtDll");
m_LTDll = LoadLtDll("C:/Program Files/Enciris Technologies/LT101 Driver ...
0
votes
1answer
20 views
Finding working destructor for gcroot<Bitmap^> class in visual studio
Sorry for my english. I want to free memory that was used by gcroot objejct. Here is a simple example that returns me an error. On MSDN I found that there is a Dispose() method for Bitmap object. When ...
0
votes
0answers
15 views
I need to count all the CHUMPS with values less then 3 and greater then 7 anyone know how I would do that?
#pragma once
namespace QualityControl {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
...
0
votes
1answer
22 views
How to create C# Event Handlers in C++/CLI?
Please have a look at the following code
private: System::Void button3_Click(System::Object^ sender, System::EventArgs^ e)
{
System::Speech::Recognition::SpeechRecognizer ^sr = gcnew ...
0
votes
1answer
20 views
Pin a delegate when using a member-function for a C-Style callback
When using a member function for a C-Style callback, is it necessary to pin the delegate so that it is not collected or moved by the GC? I have read several posts on the subject but have not been ...
0
votes
0answers
32 views
Unhandled exception at 0x75619617 (KernelBase.dll) in iexplore.exe
I'm making a firebreath based plugin which adds two integers.
I'm debugging the plugin by attaching the source to the browser. I'm getting the above exception at this step of my PLUGINAPI.cpp
I have ...
-1
votes
2answers
29 views
Unable to perform Speech Recognition in C++/CLI because of converting issues
please have a look at the following c++/cli code
#pragma once
namespace SpeechTest {
using namespace System;
using namespace System::ComponentModel;
using namespace ...
0
votes
1answer
28 views
active reports in C /CLI
Can we use Active Reports 7.0 in C++/CLI? I have just started using active reports. I tried building a report in C# without any problem. I tried doing the same in C++/CLI, but I am unable to use the ...
0
votes
1answer
25 views
Passing arguments from managed C# to Managed C++
what is the preferred method to pass a string between C++ and C#?
i have a c++ class where one of the functions takes a const char var1 and const char var2[] as parameter.
When I call such function ...
0
votes
1answer
47 views
cannot convert parameter in C++/CLI [closed]
Please have a look at the following code
SpeechRecognizer ^sr = gcnew SpeechRecognizer();
Choices^ commands = gcnew Choices;
array<String^>^words = gcnew ...
0
votes
3answers
61 views
C++/CLI: Implementing an abstract C# class that implements INotifyPropertyChanged results in C++ compiler error C3766
I'm trying to implement an abstract C# class in C++/CLI. This abstract base class is already implementing INotifyPropertyChanged and as mentioned written in C#:
public abstract class BaseClass : ...
1
vote
0answers
8 views
Read amplitudes of (MP3/WAV) using MCI Command
A couple of friends and I are working on a soundboard and we would like to implement
a waveform-generator, for which we need information regarding the amplitudes of a sound
at specific points.
I would ...
0
votes
1answer
20 views
how to convert “PWSTR” to “System::String^” in c++
I would like to know how to convert "PWSTR" to "System::String^"
My code snippet follows here...
array<System::String^>^ nsRecords;
try
{
nsRecordCount = ...
0
votes
1answer
30 views
how to assign pointer in a managed array of pointers c++/cli?
I am new to managed code and i need to pass array of pointers to different structures to windows form using C++/CLI , but it didn`t work !
My problem is in the managed array, how can i correctly ...
1
vote
3answers
59 views
call C# class from C++CLR
I want to call C# class from C++CLR. I have also created the wrapper for the same. Suppose In C# class library:
namespace MyImage
{
public class DicomHandler
{
public void ...
0
votes
2answers
63 views
Console::WriteLine() vs. cout
I've just started trying to teach myself C++ (I've been a C# programmer for about a year now) and I can't understand for the life of me what the difference is between Console::WriteLine("Hello World") ...
0
votes
1answer
33 views
Invoking C++/CLI code from C#
I have a pretty stupid problem: apparently my knowledge of .NET platform and how C# and C++/CLI communicate is very low, maybe it's that I just don't know some lifehacks or need-to-knows of MSVS.
I ...
0
votes
2answers
49 views
Prevent delegate from being garbage collected
I'm currently trying to marshal a C# delegate to a C++ function pointer and I looked at the example from Microsoft:
// MarshalDelegate1.cpp
// compile with: /clr
#include <iostream>
using ...
1
vote
0answers
38 views
WinDBG debugging a C++ /CLI module
I'm trying to use WINDBG to debug a C++/CLI module loaded in some application (Autodesk Revit). The problem is that the breakpoints set in unmanaged class methods are not hit. I have this class :
...
-1
votes
0answers
50 views
how to deliver pointer from c++ to c#? (example of calling c# delegate from native c++ via c++-cli ?)
I have C# project, native c++ project and cli wrapper.
Somehow I need to deliver pointer to native c++ structure to c#. In c# i need to read this structure in "unsafe" block and convert to managed c# ...
0
votes
1answer
133 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 ...
0
votes
0answers
27 views
Make specific color on pictureBox transparent
So I have been trying to load a picture into a pictureBox, and I am trying to make a specific color (defined by a Red, Green, Blue Slider), Which would be (R)89, (G)112, and (B)33, Transparent... Here ...
0
votes
0answers
13 views
Passing/Keeping/Returning String From Form/Dialog - C++ /CLI
I am trying to pass a reference to a String to a Form that shows a Dialog for user input and then pass the input String back out. I have followed several other questions on this and just can not get ...
1
vote
3answers
33 views
Marshal::GetFunctionPointerForDelegate: should I release its result?
I'm converting a managed System.Action to an unmanaged std::function inside a C++/CLI project; should I release the given IntPtr after using the callback, or is it unnecessary?
void ...
0
votes
1answer
62 views
C# compile fail because of “Due to its protection level”
My situation is this.
I have 3 Projects.
PrivacyDetectorDLL
PDWrapper
WindowsFormsApplication1 (C#)
My goal is to use Native C++ class in C#.
So I used C++/Cli wrapper class.
But I get error of ...
0
votes
2answers
37 views
C# dispose is not called when object leaves scope in C++/CLI
I have a C# object that is resposible for a ressource which looks like this:
public sealed class CLoadingScope
{
private bool isDisposed;
public CLoadingScope()
{}
...
0
votes
1answer
24 views
How to display global variable on messagebox?
This is written code,
void horizontal_calculate()
{
String ^aa = filenames[0];
std::string file1(marshal_as<std::string>(aa));
String ^bb = filenames[1];
std::string ...
1
vote
1answer
57 views
C++ Transferring Variable between Buttons
In My Code I want to Re-Use My buttons, Since I dont want to Deal with tons of them... But the Variables that I use to Change the Events of the buttons Are not Transferring... How would I make A ...
0
votes
1answer
29 views
C++/CLI generic equivalent
I would like to convert the following C# code to C++/CLI. Problem is specifically with the generic constraint of itself. Below is code:
Thanks!
abstract class BaseStaticOverride<T> where T : ...
0
votes
1answer
40 views
C# Classes from javascript though Firebreath Framework
I have to call the C# classes from javascript through Firebreath Framework.
I am new to the Firebreath Framework.
Suppose In the C#,
Public Class ImageDraw
{
}
Public Class Test
...
0
votes
1answer
29 views
C# classes exposed from javascript through Firebreath Framework
I need to create the classes in C# and call that classes from javascript through C++CLI and Firebreath Framework .. create the complex hierarchy class structure and expose it from javacsript
The ...
-3
votes
0answers
16 views
I want to build a program with ui using c++/clr,why it's so slow in reading data? [closed]
This program will read about 2000000 words,so I create a background Task to finish it.
But it is very very slow,about 5 minutes.
How can i improme it?Any idea?
0
votes
1answer
16 views
Error: “BindingFlags” is ambiguous whenever vcclr.h is used
Trying to experiment a bit with C++ CLI, targetting .NET 4.0 (not 4.5), I'm getting a slightly annoying issue. The code below gives an IntelliSense warning in my Visual Studio 2012; it complains that ...
0
votes
1answer
31 views
Array of Buttons - One Event Handler - Figuring Out Which Button Was Clicked
I have no easy way to explain this but I have 100 buttons, written up to be in an array of buttons with this here line of code:
static array <Button^, 2>^ button = gcnew array <Button^, ...
0
votes
1answer
39 views
How do i copy to a List?
I have this code in CLI
List<Codec^> ^GetCodecs()
{
List<Codec^> ^l = gcnew List<Codec^>;
bool KeepLooping = Encoder_MoveToFirstCodec();
while (KeepLooping)
{
...
0
votes
2answers
24 views
how do I get this code to take 65 and convert it into binary with c++/cli [duplicate]
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
int base10;
long base2 = 0;
base10 = Convert::ToInt32(txtBase10->Text);
base2 = base10 / 128 * ...
0
votes
1answer
43 views
Managed C++ Wrapper - How to to expose the Method with pointers as arguments?
I am writing a managed c++ wrapper.
It has a method with arguments as pointers.
How to expose this type of method?
Eg: void Test(float* salary);
1
vote
1answer
90 views
Setting modifier “public: static” in visual c++
Firstly, I apologise if this is a 'silly' question. I have searched extensively and cannot find an answer to this, but it seems like something that should be fairly simple.
I have a Windows Forms ...
0
votes
0answers
52 views
Passing OpenCV Mat to Delegate Function C++/cli
I am using OpenCV with a multithreaded approach where one thread runs the GUI and another thread handles the background tasks. I am using VS2010 with c++/cli.
In order to update controls on the GUI ...
0
votes
1answer
28 views
VS 2010 C++/CLI Solution on Win 7 32-bit works but on Win7 64-bit does NOT
I had created some C++/CLI solutions of Winform type using Visual Studio 2010 on Windows 7 32-bit machine.
I have installed the exact version of Visual Studio 2010 in Windows 7 64-bit machine but when ...
0
votes
1answer
61 views
How do i get the codec's List of ffmpeg by names?
I have this function in C
int Encoder_GetCurrentCodecType()
{
if (current_codec != NULL)
return (int) current_codec->type;
return AVMEDIA_TYPE_UNKNOWN;
}
But the function return ...
0
votes
0answers
14 views
Windows Forms Access Exeception on DLL linking
I have 2 projects in my solution. First is C++/CLI(Windows Forms) and second is Win32 C++(dll), when I link library to C++/CLI project - it links, but programm throw System.AccessViolationException in ...
0
votes
1answer
29 views
How can i make that in the List codec's it will also show me the type of each codec?
The type of each codec or the type of the codec's
In the List i have in the end about 500 codec's i want that for example in the List in the beginning it will show for example:
Audio
mpeha
mpegv
...
0
votes
0answers
35 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 ...
0
votes
1answer
21 views
Can't access global variables
In globaldata.h I am defining a typedef struct as GlobalData. In my main cpp program, I'm including globaldata.h, then declaring
GlobalData globalData;
After that declaration, I include ...
