473,406 Members | 2,369 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Converting an unmanaged C++ project to be managed

Are there any good papers/documentation around for taking
an unmanaged VC++ Project using MFC (created in VC V6) and
making it managed? My main goal here to be able to
implement new functionality in our system using C# and
being able to utilize the C# assembly from within the
existing VC++ code.

Can you mix and match like this? For example, could I
have CObject derived object create a C# assembly that
creates an OLE DB recordset and stores properties into the
CObject-derived object?

Thanks for your help.

Regards,

-Rob
Nov 16 '05 #1
12 7463
> Are there any good papers/documentation around for taking
an unmanaged VC++ Project using MFC (created in VC V6) and
making it managed?
http://msdn.microsoft.com/library/en...plications.asp
http://msdn.microsoft.com/library/en...art1_Start.asp
in VS.NET install dir, Vc7\migration_guide.doc

It's just a matter of using /clr switch and you get access to your C#
assembly and MC++ syntax.
My main goal here to be able to
implement new functionality in our system using C# and
being able to utilize the C# assembly from within the
existing VC++ code.
Can you mix and match like this?


Yes
Nov 16 '05 #2
Thanks for your response.

I looked at the document and it states to set the /clr
option. When I do this I get a build error:
"cl : Command line error D2016 : '/RTC1' and '/clr'
command-line options are incompatible"

I can't seem to find which setting to uncheck to disable
this setting.

Also, once I do this, what will I have to distribute with
my app for the .NET runtime?

Regards,

-Rob

-----Original Message-----
Are there any good papers/documentation around for taking an unmanaged VC++ Project using MFC (created in VC V6) and making it managed?
http://msdn.microsoft.com/library/en-

us/vcmex/html/vcoriMigratingYourApplications.asphttp://msdn.microsoft.com/library/en- us/vcmxspec/html/vcManExMigrationGuidePart1_Start.aspin VS.NET install dir, Vc7\migration_guide.doc

It's just a matter of using /clr switch and you get access to your C#assembly and MC++ syntax.
My main goal here to be able to
implement new functionality in our system using C# and
being able to utilize the C# assembly from within the
existing VC++ code.
Can you mix and match like this?


Yes
.

Nov 16 '05 #3
/RTC1 is "Basic runtime checks" setting under Code Generation.

You either have to direct users to windows update site to get .net redist
or
http://www.microsoft.com/downloads/d...7-034D1E7CF3A3

"Rob C" <an*******@discussions.microsoft.com> wrote in message
news:02****************************@phx.gbl...
Thanks for your response.

I looked at the document and it states to set the /clr
option. When I do this I get a build error:
"cl : Command line error D2016 : '/RTC1' and '/clr'
command-line options are incompatible"

I can't seem to find which setting to uncheck to disable
this setting.

Also, once I do this, what will I have to distribute with
my app for the .NET runtime?

Regards,

-Rob

-----Original Message-----
Are there any good papers/documentation around for taking an unmanaged VC++ Project using MFC (created in VC V6) and making it managed?


http://msdn.microsoft.com/library/en-

us/vcmex/html/vcoriMigratingYourApplications.asp
http://msdn.microsoft.com/library/en-

us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp
in VS.NET install dir, Vc7\migration_guide.doc

It's just a matter of using /clr switch and you get

access to your C#
assembly and MC++ syntax.
My main goal here to be able to
implement new functionality in our system using C# and
being able to utilize the C# assembly from within the
existing VC++ code.
Can you mix and match like this?


Yes
.



Nov 16 '05 #4
/RTC1 is "Basic runtime checks" setting under Code Generation.

You either have to direct users to windows update site to get .net redist
or
http://www.microsoft.com/downloads/d...7-034D1E7CF3A3

"Rob C" <an*******@discussions.microsoft.com> wrote in message
news:02****************************@phx.gbl...
Thanks for your response.

I looked at the document and it states to set the /clr
option. When I do this I get a build error:
"cl : Command line error D2016 : '/RTC1' and '/clr'
command-line options are incompatible"

I can't seem to find which setting to uncheck to disable
this setting.

Also, once I do this, what will I have to distribute with
my app for the .NET runtime?

Regards,

-Rob

-----Original Message-----
Are there any good papers/documentation around for taking an unmanaged VC++ Project using MFC (created in VC V6) and making it managed?


http://msdn.microsoft.com/library/en-

us/vcmex/html/vcoriMigratingYourApplications.asp
http://msdn.microsoft.com/library/en-

us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp
in VS.NET install dir, Vc7\migration_guide.doc

It's just a matter of using /clr switch and you get

access to your C#
assembly and MC++ syntax.
My main goal here to be able to
implement new functionality in our system using C# and
being able to utilize the C# assembly from within the
existing VC++ code.
Can you mix and match like this?


Yes
.



Nov 16 '05 #5
/RTC1 is "Basic runtime checks" setting under Code Generation.

You either have to direct users to windows update site to get .net redist
or
http://www.microsoft.com/downloads/d...7-034D1E7CF3A3

"Rob C" <an*******@discussions.microsoft.com> wrote in message
news:02****************************@phx.gbl...
Thanks for your response.

I looked at the document and it states to set the /clr
option. When I do this I get a build error:
"cl : Command line error D2016 : '/RTC1' and '/clr'
command-line options are incompatible"

I can't seem to find which setting to uncheck to disable
this setting.

Also, once I do this, what will I have to distribute with
my app for the .NET runtime?

Regards,

-Rob

-----Original Message-----
Are there any good papers/documentation around for taking an unmanaged VC++ Project using MFC (created in VC V6) and making it managed?


http://msdn.microsoft.com/library/en-

us/vcmex/html/vcoriMigratingYourApplications.asp
http://msdn.microsoft.com/library/en-

us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp
in VS.NET install dir, Vc7\migration_guide.doc

It's just a matter of using /clr switch and you get

access to your C#
assembly and MC++ syntax.
My main goal here to be able to
implement new functionality in our system using C# and
being able to utilize the C# assembly from within the
existing VC++ code.
Can you mix and match like this?


Yes
.


Nov 16 '05 #6
Under Project Properties/Code Generation, it does not let
me deselect this option. The possible values
are "default", "Stack Frames (/RTCs)", "Uninitialized
Variables (/RTCu)" and "Both (/RTC1, equiv. to /RTCsu)".
All of these selections generate that same error. Is
there a different porperty to set that turns off this
option?

Regards,

-Rob
-----Original Message-----
/RTC1 is "Basic runtime checks" setting under Code Generation.
You either have to direct users to windows update site to get .net redistor
http://www.microsoft.com/downloads/details.aspx? FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3
"Rob C" <an*******@discussions.microsoft.com> wrote in messagenews:02****************************@phx.gbl...
Thanks for your response.

I looked at the document and it states to set the /clr
option. When I do this I get a build error:
"cl : Command line error D2016 : '/RTC1' and '/clr'
command-line options are incompatible"

I can't seem to find which setting to uncheck to disable
this setting.

Also, once I do this, what will I have to distribute with my app for the .NET runtime?

Regards,

-Rob

>-----Original Message-----
>> Are there any good papers/documentation around for

taking
>> an unmanaged VC++ Project using MFC (created in VC V6)
and
>> making it managed?
>
>http://msdn.microsoft.com/library/en-

us/vcmex/html/vcoriMigratingYourApplications.asp
>http://msdn.microsoft.com/library/en-

us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp
>in VS.NET install dir, Vc7\migration_guide.doc
>
>It's just a matter of using /clr switch and you get

access to your C#
>assembly and MC++ syntax.
>
>>My main goal here to be able to
>> implement new functionality in our system using C#

and >> being able to utilize the C# assembly from within the
>> existing VC++ code.
>> Can you mix and match like this?
>
>Yes
>
>
>.
>



.

Nov 16 '05 #7
use Default

"Rob C" <an*******@discussions.microsoft.com> wrote in message
news:05****************************@phx.gbl...
Under Project Properties/Code Generation, it does not let
me deselect this option. The possible values
are "default", "Stack Frames (/RTCs)", "Uninitialized
Variables (/RTCu)" and "Both (/RTC1, equiv. to /RTCsu)".
All of these selections generate that same error. Is
there a different porperty to set that turns off this
option?

Regards,

-Rob
-----Original Message-----
/RTC1 is "Basic runtime checks" setting under Code

Generation.

You either have to direct users to windows update site to

get .net redist
or
http://www.microsoft.com/downloads/details.aspx?

FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3

"Rob C" <an*******@discussions.microsoft.com> wrote in

message
news:02****************************@phx.gbl...
Thanks for your response.

I looked at the document and it states to set the /clr
option. When I do this I get a build error:
"cl : Command line error D2016 : '/RTC1' and '/clr'
command-line options are incompatible"

I can't seem to find which setting to uncheck to disable
this setting.

Also, once I do this, what will I have to distribute with my app for the .NET runtime?

Regards,

-Rob
>-----Original Message-----
>> Are there any good papers/documentation around for
taking
>> an unmanaged VC++ Project using MFC (created in VC V6) and
>> making it managed?
>
>http://msdn.microsoft.com/library/en-
us/vcmex/html/vcoriMigratingYourApplications.asp
>http://msdn.microsoft.com/library/en-
us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp
>in VS.NET install dir, Vc7\migration_guide.doc
>
>It's just a matter of using /clr switch and you get
access to your C#
>assembly and MC++ syntax.
>
>>My main goal here to be able to
>> implement new functionality in our system using C# and >> being able to utilize the C# assembly from within the
>> existing VC++ code.
>> Can you mix and match like this?
>
>Yes
>
>
>.
>



.

Nov 16 '05 #8
use Default

"Rob C" <an*******@discussions.microsoft.com> wrote in message
news:05****************************@phx.gbl...
Under Project Properties/Code Generation, it does not let
me deselect this option. The possible values
are "default", "Stack Frames (/RTCs)", "Uninitialized
Variables (/RTCu)" and "Both (/RTC1, equiv. to /RTCsu)".
All of these selections generate that same error. Is
there a different porperty to set that turns off this
option?

Regards,

-Rob
-----Original Message-----
/RTC1 is "Basic runtime checks" setting under Code

Generation.

You either have to direct users to windows update site to

get .net redist
or
http://www.microsoft.com/downloads/details.aspx?

FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3

"Rob C" <an*******@discussions.microsoft.com> wrote in

message
news:02****************************@phx.gbl...
Thanks for your response.

I looked at the document and it states to set the /clr
option. When I do this I get a build error:
"cl : Command line error D2016 : '/RTC1' and '/clr'
command-line options are incompatible"

I can't seem to find which setting to uncheck to disable
this setting.

Also, once I do this, what will I have to distribute with my app for the .NET runtime?

Regards,

-Rob
>-----Original Message-----
>> Are there any good papers/documentation around for
taking
>> an unmanaged VC++ Project using MFC (created in VC V6) and
>> making it managed?
>
>http://msdn.microsoft.com/library/en-
us/vcmex/html/vcoriMigratingYourApplications.asp
>http://msdn.microsoft.com/library/en-
us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp
>in VS.NET install dir, Vc7\migration_guide.doc
>
>It's just a matter of using /clr switch and you get
access to your C#
>assembly and MC++ syntax.
>
>>My main goal here to be able to
>> implement new functionality in our system using C# and >> being able to utilize the C# assembly from within the
>> existing VC++ code.
>> Can you mix and match like this?
>
>Yes
>
>
>.
>



.

Nov 16 '05 #9
It actually was set to default to begin with the first
time I got the error. I tried selecting each one and
rebuilding but to no avail.

Any other thoughts?

Thanks again for your help.

Regards,

-Rob
-----Original Message-----
use Default

"Rob C" <an*******@discussions.microsoft.com> wrote in messagenews:05****************************@phx.gbl...
Under Project Properties/Code Generation, it does not let me deselect this option. The possible values
are "default", "Stack Frames (/RTCs)", "Uninitialized
Variables (/RTCu)" and "Both (/RTC1, equiv. to /RTCsu)".
All of these selections generate that same error. Is
there a different porperty to set that turns off this
option?

Regards,

-Rob
>-----Original Message-----
>/RTC1 is "Basic runtime checks" setting under Code

Generation.
>
>You either have to direct users to windows update site to
get .net redist
>or
>http://www.microsoft.com/downloads/details.aspx?

FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3
>
>"Rob C" <an*******@discussions.microsoft.com> wrote in

message
>news:02****************************@phx.gbl...
>> Thanks for your response.
>>
>> I looked at the document and it states to set

the /clr >> option. When I do this I get a build error:
>> "cl : Command line error D2016 : '/RTC1' and '/clr'
>> command-line options are incompatible"
>>
>> I can't seem to find which setting to uncheck to disable >> this setting.
>>
>> Also, once I do this, what will I have to distribute

with
>> my app for the .NET runtime?
>>
>> Regards,
>>
>> -Rob
>>
>>
>> >-----Original Message-----
>> >> Are there any good papers/documentation around for
>> taking
>> >> an unmanaged VC++ Project using MFC (created in VC

V6)
>> and
>> >> making it managed?
>> >
>> >http://msdn.microsoft.com/library/en-
>> us/vcmex/html/vcoriMigratingYourApplications.asp
>> >http://msdn.microsoft.com/library/en-
>> us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp
>> >in VS.NET install dir, Vc7\migration_guide.doc
>> >
>> >It's just a matter of using /clr switch and you get
>> access to your C#
>> >assembly and MC++ syntax.
>> >
>> >>My main goal here to be able to
>> >> implement new functionality in our system using C#

and
>> >> being able to utilize the C# assembly from within the >> >> existing VC++ code.
>> >> Can you mix and match like this?
>> >
>> >Yes
>> >
>> >
>> >.
>> >
>
>
>
>
>.
>

.

Nov 16 '05 #10
Don't know. If this was vc6 project converted to VS.NET then maybe
conversion failed somewhere.

"Rob C" <an*******@discussions.microsoft.com> wrote in message
news:06****************************@phx.gbl...
It actually was set to default to begin with the first
time I got the error. I tried selecting each one and
rebuilding but to no avail.

Any other thoughts?

Thanks again for your help.

Regards,

-Rob
-----Original Message-----
use Default

"Rob C" <an*******@discussions.microsoft.com> wrote in

message
news:05****************************@phx.gbl...
Under Project Properties/Code Generation, it does not let me deselect this option. The possible values
are "default", "Stack Frames (/RTCs)", "Uninitialized
Variables (/RTCu)" and "Both (/RTC1, equiv. to /RTCsu)".
All of these selections generate that same error. Is
there a different porperty to set that turns off this
option?

Regards,

-Rob

>-----Original Message-----
>/RTC1 is "Basic runtime checks" setting under Code
Generation.
>
>You either have to direct users to windows update site to get .net redist
>or
>http://www.microsoft.com/downloads/details.aspx?
FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3
>
>"Rob C" <an*******@discussions.microsoft.com> wrote in
message
>news:02****************************@phx.gbl...
>> Thanks for your response.
>>
>> I looked at the document and it states to set the /clr >> option. When I do this I get a build error:
>> "cl : Command line error D2016 : '/RTC1' and '/clr'
>> command-line options are incompatible"
>>
>> I can't seem to find which setting to uncheck to disable >> this setting.
>>
>> Also, once I do this, what will I have to distribute
with
>> my app for the .NET runtime?
>>
>> Regards,
>>
>> -Rob
>>
>>
>> >-----Original Message-----
>> >> Are there any good papers/documentation around for
>> taking
>> >> an unmanaged VC++ Project using MFC (created in VC
V6)
>> and
>> >> making it managed?
>> >
>> >http://msdn.microsoft.com/library/en-
>> us/vcmex/html/vcoriMigratingYourApplications.asp
>> >http://msdn.microsoft.com/library/en-
>> us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp
>> >in VS.NET install dir, Vc7\migration_guide.doc
>> >
>> >It's just a matter of using /clr switch and you get
>> access to your C#
>> >assembly and MC++ syntax.
>> >
>> >>My main goal here to be able to
>> >> implement new functionality in our system using C#
and
>> >> being able to utilize the C# assembly from within the >> >> existing VC++ code.
>> >> Can you mix and match like this?
>> >
>> >Yes
>> >
>> >
>> >.
>> >
>
>
>
>
>.
>

.

Nov 16 '05 #11
This is strange... I was able to build the project as a
Release Build with the setting set to default but I still
get the error when I try to build it in Debug.

I guess its time to cash in one of my support incidents at
Microsoft.

Thanks again for your help.

Regards,

-Rob
-----Original Message-----
Don't know. If this was vc6 project converted to VS.NET then maybeconversion failed somewhere.

"Rob C" <an*******@discussions.microsoft.com> wrote in messagenews:06****************************@phx.gbl...
It actually was set to default to begin with the first
time I got the error. I tried selecting each one and
rebuilding but to no avail.

Any other thoughts?

Thanks again for your help.

Regards,

-Rob
>-----Original Message-----
>use Default
>
>"Rob C" <an*******@discussions.microsoft.com> wrote in

message
>news:05****************************@phx.gbl...
>> Under Project Properties/Code Generation, it does not

let
>> me deselect this option. The possible values
>> are "default", "Stack Frames (/RTCs)", "Uninitialized
>> Variables (/RTCu)" and "Both (/RTC1, equiv. to /RTCsu)". >> All of these selections generate that same error. Is
>> there a different porperty to set that turns off this
>> option?
>>
>> Regards,
>>
>> -Rob
>>
>> >-----Original Message-----
>> >/RTC1 is "Basic runtime checks" setting under Code
>> Generation.
>> >
>> >You either have to direct users to windows update site
to
>> get .net redist
>> >or
>> >http://www.microsoft.com/downloads/details.aspx?
>> FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3
>> >
>> >"Rob C" <an*******@discussions.microsoft.com> wrote
in >> message
>> >news:02****************************@phx.gbl...
>> >> Thanks for your response.
>> >>
>> >> I looked at the document and it states to set

the /clr
>> >> option. When I do this I get a build error:
>> >> "cl : Command line error D2016 : '/RTC1' and '/clr' >> >> command-line options are incompatible"
>> >>
>> >> I can't seem to find which setting to uncheck to

disable
>> >> this setting.
>> >>
>> >> Also, once I do this, what will I have to distribute >> with
>> >> my app for the .NET runtime?
>> >>
>> >> Regards,
>> >>
>> >> -Rob
>> >>
>> >>
>> >> >-----Original Message-----
>> >> >> Are there any good papers/documentation around for >> >> taking
>> >> >> an unmanaged VC++ Project using MFC (created in VC >> V6)
>> >> and
>> >> >> making it managed?
>> >> >
>> >> >http://msdn.microsoft.com/library/en-
>> >> us/vcmex/html/vcoriMigratingYourApplications.asp
>> >> >http://msdn.microsoft.com/library/en-
>> >> us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp >> >> >in VS.NET install dir, Vc7\migration_guide.doc
>> >> >
>> >> >It's just a matter of using /clr switch and you get >> >> access to your C#
>> >> >assembly and MC++ syntax.
>> >> >
>> >> >>My main goal here to be able to
>> >> >> implement new functionality in our system using C# >> and
>> >> >> being able to utilize the C# assembly from

within the
>> >> >> existing VC++ code.
>> >> >> Can you mix and match like this?
>> >> >
>> >> >Yes
>> >> >
>> >> >
>> >> >.
>> >> >
>> >
>> >
>> >
>> >
>> >.
>> >
>
>
>.
>

.

Nov 16 '05 #12
No just do this:
Open .vcproj file from your project's directory. It's in xml format.
Find
<Configuration Name="Debug.... >
<Tool ... BasicRuntimeChecks="3" ... />

Change it to 0.
"Rob C" <an*******@discussions.microsoft.com> wrote in message
news:0d****************************@phx.gbl...
This is strange... I was able to build the project as a
Release Build with the setting set to default but I still
get the error when I try to build it in Debug.

I guess its time to cash in one of my support incidents at
Microsoft.

Thanks again for your help.

Regards,

-Rob
-----Original Message-----
Don't know. If this was vc6 project converted to VS.NET

then maybe
conversion failed somewhere.

"Rob C" <an*******@discussions.microsoft.com> wrote in

message
news:06****************************@phx.gbl...
It actually was set to default to begin with the first
time I got the error. I tried selecting each one and
rebuilding but to no avail.

Any other thoughts?

Thanks again for your help.

Regards,

-Rob

>-----Original Message-----
>use Default
>
>"Rob C" <an*******@discussions.microsoft.com> wrote in
message
>news:05****************************@phx.gbl...
>> Under Project Properties/Code Generation, it does not
let
>> me deselect this option. The possible values
>> are "default", "Stack Frames (/RTCs)", "Uninitialized
>> Variables (/RTCu)" and "Both (/RTC1, equiv. to /RTCsu)". >> All of these selections generate that same error. Is
>> there a different porperty to set that turns off this
>> option?
>>
>> Regards,
>>
>> -Rob
>>
>> >-----Original Message-----
>> >/RTC1 is "Basic runtime checks" setting under Code
>> Generation.
>> >
>> >You either have to direct users to windows update site to
>> get .net redist
>> >or
>> >http://www.microsoft.com/downloads/details.aspx?
>> FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3
>> >
>> >"Rob C" <an*******@discussions.microsoft.com> wrote in >> message
>> >news:02****************************@phx.gbl...
>> >> Thanks for your response.
>> >>
>> >> I looked at the document and it states to set
the /clr
>> >> option. When I do this I get a build error:
>> >> "cl : Command line error D2016 : '/RTC1' and '/clr' >> >> command-line options are incompatible"
>> >>
>> >> I can't seem to find which setting to uncheck to
disable
>> >> this setting.
>> >>
>> >> Also, once I do this, what will I have to distribute >> with
>> >> my app for the .NET runtime?
>> >>
>> >> Regards,
>> >>
>> >> -Rob
>> >>
>> >>
>> >> >-----Original Message-----
>> >> >> Are there any good papers/documentation around for >> >> taking
>> >> >> an unmanaged VC++ Project using MFC (created in VC >> V6)
>> >> and
>> >> >> making it managed?
>> >> >
>> >> >http://msdn.microsoft.com/library/en-
>> >> us/vcmex/html/vcoriMigratingYourApplications.asp
>> >> >http://msdn.microsoft.com/library/en-
>> >> us/vcmxspec/html/vcManExMigrationGuidePart1_Start.asp >> >> >in VS.NET install dir, Vc7\migration_guide.doc
>> >> >
>> >> >It's just a matter of using /clr switch and you get >> >> access to your C#
>> >> >assembly and MC++ syntax.
>> >> >
>> >> >>My main goal here to be able to
>> >> >> implement new functionality in our system using C# >> and
>> >> >> being able to utilize the C# assembly from within the
>> >> >> existing VC++ code.
>> >> >> Can you mix and match like this?
>> >> >
>> >> >Yes
>> >> >
>> >> >
>> >> >.
>> >> >
>> >
>> >
>> >
>> >
>> >.
>> >
>
>
>.
>

.

Nov 16 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Bob Rock | last post by:
Hello, in the last few days I've made my first few attempts at creating mixed C++ managed-unmanaged assemblies and looking aftwerwards with ILDASM at what is visible in those assemblies from a...
1
by: Sin | last post by:
Hello everyone, I'm currently trying to migrate a MSVC6 project to .NET... The straight conversion (ie : unmanaged) was extremely straightforward. Now I'm trying to compile and hopefully run the...
0
by: Edward Diener | last post by:
I have some questions about the instructions for creating a mixed mode DLL in the MSDN topic "Converting Managed Extensions for C++ Projects from Pure Intermediate Language to Mixed Mode" in the...
9
by: Edward Diener | last post by:
I received no answers about this the first time I posted, so I will try again. My inability to decipher an MSDN topic may find others who have the same inability and someone who can decipher and...
4
by: repstat | last post by:
Hi I have a project which is going to be doing some string manipulation which needs to be pretty fast. The user interface is going to be written in C#. I am going to write the string handling...
2
by: Bob Rock | last post by:
Hello, in the last few days I've made my first few attempts at creating mixed C++ managed-unmanaged assemblies and looking afterwards with ILDASM at what is visible in those assemblies from a...
13
by: bonk | last post by:
Hello, I am trying to create a dll that internally uses managed types but exposes a plain unmanaged interface. All the managed stuff shall be "wrapped out of sight". So that I would be able to...
3
by: Pixel.to.life | last post by:
Hi, Gurus, I recently attempted to build a .Net forms application, that links with old style unmanaged C++ static libs. Of course I had to recompile the static lib projects to link properly...
2
by: Jon Slaughter | last post by:
How difficult is it for one to integrate unmanaged C++ into C#? I know for functions one can use DLLimport but how does one go about doing it for classes? Do I have to completely reimplement the...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.