Search found 45 matches: screenwidth

Return to advanced search

Re: Coordenadas de pantalla

... de la pantalla GetSysmetrics(1) ---> para obtener el alto de la pantalla No siempre vas a obtener el mismo valor que con Sí existen y se llaman ScreenWidth() y ScreenHeight() Ya he tenido algún problemilla por mezclarlas en un mismo programilla
by cnavarro
Tue Jul 07, 2015 7:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Coordenadas de pantalla
Replies: 3
Views: 467

Re: Coordenadas de pantalla

Sí existen y se llaman ScreenWidth() y ScreenHeight()
by hmpaquito
Tue Jul 07, 2015 4:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Coordenadas de pantalla
Replies: 3
Views: 467

Show a Get-password with image-display ?

... center everything horizontal on screen, but the calculation doesn't work For the moment, I'm using fixed values needed for the calculation using ScreenWidth() : hDC := oDlg:GetDC() nWidth1 := GetTextWidth( hDC, "Bitte Zugangsdaten eingeben", oFont1 ) nWidth2 := GetTextWidth( hDC, "Benutzername-Name ...
by ukoenig
Mon Mar 02, 2015 11:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show a Get-password with image-display ?
Replies: 1
Views: 416

touch.prg

... You resolved the navigation in touch.prg with image. How can we reach the navigation by keyboard? Thanks in advance Otto DEFINE DIALOG oDlg SIZE ScreenWidth(), ScreenHeight() + 100 ; STYLE nOr( WS_CHILD, WS_POPUP ) ; COLOR CLR_BLUE, CLR_DIALOGS @ 20, 20 IMAGE oImgBack FILENAME "..\bitmaps\metro\back-black-48.png" ...
by Otto
Mon Nov 12, 2012 12:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: touch.prg
Replies: 0
Views: 466

Re: ¿ Serial del Board

... in oResolucion sMensaje += "Alto: " + cValToChar ( oDatos:ScreenHeight ) + " * " + ; "Ancho: " + cValToChar ( oDatos:ScreenWidth ) + CRLF NEXT * --------------------------- // -------------------------- * * --------------------------- // -------------------------- ...
by J. Ernesto
Tue Nov 06, 2012 7:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿ Serial del Board Solucionado
Replies: 7
Views: 3634

Re: ¿ Serial del Board

... in oResolu MsgInfo("Trabajando a Resolución de Alto: " + cValToChar(oDatos:ScreenHeight) + " y Ancho: " + cValToChar(oDatos:ScreenWidth),"Resolucion de Panralla") NEXT FOR Each oDatos In oSistem MsgInfo(oDatos:InstallDate,"Fecha de Instalación de Windows XP") ...
by russimicro
Wed Oct 31, 2012 11:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿ Serial del Board Solucionado
Replies: 7
Views: 3634

New FTDN March/Marzo 2012 (FWH 12.03)

... layout. We use this layout in samples\sciedit2.prg to avoid the use of a MDI frame but keep managing multiple editors. * New: functions ScreenWidth() and ScreenHeight() return the width and height of the main desktop in pixels. * Fix: Class TDatePick was not paiting properly on TRANSPARENT ...
by Antonio Linares
Fri Mar 30, 2012 11:09 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2012 (FWH 12.03)
Replies: 0
Views: 1153

TutorTabBar.prg

... yoyo(ownd) local oView1, oView2, oView3 local oView:=tView():resources(ownd,"tabbar") local oTab oView1 = TView():New( oView,0, 0, ScreenWidth(), ScreenHeight() - 69) oView1:SetBkgColor( 0, 255, 0, 255 ) oView2 = TView():New( oView, 0, 0, ScreenWidth(), ScreenHeight() - 69 ) oView2:SetBkgColor( ...
by pgfdz
Thu Jan 13, 2011 8:37 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: TutorTabBar.prg
Replies: 1
Views: 926

Re: Nuevo build de FiveMac disponible

... nRight Please keep in mind that nBottom is closer to the top of the screen. OSX uses 0, 0 in left, bottom position of the screen. * New: functions ScreenWidth() and ScreenHeight() returns the width and height of the entire desktop. * New: Class TWBrowse Methods SetIndicatorDescent(), SetIndicatorAscend(), ...
by Antonio Linares
Sat Jul 17, 2010 7:12 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Nuevo build de FiveMac disponible
Replies: 15
Views: 3667

Re: New FiveMac build available

... nRight Please keep in mind that nBottom is closer to the top of the screen. OSX uses 0, 0 in left, bottom position of the screen. * New: functions ScreenWidth() and ScreenHeight() returns the width and height of the entire desktop. * New: Class TWBrowse Methods SetIndicatorDescent(), SetIndicatorAscend(), ...
by Antonio Linares
Sat Jul 17, 2010 7:12 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: New FiveMac build available
Replies: 16
Views: 6831

Pregunta sobre el BRUSH

... para que me ocupe la imagen en toda la pantalla cuando utilizo el brush. Este es el codigo que tengo. DEFINE WINDOW oWnd FROM 0,0 TO ScreenHeight, ScreenWidth PIXEL MDI; TITLE "Sistema ; MENU BuildMenu( ); COLOR "W+/B" ICON oIco DEFINE BRUSH oBrush99 NAME "logo2" // STYLE ...
by ruben Dario
Mon Apr 20, 2009 9:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre el BRUSH
Replies: 2
Views: 483

Marco Augusto wrote:DEFINE WINDOW oWndX STYLE WS_POPUP FROM 0, 0 TO ScreenHeight, ScreenWidth PIXEL NOSYSMENU NOICONIZE
*
@ 0, 0 IMAGE oImage SIZE ScreenWidth,ScreenHeight OF oWNDX ADJUST
ACTIVATE WINDOW oWndX RETURN NIL

SALUDOS


Y si usara BRUSH como lo haria, tienes un ejemplo
by ruben Dario
Mon Jun 16, 2008 2:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como hago para que una imagen me ocupe toda la pantalla.
Replies: 2
Views: 671

DEFINE WINDOW oWndX STYLE WS_POPUP FROM 0, 0 TO ScreenHeight, ScreenWidth PIXEL NOSYSMENU NOICONIZE
*
@ 0, 0 IMAGE oImage SIZE ScreenWidth,ScreenHeight OF oWNDX ADJUST
ACTIVATE WINDOW oWndX RETURN NIL

SALUDOS
by Marco Augusto
Mon Jun 16, 2008 2:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como hago para que una imagen me ocupe toda la pantalla.
Replies: 2
Views: 671

Dúda: És posible esto en FIVEWIN ahora ó en el futuro??

Maestro Antonio, desculpe por el post, solo una dúda: És posible hacer esto en FIVEWIN, ahora ó en el futuro?? Gracias. ************************************************************************************ ************************************************************************************ ** ** ** V...
by karinha
Wed Jun 11, 2008 1:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dúda: És posible esto en FIVEWIN ahora ó en el futuro??
Replies: 2
Views: 2156

... so que nao recomendo pois irá // reiniciar oDevMode:nFields := nOr(DM_PELSWIDTH, DM_PELSHEIGHT /* , DM_BITSPERPEL */) oDevMode:nPelWidth := nX //ScreenWidth oDevMode:nPelHeight:= nY //ScreenHeight // Descomente esta linha para trocar as cores so que nao recomendo * oDevMode:nBitsPPel := 16 //(could ...
by horacio
Wed Feb 06, 2008 10:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CAMBIO RESOLUCION PANTALLA
Replies: 28
Views: 8701
Previous

Return to advanced search