|
|
|
#1
|
||||
|
||||
|
shortage of examples, in botva and in many others there are a dozen examples with the library, so you do so, that many of us use your library so fast .. not think peterf1999
|
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
For sure, the use is not easy for inno's novice users.
|
|
#3
|
||||
|
||||
|
Quote:
|
|
#4
|
||||
|
||||
|
Quote:
![]() Quote:
which reads " The [Code] section is an optional section that specifies a Pascal script. A Pascal script can be used to customize Setup or Uninstall in many ways. Note that creating a Pascal script is not easy and requires experience with Inno Setup and knowledge about programming in Pascal or at least a similar programming language." The reason I'm saying there is no need for example is because simple types are always there to guide you on how to use a function, if you had a little bit of knowledge of pascal/delphi, you would know what I'm talking about and what makes peterf not make examples. |
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
RamiroCruzo (27-10-2015) | ||
|
#5
|
||||
|
||||
|
razor... I did before opening the dll to read
![]() peterf ...I found that it's a great project .. I noticed that the driver can not read DirectX .. what do you think of this option? Last edited by rinaldo; 28-10-2015 at 07:37. |
|
#6
|
||||
|
||||
|
Added the following procedure to dll:
|
| The Following 5 Users Say Thank You to peterf1999 For This Useful Post: | ||
altef_4 (08-01-2016), Grumpy (27-12-2015), JRD! (14-01-2016), Razor12911 (27-12-2015), y_thelastknight (30-12-2015) | ||
|
#7
|
||||
|
||||
|
I wouldn't be surprised if you start adding animations. Great job mate.
|
| The Following User Says Thank You to Razor12911 For This Useful Post: | ||
peterf1999 (08-01-2016) | ||
|
#8
|
||||
|
||||
|
Added the following procedure/function to dll:
|
| The Following 5 Users Say Thank You to peterf1999 For This Useful Post: | ||
altef_4 (08-01-2016), arkantos7 (10-01-2016), JRD! (14-01-2016), Logrim (08-01-2016), Razor12911 (08-01-2016) | ||
|
#9
|
||||
|
||||
|
too thirsty for CPU this library
__________________
if you understand read more |
|
#10
|
||||
|
||||
|
Added the following function to dll:
Code:
const LButtonUp = 1; LButtonDown = 2; MouseOver = 4; MouseOut = 8; type TBtnEvent= procedure(BtnIdx,EventID: integer); function CreateBtn(const FileName: PAnsiChar; Handle: HWND; X,Y,Height,Width: integer; callback: TBtnEvent): integer; |
| The Following 5 Users Say Thank You to peterf1999 For This Useful Post: | ||
altef_4 (14-01-2016), arkantos7 (14-01-2016), JRD! (14-01-2016), Logrim (14-01-2016), Razor12911 (16-01-2016) | ||
|
#11
|
||||
|
||||
|
Added the following procedures/functions to dll:
Code:
procedure SetBtnEnabled(BtnIdx: integer; Enabled: Boolean); external 'SetBtnEnabled@files:Isab.dll stdcall delayload'; function GetBtnEnabled(BtnIdx: integer): Boolean; external 'GetBtnEnabled@files:Isab.dll stdcall delayload'; procedure SetBtnVisibility(BtnIdx: integer; Visibility: Boolean); external 'SetBtnVisibility@files:Isab.dll stdcall delayload'; function GetBtnVisibility(BtnIdx: integer): Boolean; external 'GetBtnVisibility@files:Isab.dll stdcall delayload'; procedure SetBtnTransparency(BtnIdx: Integer; BtnTransparency: Byte); external 'SetBtnTransparency@files:Isab.dll stdcall delayload'; function GetBtnTransparency(BtnIdx: Integer): byte; external 'GetBtnTransparency@files:Isab.dll stdcall delayload'; |
| The Following 4 Users Say Thank You to peterf1999 For This Useful Post: | ||
|
#12
|
||||
|
||||
|
Thank you for library isab.dll.
It would be interesting if you could add multimedia playback based on DirectShow. Addicionar functions as in InnoMediaPlayer and ISMediaLib (By altef_4) in your Isab.dll library. |
| The Following User Says Thank You to Cesar82 For This Useful Post: | ||
peterf1999 (31-01-2016) | ||
|
#13
|
||||
|
||||
|
Changes: v0.0.8.6
Fixed an issue with WM_LBUTTONDOWN and WM_LBUTTONUP message handler. Now the buttons work properly. |
| The Following 6 Users Say Thank You to peterf1999 For This Useful Post: | ||
altef_4 (31-01-2016), arkantos7 (31-01-2016), Logrim (31-01-2016), RamiroCruzo (31-01-2016), Razor12911 (31-01-2016), y_thelastknight (07-04-2016) | ||
|
#14
|
||||
|
||||
|
Changes v0.0.8.7:
Fixed an issue with visibility (SetImgVisibility) of invalidated client area of rotated images. |
| The Following 7 Users Say Thank You to peterf1999 For This Useful Post: | ||
altef_4 (06-02-2016), arkantos7 (06-02-2016), Cesar82 (10-02-2016), Logrim (06-02-2016), Razor12911 (17-02-2016), TheRePacker (06-02-2016), y_thelastknight (07-04-2016) | ||
|
#15
|
||||
|
||||
|
I can't create more than one timer with CreateTimer function. Only last defined TTimerProc is executed with the smallest Timeout defined:
Code:
ButtonCB := CreateTimer(10, @ButtonAction; EqualizerCB := CreateTimer(100, @EqualizerAction); |
| The Following User Says Thank You to BAMsE For This Useful Post: | ||
peterf1999 (24-03-2016) | ||
![]() |
|
|
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 Setup: Additional Libraries | altef_4 | Conversion Tutorials | 50 | 21-10-2020 09:59 |
| INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |
| Tutorial using CI 8.0.0 | yener90 | Conversion Tutorials | 424 | 21-10-2014 09:49 |