Search found 22 matches: odlg5

Return to advanced search

Re: Boton en BtnGet

... nuevamente, pongo un ejemplo de la situacion: Function Menu() local oDlg1, oLbx1, oGet2, oGet3 SET 3DLOOK ON // Microsoft 3D Look DEFINE DIALOG oDlg5 FROM 13,15 TO 38,76 ; TITLE "Control de Tickets " ; nTicket:=0 Libre:=.t. @ 0.25, 19.5 TBTNGET oGet2 VAR nTicket OF oDlg1 ; SIZE 50, ...
by servicomver
Fri Jul 05, 2019 8:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Boton en BtnGet
Replies: 10
Views: 1398

Re: Boton en BtnGet

Gracias, una duda mas: @ 1.35, 4 TBTNGET oGet2 VAR nTicket OF oDlg5 ; SIZE 45, 12 RIGHT ; RESOURCE "Prop" ; PICTURE "9999999"; ACTION Cliente1(oLbx,oGet2,oGet3,oGet4); VALID (Cliente2(@nTicket,oGet2,oGet3,oGet4,oDlg5),Libre) FONT fntArial ...
by servicomver
Thu Jul 04, 2019 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Boton en BtnGet
Replies: 10
Views: 1398

Re: Dynamically create buttons

... define the colors from any function and use oBtn[1]:Refresh() BITMAP shows the selected color nBColorF1 : REDEFINE BITMAP oBMP[1] FILENAME NIL OF oDlg5 ; ID 110 PIXEL ADJUST BORDER oBMP[1]:cTooltip := "1. Color" oBMP[1]:bPainted := { |hDC| BMP_COLOR( oBmp[1], hDC, nBColorF1 ) } REDEFINE ...
by ukoenig
Wed Mar 11, 2015 12:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dynamically create buttons
Replies: 1
Views: 551

Re: Displaying an image with xbrowse ( uwe )

... 4. WinSCP.ger => German-language-file Connecting to the Homepage using a SCRIPT ( Log-file Log.txt created ) : @ 70, 20 BTNBMP oBtn2 OF oDlg5 ; SIZE 120, 40 PIXEL ; PROMPT " &Connect to Internet" FILE c_path + "\Bitmaps\Internet.bmp" 2007 ; FONT oTxtfont LEFT ...
by ukoenig
Thu Jun 02, 2011 2:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Displaying an image with xbrowse ( uwe )
Replies: 11
Views: 3108

Re: BRW gpf when importing an alpha chanel ( uwe )

... ( Workshop ). Converted from 32 to 24 Bit ( no Alpha-chanel ) with Pixelformer and included in RC-file : REDEFINE BUTTONBMP oBtn50 ID 30 OF oDlg5 ; ACTION ( oDlg5:End() ) ; BITMAP "Alert" PROMPT " Exit" TEXTRIGHT oBtn50:cToolTip = { "Close" + CRLF + ; "the ...
by ukoenig
Tue May 17, 2011 5:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: BRW gpf when importing an alpha chanel ( uwe )
Replies: 6
Views: 2374

Re: Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?

... #include "fivewin.ch" function main DEFINE DIALOG oDlg5 FROM 10,10 to 300,500 TITLE "TEST" PIXEL @ 110, 190 BTNBMP oBtn5 size 50, 30 of oDlg5 2007 pixel action test1(odlg5,obtn5) activate ...
by WilliamAdami
Mon Aug 09, 2010 9:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?
Replies: 17
Views: 5602

Re: Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?

... x 600 i used for the Exit-Button : @260, 150 SBUTTON oBtn2 FONT oFont1 ; SIZE 50, 25 PIXELS ; FILENAME c_path + "\SYSTEM\Exit.bmp" ; OF oDlg5 PROMPT "&Exit" ACTION oDlg5:End() I could define from Top / Left like : @50, 50 SBUTTON ... and I will have the Button allways on ...
by ukoenig
Mon Aug 09, 2010 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?
Replies: 17
Views: 5602

Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?

... / show the Button allways on the same Position on different Dialogsizes ??? // Defined Dialog-Position / Size := 50, 50 TO 700, 600 DEFINE DIALOG oDlg5 FROM nDlgTop, nDlgLeft TO nDlgWidth, nDlgHeight TITLE "Background-Tests" ICON oIco PIXEL // Button-Position not related to Dialogsize ...
by ukoenig
Sat Aug 07, 2010 11:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible to calc. Right/Bottom Btn-Pos on diff. Dlg-Sizes ?
Replies: 17
Views: 5602

Re: Is there a way to set oSays to transparent universally?

... oSAY1:lTransparent := .T. is not needed for Transparent-painting. Just define the DIALOG transparent, it will make it easy for You. DEFINE DIALOG oDlg5 RESOURCE "TXTTEST2" TITLE "Text-Test" ; FONT oProgFont TRANSPARENT REDEFINE SAY oSAY1 VAR cText1 ID 110 OF oDlg5 COLOR T_COLOR ...
by ukoenig
Tue Sep 08, 2009 11:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is there a way to set oSays to transparent universally?
Replies: 16
Views: 2126

Re: Gradient-Tool Version 2.0 (FWH 9.08) UPDATE-DOWNLD.

... better now. Download ( 2.0b ) : http://www.pflegeplus.com/fw_downloads/GrdTool1.zip I noticed, a normal : REDEFINE SAY oSAY1 VAR cText1 ID 110 OF oDlg5 COLOR T_COLOR, T_COLOR2 FONT oTextFont doesn't work with Dialog TRANSPARENT In case You still find something, just let me now. Also if You still ...
by ukoenig
Sun Sep 06, 2009 10:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Gradient-Tool Version 2.0 (FWH 9.08) UPDATE-DOWNLD.
Replies: 15
Views: 3963

Re: xBrowse Gradient-Background

... ON INIT . Loading a Image from inside the Dialog, it is OK. ------------------------------------ DBSELECTAREA(2) REDEFINE XBROWSE oBrw ID 110 OF oDlg5 AUTOCOLS ALIAS "Customer" Doesn't work at Start !!! ( only from inside the Dialog ). The Image is shown Tiled. ----------------------------------------------------------------- ...
by ukoenig
Sun Jul 26, 2009 3:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Gradient-Background
Replies: 8
Views: 1432

Re: How to resize a bitmap ?

... ??? http://www.pflegeplus.com/pictures/test6.jpg //--------- IMAGE - BRUSH ------------------------ STATIC FUNCTION DB_IMAGE( oDlg5, hDC, cFile ) LOCAL oBrush, oImg1 // cFile = Image-JPG-Background DEFINE BRUSH oBrush FILE cFile SET BRUSH OF oDlg5 TO oBrush RELEASE BRUSH oBrush ...
by ukoenig
Tue Jul 14, 2009 8:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to resize a bitmap ?
Replies: 8
Views: 1752

Question about FOLDERS (Brushes) and DLG Transparent

... the Folder-Part for testing. The Gradient and Image-Display in combination with Alpha-BMP's works perfect ( Test 6 and 10 ). Because of the oDLG5 with TRANSPARENT : < oFld:aDialogs[1]:SetBrush( oBrush1 ) > doesn't work. If I delete TRANSPARENT, it is OK. DEFINE DIALOG oDlg5 RESOURCE ...
by ukoenig
Fri Jan 16, 2009 12:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about FOLDERS (Brushes) and DLG Transparent
Replies: 2
Views: 585

New Resize-Functions

... I would like to save the resized image to disk. Somebody knows a good solution for this ? I tested : hDC := GetDC( oImage:hWnd ) oDlg5:SaveToBmp( "Resized.bmp" ) ReleaseDC( oImage:hWnd, hDC ) but it didn't work. Could it be maybe possible, to use functions from the < freeimage.dll ...
by ukoenig
Thu Nov 13, 2008 9:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New release Image-Viewer for FWH (new functions preview)
Replies: 4
Views: 3612

A question about FWH-Release-Versions for function-use

... September 2007 build > ( outlook 2003 ) --------------------------------------------------------------------------- aRect := GETCLIENTRECT( oDlg5:hWnd ) Gradient( hDC, { aRect[1], aRect[2], aRect[3], aRect[4] }, ; COLOR1, COLOR2, .F. ) I think, this started with FWH 8.08 ( new Buttonbar ...
by ukoenig
Mon Nov 10, 2008 1:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A question about FWH-Release-Versions for function-use
Replies: 5
Views: 1198
Next

Return to advanced search