Search found 266 matches: resizing

Return to advanced search

Re: Transparent area becomes black when use BUTTON...ADJUST

... 110,66 1) Remove "3D" clause. This is creating problem of transparency. If you remove this clause, the images will be transparent. But resizing makes the image ragged. 2) Add "GDIP" clause. This makes the resized image smooth. Recommended code:  DEFINE BUTTONBAR oBar OF oWnd ...
by nageswaragunupudi
Wed Dec 06, 2023 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Transparent area becomes black when use BUTTON...ADJUST
Replies: 8
Views: 792

Re: Bugs in TButtonBmp

... Actually skinbuttons replaces the paint method of the button. While the paint method of buttons is greatly enhanced ( any kind of images, auto-resizing of images and also new styles of alignments) the skinbuttons paint method still handles the oldest painting logic. Till we totally *re-write* ...
by richard-service
Thu May 04, 2023 5:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bugs in TButtonBmp
Replies: 13
Views: 1624

Re: SPLITTER : how to"resize" Client Area

I don't know if I have understood correctly what you need
Jimmy, is this what you need? The resizing of the controls contained on both sides of the splitter ?
Image
by cnavarro
Thu Nov 03, 2022 7:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SPLITTER : how to"resize" Client Area
Replies: 17
Views: 967

Re: get hBitmap from Image

FW_ReadImage( ; [oWnd / hDC ] ; //or NIL uImage, ; [aSize], ; // { w, h } for resizing [lGDIP] ) // Use GDI+ or not. Default .F. --> aImage. uImage: Can be any file name, resource name, image buffer, hBitmap, hIcon, aShape Array, Image URL on the Web, Symbol ...
by nageswaragunupudi
Thu Oct 20, 2022 4:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: get hBitmap from Image
Replies: 14
Views: 704

Re: Display thumbnails of pdfs

... In all other cases, we have to go through the tedious process of displaying the file on the screen, take the screenshot and save it, after resizing if required. c:\fwh\samples\xblstgrd.prg c:\fwh\samples\listvie.prg listvie.prg uses ListView but not xblstgrd.prg. This program uses XBrowse ...
by nageswaragunupudi
Sun Oct 16, 2022 8:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2217

Re: Draw a bitmap

... be done ? No need for any such complex program. No need to resize first and then draw the image. Method DrawImage(...) itself provides different resizing options. Syntax: DrawImage( uImage, [aRect], [lTransp], [nResizeMode], [nAlphaLevel], [lGray], ...
by nageswaragunupudi
Thu Oct 06, 2022 5:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw a bitmap
Replies: 6
Views: 432

Re: Resizing the window

Yes, the WS_THICKFRAME style is suitable, only the frame turns out to be wide and not beautiful :(
by Natter
Wed Jun 15, 2022 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resizing the window
Replies: 6
Views: 481

Re: Resizing the window

Code: Select all  Expand view
  DEFINE WINDOW oWnd STYLE WS_THICKFRAME FROM 0,0 TO 400,600 PIXEL
   oWnd:bRClicked := { || oWnd:End() }
   ACTIVATE WINDOW oWnd CENTERED
 
by nageswaragunupudi
Wed Jun 15, 2022 8:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resizing the window
Replies: 6
Views: 481

Re: Resizing the window

Is it possible to make a TWindow without caption and sysmenu (WS_POPUP) and a frame so that it can be stretched with the mouse ?
by Natter
Tue Jun 14, 2022 8:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resizing the window
Replies: 6
Views: 481

Re: edit a cell of a xbrowse

But I can resize the rows and columns...why ? oBrw:lAllowRowSizing := .f. // prevent row sizing oCol:lAllowSizing := .f. // prevent col resizing of a particular column oBrw:lAllowSizings := .f. // prent resizing of all columns. (2) when I enter a number by moving between the cells with the ...
by Silvio.Falconi
Sun Jun 12, 2022 12:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: edit a cell of a xbrowse
Replies: 12
Views: 694

Re: edit a cell of a xbrowse

But I can resize the rows and columns...why ? oBrw:lAllowRowSizing := .f. // prevent row sizing oCol:lAllowSizing := .f. // prevent col resizing of a particular column oBrw:lAllowSizings := .f. // prent resizing of all columns. (2) when I enter a number by moving between the cells with the ...
by Silvio.Falconi
Sun Jun 12, 2022 12:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: edit a cell of a xbrowse
Replies: 12
Views: 694

Re: Resizing the window

Thanks !
by Natter
Sun Jun 12, 2022 6:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resizing the window
Replies: 6
Views: 481

Re: Resizing the window

Please also try: #include "fivewin.ch"function Main()   local oWnd   DEFINE WINDOW oWnd NOZOOM NOMINIMIZE FROM 0,0 TO 400,600 PIXEL   oWnd:aMinMaxInfo := { nil, nil, nil, nil, 600, 400, 600, 400 }   ACTIVATE WINDOW oWnd CENTEREDretu...
by nageswaragunupudi
Sun Jun 12, 2022 4:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resizing the window
Replies: 6
Views: 481

Re: edit a cell of a xbrowse

But I can resize the rows and columns...why ? oBrw:lAllowRowSizing := .f. // prevent row sizing oCol:lAllowSizing := .f. // prevent col resizing of a particular column oBrw:lAllowSizings := .f. // prent resizing of all columns. (2) when I enter a number by moving between the cells with the ...
by nageswaragunupudi
Sun Jun 12, 2022 1:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: edit a cell of a xbrowse
Replies: 12
Views: 694

Re: Resizing the window

#include "Fivewin.ch"static  nW, nHfunction Main()local oWndDEFINE WINDOW oWnd TITLE "No resize" ;          NOZOOM FROM 05,05 TO 20,60nW := oWnd:nWidth nH := oWnd:nHeightoWnd:bResized := { || NoResize(oWnd) }ACTIVATE WINDOW...
by cmsoft
Sun Jun 12, 2022 1:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resizing the window
Replies: 6
Views: 481
Next

Return to advanced search