vb,net

  • Thread starter Thread starter tommy
  • Start date Start date
T

tommy

i need to read the vb.net executable file from the pc that
without the vb.net software....

how can i do that ?

is that using the runtime ?

please reply me as soon as possible..
10s
 
Tommy,

You need the Net framework, that can be 1.0 or 1.1 depending on your exe.

Maybe you needs also some dependables as for webbrowsing by instance
shdocvw.dll.
The best for the last is making a setup project, than all is bundled in a
msi file, with that you can deploy to your user computer.

A VB.net exe is in intermidiate language IL.

The .Net framework is the runtimmer as you wrote it for that.

I hope it helps a little bit.

Cor
i need to read the vb.net executable file from the pc that
without the vb.net software....
how can i do that ?
is that using the runtime ?
please reply me as soon as possible..
s
 
* "tommy said:
i need to read the vb.net executable file from the pc that
without the vb.net software....

how can i do that ?

is that using the runtime ?

You will have to install the .NET Framework, for example in a setup:

Framework 1.0:

..NET Framework Deployment Guide
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid.asp>

Using Visual Studio .NET to Redistribute the .NET Framework
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy.asp>

Framework 1.1:

Redistributing the .NET Framework 1.1
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/redistdeploy1_1.asp>

..NET Framework 1.1 Deployment Guide
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid1_1.asp>

..NET Framework 1.1 Redistributable Prerequisites
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/NETFx1Redistreq1_1.asp>

..NET Framework Redistributable Package 1.1 Technical Reference
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetfxref1_1.asp>

Using Visual Studio .NET 2003 to Redistribute the .NET Framework
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy1_1.asp>

Visual Studio .NET Framework Bootstrapper Plug-in
<http://workspaces.gotdotnet.com/vsboot>
 
Back
Top