Gif Posted April 26, 2007 Posted April 26, 2007 How can I include a .bmp in my .exe without "carrying" the bmp with the executable.?
Toady Posted April 26, 2007 Posted April 26, 2007 (edited) How can I include a .bmp in my .exe without "carrying" the bmp with the executable.?What are trying to say? This makes no sense. Are you trying to embed a bmp inside your exe? Look at FileInstall() if thats whats your saying. Edited April 26, 2007 by Toady www.itoady.com A* (A-star) Searching Algorithm - A.I. Artificial Intelligence bot path finding
evilertoaster Posted April 26, 2007 Posted April 26, 2007 without doing a fileinstall()? ...humm well i guess you kinda can't... i supose you could write out manually during the running of the file using a bmp library. I wrote one a while ago that uses native autoit (http://www.autoitscript.com/forum/index.php?showtopic=27362)...but there's probably some facier stuff around now
Gif Posted April 26, 2007 Author Posted April 26, 2007 Sorry for my bad english i am a foreigner, and the answer is yes I want a picture that is vital for my program to be embeded in my executable. Is there any script for that?
Toady Posted April 26, 2007 Posted April 26, 2007 Sorry for my bad english i am a foreigner, and the answer is yes I want a picture that is vital for my program to be embeded in my executable.Is there any script for that?Then use FileInstall() www.itoady.com A* (A-star) Searching Algorithm - A.I. Artificial Intelligence bot path finding
evilertoaster Posted April 26, 2007 Posted April 26, 2007 (edited) FileInstall() does this... edit: jinx toady Edited April 26, 2007 by evilertoaster
anixon Posted April 26, 2007 Posted April 26, 2007 (edited) I use this code to display a banner when one of my scripts starts $banner = @ScriptDir & "\banners\admin.jpg" SplashImageOn("Splash Screen", $banner, 800, 600, -1, -1, 1) Sleep(5000) SplashOff() Cheers Ant Edited April 26, 2007 by anixon
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now