 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Stan Guest
|
Posted: Sat Apr 08, 2006 2:03 pm Post subject: Review JPEG Pictures |
|
|
D7
i have some JEPG picture(s) in C:\MyPictures
when i open my form ( image1) i want to see the first picture in
C:\Pictures
and i have Prior , Next buttons on the form
how can go Prior & Next pictures when i click the releted button.
Thank you |
|
| Back to top |
|
 |
Ronaldo Souza Guest
|
Posted: Sat Apr 08, 2006 2:03 pm Post subject: Re: Review JPEG Pictures |
|
|
Stan wrote:
| Quote: | i have some JEPG picture(s) in C:\MyPictures
when i open my form ( image1) i want to see the first picture in
C:\Pictures
and i have Prior , Next buttons on the form
how can go Prior & Next pictures when i click the releted button.
|
Before you show the first picture, scan the folder for JPEG file using
FindFirst, FindNext & FindClose (there's an example in the help). Fill a
TStringList with the file names, which can be alphabetically ordered or
not:
//First picture "|<"
Idx := 0;
load and display (MyStringList.Strings[Idx])
//"Next" picture ">"
Inc(Idx);
load and display (MyStringList.Strings[Idx])
//"Previous" picture "<"
Dec(Idx);
load and display (MyStringList.Strings[Idx])
//"Last" picture ">|"
Idx := MyStringList.Count-1;
load and display (MyStringList.Strings[Idx])
Good luck,
Ronaldo |
|
| Back to top |
|
 |
Solanovic Guest
|
Posted: Sun Apr 09, 2006 8:03 am Post subject: Re: Review JPEG Pictures |
|
|
Ronaldo,
Thank you very much. |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|