Search found 27 matches: talbum

Return to advanced search

Re: CLASS TGrid() for FiveWin

Thank you very much Rao :D There is a lookalike TAlbum class of FiveWin in the sample \fwh\samples\album.prg. Yes, it was not in fwh1903. This was created sometime later at the request of some users. You may be able to find it in the forums. We can ...
by hua
Wed Oct 26, 2022 1:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS TGrid() for FiveWin
Replies: 43
Views: 3519

Re: CLASS TGrid() for FiveWin

Can't seem to find album.prg in FWH19.12 There is a lookalike TAlbum class of FiveWin in the sample \fwh\samples\album.prg. Yes, it was not in fwh1903. This was created sometime later at the request of some users. You may be able to find it in the forums. ...
by nageswaragunupudi
Tue Oct 25, 2022 5:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS TGrid() for FiveWin
Replies: 43
Views: 3519

Re: CLASS TGrid() for FiveWin

Can't seem to find album.prg in FWH19.12

nageswaragunupudi wrote:There is a lookalike TAlbum class of FiveWin in the sample \fwh\samples\album.prg.
by hua
Tue Oct 25, 2022 2:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS TGrid() for FiveWin
Replies: 43
Views: 3519

Re: CLASS TGrid() for FiveWin

hi, There is a lookalike TAlbum class of FiveWin in the sample \fwh\samples\album.prg. WOW impressive :D ... Imagelist() is "limited" to 256 x 256 and normal used for Icon but you "can" use it to load own Image and ...
by Jimmy
Fri Oct 21, 2022 6:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS TGrid() for FiveWin
Replies: 43
Views: 3519

Re: CLASS TGrid() for FiveWin

There is a lookalike TAlbum class of FiveWin in the sample \fwh\samples\album.prg. This TAlbum class was not included in the main FWH library as it was not considered so important, but any user can take it from the samples folder and ...
by nageswaragunupudi
Thu Oct 20, 2022 3:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS TGrid() for FiveWin
Replies: 43
Views: 3519

Re: Embed any application

ActiveX is the way unless you just want to show a picture of the document

Otto did some nice work about that (to show pictures of docs) and Mr. Rao developed Class TAlbum
by Antonio Linares
Mon Nov 01, 2021 7:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Embed any application
Replies: 1
Views: 375

Re: Talbum class also possible for pdf's

We can show many images on a single screen, but not many pdfs.
You may consider using any utility to convert pdf to jpg and use them as thumb-nails.
by nageswaragunupudi
Wed Oct 27, 2021 9:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Talbum class also possible for pdf's
Replies: 1
Views: 279

Talbum class also possible for pdf's

There is a Talbum class that will be included in a next update. (post - Gallerie)

I wonder is pdf's can be seen also with that class ?
I tried by simply changing to ".pdf" but that would to to easy, and didn't work )))

It would be nice for showing pdf info on a customer datapage...
by Marc Venken
Wed Oct 27, 2021 7:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Talbum class also possible for pdf's
Replies: 1
Views: 279

Re: Link to gallery sample in forum

Dear Marc,

We are going to include Class TAlbum into FWH

Thanks for the reminder :-)
by Antonio Linares
Thu Oct 21, 2021 5:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Link to gallery sample in forum
Replies: 8
Views: 1222

Re: galería de imágenes

... Error: Unresolved external '_HB_FUN_LIFORM' referenced from C:\FWH\MODELISMO\OBJ\MIRADOR.OBJ faltara algo :?: a si se ve con el código TAlbum en mi programita https://fotos.subefotos.com/0e5895e6f07d30ce6c2450588ac224a5o.jpg Saluditos :wink:
by AIDA
Thu Feb 11, 2021 2:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: galería de imágenes
Replies: 52
Views: 17060

Re: galería de imágenes

Thanks Enrico. I need that TAlbum class inherits from TControl because I need to put it in a dialog. It's very difficult for me to control the application flow with 2 windows, so I need to create a dialog and inside it the talbum class. ...
by José Luis Sánchez
Sat Jan 23, 2021 8:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: galería de imágenes
Replies: 52
Views: 17060

Re: galería de imágenes

Thanks Enrico. I need that TAlbum class inherits from TControl because I need to put it in a dialog. It's very difficult for me to control the application flow with 2 windows, so I need to create a dialog and inside it the talbum class. ...
by nageswaragunupudi
Fri Jan 22, 2021 5:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: galería de imágenes
Replies: 52
Views: 17060

Re: galería de imágenes

Thanks Enrico. I need that TAlbum class inherits from TControl because I need to put it in a dialog. It's very difficult for me to control the application flow with 2 windows, so I need to create a dialog and inside it the talbum class. ...
by José Luis Sánchez
Fri Jan 22, 2021 5:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: galería de imágenes
Replies: 52
Views: 17060

Re: galería de imágenes

Code: Select all  Expand view
ON INIT ::oWnd:Center( oApp():oWndMain )


You are using oWnd property of TWindow not of TAlbum. Assign

Code: Select all  Expand view
oAlbum = Self


at the start of the method and then use

Code: Select all  Expand view
ON INIT oAlbum:oWnd:Center( oApp():oWndMain )


EMG
by Enrico Maria Giordano
Tue Jan 19, 2021 8:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: galería de imágenes
Replies: 52
Views: 17060

Re: galería de imágenes

Sorry, I tried and gives me error with oAlbum := TAlbum():New( aImages, aLabels, aRecno ):Activate() and also with: oAlbum := TAlbum():New( aImages, aLabels, aRecno ) oAlbum:Activate() Here is my TAlbum class. I modified to show a label and I'm trying ...
by José Luis Sánchez
Tue Jan 19, 2021 7:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: galería de imágenes
Replies: 52
Views: 17060
Next

Return to advanced search