mirror of
https://github.com/FellippeHeitor/InForm.git
synced 2025-01-14 11:39:33 +00:00
Fix typos
This commit is contained in:
parent
b5bb8a6f5c
commit
ce2d98fb3e
1 changed files with 5 additions and 5 deletions
|
@ -1,17 +1,17 @@
|
|||
# Animated GIF Decoder
|
||||
|
||||
`By Zom-B` ([QB64-PE Wiki](https://qb64phoenix.com/qb64wiki/index.php/GIF_Images))
|
||||
***By Zom-B*** ([QB64-PE Wiki](https://qb64phoenix.com/qb64wiki/index.php/GIF_Images))
|
||||
|
||||
`Adapted for use with InForm's PictureBox controls by @FellippeHeitor`
|
||||
*Adapted for use with InForm's PictureBox controls by @FellippeHeitor*
|
||||
|
||||
`Refactored and enhanced by a740g to use include guards, conditional compiles and cleaner API`
|
||||
*Refactored and enhanced by a740g to use include guards, conditional compiles and cleaner API*
|
||||
|
||||
## Usage instructions
|
||||
|
||||
Your form must contain a PictureBox control that'll serve as a container for
|
||||
the GIF file you'll load with this library.
|
||||
|
||||
In the *External modules* section of the .bas file generated by InForm,
|
||||
In the **External modules section** of the .bas file generated by InForm,
|
||||
`$INCLUDE` both `GIFPlay.bi` and `GIFPlay.bas`. The first must come before the
|
||||
line that includes `InForm.ui` and the second must come after that, as in
|
||||
the sample below:
|
||||
|
@ -67,7 +67,7 @@ Closes the GIF file loaded in the specified PictureBox control and frees the mem
|
|||
FUNCTION GIF_GetGeight~% (ID AS LONG)
|
||||
```
|
||||
|
||||
Returns the height of the GIF in pixes.
|
||||
Returns the height of the GIF in pixels.
|
||||
|
||||
```vb
|
||||
FUNCTION GIF_GetWidth~% (ID AS LONG)
|
||||
|
|
Loading…
Reference in a new issue