| View previous topic :: View next topic |
| Author |
Message |
Woody Valued Newbie

Joined: 10 Jul 2003 Posts: 29
|
Posted: Fri Mar 11, 2005 7:50 pm Post subject: GIF Support? DLL available? |
|
|
Hello Everyone,
Does anyone know of an external dll to allow the support of animated gif files in VDS 5?
Thanks, _________________ - Woody |
|
| Back to top |
|
 |
ShinobiSoft Professional Member


Joined: 06 Nov 2002 Posts: 790 Location: Knoxville, Tn
|
Posted: Fri Mar 11, 2005 7:54 pm Post subject: |
|
|
You could use the browser control to display the GIFs. I don't believe that
there are any extensions that can do this, however, I'm kinda familiar with
the layout of GIF files and development of a dll to do this shouldn't be too
hard. Lemme see what I can do.  _________________ Bill Weckel
ShinobiSoft Software
"The way is known to all, but not all know it." |
|
| Back to top |
|
 |
Woody Valued Newbie

Joined: 10 Jul 2003 Posts: 29
|
Posted: Fri Mar 11, 2005 8:11 pm Post subject: |
|
|
The only real issue with using the browser controls to display an animated gif is in doing so it then causes the layout to be rather messy. I would rather find a better solution. _________________ - Woody |
|
| Back to top |
|
 |
ShinobiSoft Professional Member


Joined: 06 Nov 2002 Posts: 790 Location: Knoxville, Tn
|
Posted: Fri Mar 11, 2005 9:50 pm Post subject: |
|
|
Sorry, it's gonna take a little more than I thought to write this dll.
Currently I have too many other projects going to start another one that
is this involved. I will, however, add this to my very long list of things to
do.  _________________ Bill Weckel
ShinobiSoft Software
"The way is known to all, but not all know it." |
|
| Back to top |
|
 |
Woody Valued Newbie

Joined: 10 Jul 2003 Posts: 29
|
Posted: Wed Mar 16, 2005 7:04 pm Post subject: Animated BMPs |
|
|
Hello Everyone,
I am posting the following code as an example of how you can obtain an animated BMP in you VDS application.
Thanks!
| Code: |
Title Animated BMP
DIALOG CREATE,Animated BMP,-1,0,240,160
DIALOG ADD,BITMAP,BITMAP1,27,64,95,95,1.bmp
DIALOG SHOW
%%bmpfile = 1
:Evloop
wait event,.8
dialog set,bitmap1,%%bmpfile.bmp
%%bmpfile = @succ(%%bmpfile)
if @greater(%%bmpfile,4)
%%bmpfile = 1
end
goto @event()
:TIMER
goto evloop
:Close
exit
|
_________________ - Woody |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Thu Mar 17, 2005 8:52 am Post subject: |
|
|
nice trick, woody
serge _________________
|
|
| Back to top |
|
 |
|