473,385 Members | 1,548 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,385 software developers and data experts.

Small exe large application

Hi al,,
New to VB.net. What methods should I use in ordewr to create a small exe
application that can call other libraries.
I am in the process of creating a rather large application, I don't want to
end up, when I compile and build the application to have a exe 5.6mb big
Any help pointing me in the right direction

Thanks
Robert

Nov 21 '05 #1
8 1987
Almost everybody in this newsgroup is using VB6 or lower. While you may
get a stray answer to VB.NET (including VB2003 and VB2005 which has
dropped .NET from its name) questions here, you should ask them in
newsgroups devoted exclusively to .NET programming. Look for newsgroups
with either the word "dotnet" or "vsnet" in their name.

For the microsoft news server, try these newsgroups...

microsoft.public.dotnet.general
microsoft.public.dotnet.languages.vb
microsoft.public.vsnet.general

There are some others, but these should get you started.

Rick - MVP

"Robert Bravery" <me@u.com> wrote in message
news:Oi**************@tk2msftngp13.phx.gbl...
Hi al,,
New to VB.net. What methods should I use in ordewr to create a small exe application that can call other libraries.
I am in the process of creating a rather large application, I don't want to end up, when I compile and build the application to have a exe 5.6mb big Any help pointing me in the right direction

Thanks
Robert


Nov 21 '05 #2
What about DotFuscator, it comes with Visual Studio .NET.
You can find it in the Tools menu.

Have a nice day.

--
David Fúnez
Tegucigalpa, Honduras

"La Piratería Mata Las Ideas"
Desarrollador Cinco Estrellas Visual FoxPro
"Robert Bravery" <me@u.com> wrote in message
news:Oi**************@tk2msftngp13.phx.gbl...
Hi al,,
New to VB.net. What methods should I use in ordewr to create a small exe
application that can call other libraries.
I am in the process of creating a rather large application, I don't want to end up, when I compile and build the application to have a exe 5.6mb big
Any help pointing me in the right direction

Thanks
Robert

Nov 21 '05 #3
"Robert Bravery" <me@u.com> schrieb:
New to VB.net. What methods should I use in ordewr to create a small exe
application that can call other libraries.


Take a look at the class library project template. You can add class
library projects to your solution and reference these class libraries (DLLs)
from your executable project.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 21 '05 #4
Sorry... I missed the cross-post to this group (my comment was meant for
the microsoft.public.vb.general.discussion newsgroup.

Rick - MVP
"Rick Rothstein" <ri************@NOSPAMcomcast.net> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
Almost everybody in this newsgroup is using VB6 or lower. While you may get a stray answer to VB.NET (including VB2003 and VB2005 which has
dropped .NET from its name) questions here, you should ask them in
newsgroups devoted exclusively to .NET programming. Look for newsgroups with either the word "dotnet" or "vsnet" in their name.

For the microsoft news server, try these newsgroups...

microsoft.public.dotnet.general
microsoft.public.dotnet.languages.vb
microsoft.public.vsnet.general

There are some others, but these should get you started.

Rick - MVP

"Robert Bravery" <me@u.com> wrote in message
news:Oi**************@tk2msftngp13.phx.gbl...
Hi al,,
New to VB.net. What methods should I use in ordewr to create a small

exe
application that can call other libraries.
I am in the process of creating a rather large application, I don't

want to
end up, when I compile and build the application to have a exe 5.6mb

big
Any help pointing me in the right direction

Thanks
Robert


Nov 21 '05 #5
Wrong newsgroup - this is for VB4/5/6 (aka 'real vb', 'vb classic').

For the microsoft news server you can try one of these or some of the many
other similarly-named groups devoted exclusively to .net programming:

news://msnews.microsoft.com/microsof...dotnet.general
news://msnews.microsoft.com/microsof...t.languages.vb
news://msnews.microsoft.com/microsof....vsnet.general
news://msnews.microsoft.com/microsof...studio.general
news://msnews.microsoft.com/microsof....vstudio.setup
--
Randy Birch
MS MVP Visual Basic
http://vbnet.mvps.org/
"Robert Bravery" <me@u.com> wrote in message
news:Oi**************@tk2msftngp13.phx.gbl...
: Hi al,,
: New to VB.net. What methods should I use in ordewr to create a small exe
: application that can call other libraries.
: I am in the process of creating a rather large application, I don't want
to
: end up, when I compile and build the application to have a exe 5.6mb big
: Any help pointing me in the right direction
:
: Thanks
: Robert
:
:
:

Nov 21 '05 #6
Robert Bravery wrote:
Hi al,,
New to VB.net. What methods should I use in ordewr to create a small exe
application that can call other libraries.
I am in the process of creating a rather large application, I don't want to
end up, when I compile and build the application to have a exe 5.6mb big
Any help pointing me in the right direction

Thanks
Robert


Robert, if you are extremely concerned about executable size then you
really should consider using another development platform/language
(which is .NET?). If you are creating a "rather large application" then
5.6MB isn't very big at all.

I am like you in that I used to care about exe size and all that. I
don't anymore - especially since I started playing with .NET as it
produces rather large EXEs..

--
- Mitchell Vincent
- kBilling - An easy and affordable billing solution
- http://www.k-billing.com
Nov 21 '05 #7
HI Michael,

Does'nt the exe have to load completely in memory. That to me seems to be a
complete waste, what if a user doe'nt use a particular part of the app for
some reason, but on another occasion he might use that part but not another.
The whole app sitting in memory is then completley wasted, and defies OOP
and event driven programming.

I come from a development patform, which enables one to have a very small
loader exe, all other objects remain as outside objects, and are only loaded
when called. So if I have an accounting app, the bank recon form might only
get loaded when it is needed, and all the other forms or objects that are
not needed at that time are not loaded, preserving resources.
How can I apply this principle in VB.net/C#.net.
I am not worried about large EXE per se, but more about true OOP eand event
driven programming and only loading what you want to use as apposed to
everything at once.

Thanks
Robert

"Mitchell Vincent" <mi**************@gmail.com> wrote in message
news:O1**************@TK2MSFTNGP14.phx.gbl...
Robert Bravery wrote:
Hi al,,
New to VB.net. What methods should I use in ordewr to create a small exe
application that can call other libraries.
I am in the process of creating a rather large application, I don't want to end up, when I compile and build the application to have a exe 5.6mb big
Any help pointing me in the right direction

Thanks
Robert


Robert, if you are extremely concerned about executable size then you
really should consider using another development platform/language
(which is .NET?). If you are creating a "rather large application" then
5.6MB isn't very big at all.

I am like you in that I used to care about exe size and all that. I
don't anymore - especially since I started playing with .NET as it
produces rather large EXEs..

--
- Mitchell Vincent
- kBilling - An easy and affordable billing solution
- http://www.k-billing.com

Nov 21 '05 #8
> Does'nt the exe have to load completely in memory. That to me seems to be
a


No. Exe is mapped in VM but it isn't loaded as such. System decides
which part of it to load and which to leave on disk. BTW That is
one of reasons why you can't delete .exe while it is running...

--
Pozdrav,
Josip Medved, MCSD
http://www.jmedved.com
Nov 21 '05 #9

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

Similar topics

1
by: DrewM | last post by:
I'm still thinking about session variables :-) Does anyone know the detail of how session variables are actually stored? The question I'm trying to answer is: Is it more efficient to store and...
24
by: Salad | last post by:
Every now and then I see ads that state something like "Experience with Large Databases ...multi-gig...blah-de-blah" And I have to laugh. What's the difference between a large or small database? ...
0
by: Tony Lugg | last post by:
I have an application with a document management form. When users add documents to the form, I call the API function SHGetFileInfo to get the associated large and small icons for the file. These...
3
by: Tony Lugg | last post by:
I have an application with a document management form. When users add documents to the form, I call the API function SHGetFileInfo to get the associated large and small icons for the file. These...
2
by: Luc | last post by:
I saw a few posts on this newsgroup about it but nothing to help me resolve this problem: We designed a window in .NET on a platform using small fonts (120 ppp). But this window will run on...
1
by: Burt | last post by:
We (IT) frequently have one off requests for one off processes, pages, etc (load a file into a db, compare data from two tables, place a text file on a number of shares, etc). What we end up with...
4
by: =?Utf-8?B?VzFsZDBuZTc0?= | last post by:
When one architects a new project one of the first steps in the decision is to decide on the layers. (In my opinion anyway) One architecture that I have used before is to go solid OO and create...
1
oranoos3000
by: oranoos3000 | last post by:
hi I have a table with large height and inside of this large table i have only one table with small height in show small height table is shown in middle of space of large table and have...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...

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.