FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Problem with xImage
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Problem with xImage
Posted: Wed Jan 30, 2019 08:50 PM
To show an Image on dialog I Use ximage
Code (fw): Select all Collapse
 
@ 80,20 XIMAGE oImageDlg[1] ;
             FILENAME IF(empty(oElemento:ELIMGLIB),cDefaImage,oElemento:ELIMGLIB);
             NOBORDER ;
             SIZE 40,40 ;
             OF oDlg ;
             UPDATE
    oImageDlg[1]:bRClicked  := NIL
    oImageDlg[1]:ltransparent:=.t.
    oImageDlg[1]:nUserControl :=0


although I have put these commands

oImageDlg[1]:bRClicked := NIL
oImageDlg[1]:ltransparent:=.t.
oImageDlg[1]:nUserControl :=0

I also see the menu pulldown I I click on right button of the mouse as you can see here



How should I do so the end user does not have this possibility? that is to display this menu?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: Problem with xImage
Posted: Thu Jan 31, 2019 04:48 AM

Please try
oImg:bRClicked := { ||nil}

Regards



G. N. Rao.

Hyderabad, India
Posts: 7317
Joined: Thu Oct 18, 2012 07:17 PM
Re: Problem with xImage
Posted: Thu Jan 31, 2019 08:28 AM

thnks

Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)

I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com

Continue the discussion