|
-
May 18th, 2000, 04:35 PM
#1
Thread Starter
Addicted Member
I have made a very tiny program (it puts the date in the clipboard) But when I compile it, icluding the runtime library then it's very, very big (more then 1 Mb).
Is there no other way to keep the program tiny ?
-
May 18th, 2000, 06:20 PM
#2
transcendental analytic
Compile it in vb1 or something
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
May 18th, 2000, 10:26 PM
#3
Fanatic Member
You're going to have to come to terms with the fact that VB can't static link and it's minimum run times are quite large.
Either get the runtimes to them in advance and pass people small exe's
Or use another language
Paul Dwyer 
Network Engineer
Aussie In Tokyo
Using Powerbasic 6 & VB6 SP4 (Please also add your VB Version to your signature!)
-
May 19th, 2000, 12:14 AM
#4
New Member
If you want a tiny program for distribution you'll
have to write and compile it in C++ or something
besides VB
-----------------------------------------------
I came into this world with nothing and I still have
most of it.
-
May 19th, 2000, 12:22 AM
#5
Make sure that you do not have any Project>References or Project>Components checked that you are not actually using.
-
May 19th, 2000, 05:02 AM
#6
This is similar to Kedaman's idea, but if you are distributing your Application via the Internet, you could have a seperate section for downloading the Runtime files. So if people already have the VB Runtime files, they don't have to download them.
-
May 19th, 2000, 10:58 AM
#7
Hyperactive Member
You could also write the program as an activeX and run it on the web, but this is tough because IE gives a security error. If the user turns his security settings to minimal then that will register the activeX so it's available on the web or desktop on an IE Page whenever. It's really compact but don't ask me to turn down my settings to view it! Also ActiveX can't be viewed on Netscape.
-
May 19th, 2000, 02:01 PM
#8
Conquistador
that's because netscape bites.
just send it to people with a batch file to copy it, instead of the other installation (package & deployment)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|