linker?

  • Thread starter Thread starter Alcibiade
  • Start date Start date
A

Alcibiade

Hi, I'd like to have my exe running without framework.
I've seen postbuild xenocode but it 's not for me...
Is there a way to have a self-executing exe without framework and
having small filesize?
Thanks for your attention
 
Alcibiade said:
Hi, I'd like to have my exe running without framework.
I've seen postbuild xenocode but it 's not for me...
Is there a way to have a self-executing exe without framework and
having small filesize?

No. Used VC++ without making use of managed extensions for this purpose.
But maybe you need some VC runtimes.


Armin
 
Hi, I'd like to have my exe running without framework.
I've seen postbuild xenocode but it 's not for me...
Is there a way to have a self-executing exe without framework and
having small filesize?

Nope.
 
Hi, I'd like to have my exe running without framework.
I've seen postbuild xenocode but it 's not for me...
Is there a way to have a self-executing exe without framework and
having small filesize?
Thanks for your attention

If your program is programmed in VB with .NET, one chance would be
downgrading and compiling your project in VB6 and if you succeed
converting your project to VB6, you won't need .NET framework any
longer for your application.
 
If your program is programmed in VB with .NET, one chance would be
downgrading and compiling your project in VB6 and if you succeed
converting your project to VB6, you won't need .NET framework any
longer for your application.

The changes between .NET and VB6 are so radically that you might as well
rewrite the application in VB6.
 
Alcibiade,

There are options, but that means that you have to buy runtimes, that is not
free while the effect will be the same (or better said "worse").

Be aware that if there was no framework, the Exes would be probably than 10
times larger, as they are in Net normally extremely small as we compare that
with all kind of others Exe's from the past.

Cor
 
Back
Top