|
#1021
|
||||
|
||||
|
just open your image.png in paint and press "save as", then choose bmp and set it to monochrome.
|
| Sponsored Links |
|
#1022
|
||||
|
||||
|
Quote:
|
|
#1023
|
||||
|
||||
|
Quote:
|
|
#1024
|
||||
|
||||
|
Quote:
|
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
Logrim (08-03-2014) | ||
|
#1025
|
|||
|
|||
|
I see all files processed by ISDone as well and i know that it extracts only what i specified but it takes a long time to extract one folder of a big archive like if it's extracting all the files.
Last edited by danswano; 08-03-2014 at 04:04. |
|
#1026
|
|||
|
|||
|
Thanks, razor and altef, work perfectly now,, the problem was the sizes.
Was extrange,, i'm graphic designer and this never happend to me in my work. :P.. I thought the mask in inno were being made differently. I'm trying to make a general installer for all my conversions, and i think I have already achieved. Minimalist and yet easy to locate. Last edited by Logrim; 08-03-2014 at 04:36. |
|
#1027
|
|||
|
|||
|
i have a problem... before i setting the example of the mask of Altef, all work perfectly when unninstall.. Now, inno give me an error "cannot call "EXTRACTEMPORALYFILESIZE", funtion during uninstall. I never touch nothing in the unninstall section,, only add the mask functions and procedures..
|
|
#1028
|
||||
|
||||
|
Quote:
|
|
#1029
|
|||
|
|||
|
i understand you altef
thwe problem is i think i have all in unninstall correctly, but dont work.. this is my uninnstall:Quote:
Quote:
Last edited by Logrim; 10-03-2014 at 12:25. |
|
#1030
|
||||
|
||||
|
Quote:
Code:
function ImgLoadU(Wnd :HWND; FileName :PAnsiChar; Left, Top, Width, Height :integer; Stretch, IsBkg :boolean) :Longint; external 'ImgLoad@{tmp}\botva2.dll stdcall delayload';
procedure ImgApplyChangesU(h:HWND); external 'ImgApplyChanges@{tmp}\botva2.dll stdcall delayload';
procedure gdipShutdownU; external 'gdipShutdown@{tmp}\botva2.dll stdcall delayload';
and remove b2p.dll(it's not work in uninstaller), correct this Code:
FileCopy(ExpandConstant('{app}\CallbackCtrl.dll'), ExpandConstant('{tmp}\CallbackCtrl.dll'), True);
add to DeInitializeUninstall - gdipShutdownU; try it, it's must work. |
|
#1031
|
|||
|
|||
|
Thanks man, work perfectly now
.. sorry for my questions, when i think the code is finish i discover something new...
Last edited by Logrim; 11-03-2014 at 01:43. Reason: double posting |
|
#1032
|
|||
|
|||
|
One silly question.. why the image load before the rest of the things?. i mean.. the main background load.., the rest of the component load AFTER, and during two seconds the main screen is empty..
and.. how can i add a custom progress bar and a custom edit? i dont want to usee isskin.. thanks |
|
#1033
|
||||
|
||||
|
Quote:
to create custom progress bar just load two images one on another, and change width|visible part of top image. to create custom edit create img like edit and TLabel inside of this image. |
| The Following User Says Thank You to altef_4 For This Useful Post: | ||
Logrim (11-03-2014) | ||
|
#1034
|
|||
|
|||
|
altef i only have one ImgApplyChanges for wizardform,, only this at the start of "procedure InitializeWizard":
Quote:
|
|
#1035
|
||||
|
||||
|
Quote:
Quote:
e.g. standart progress=10% of maximum 100% then width of your img will be progress:=CurProgress(10%)*100/MaxProgress(100%); imgWidth=FullWidthOfImg(you set it when create img)*progress/100; |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |