Search found 1502 matches

by mastintin
Tue May 29, 2018 9:31 pm
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: screenheight
Replies: 1
Views: 1367

Re: screenheight

Yes is posible ... I'm going to implement this functions : SCREENVISIBLEWIDTH -> width screen ( no dock include if possition is left .or. right ) SCREENVISIBLEHEIGHT -> Height position ( no include statusbar and dock , if is bottom ) STATUSBARHEIGHT -> Height statusbar GETDOCKPOSITION -> Return &quo...
by mastintin
Tue May 29, 2018 7:04 pm
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: enable and disable a button with image
Replies: 2
Views: 1626

Re: enable and disable a button with image

Ok. I implement enable() and disable methods in btnbmp .
:D
Saludos.
by mastintin
Tue May 15, 2018 7:48 am
Forum: FiveWin para Harbour/xHarbour
Topic: ShellExecute no abre en una window
Replies: 25
Views: 3239

Re: ShellExecute no abre en una window

Mira con este código , es para harbour .... Function CreaOleExplorer( cUrl , nAXWidth , nAXHeight )    local oIE    local nBorde := 8    local nBarra := 23    DEFAULT cUrl := "https://mail.google.com/mail/u/0/#inbox"    DEFAULT nAXWidth := 410    DEFAULT nAXHeight := 280   IF ( oIE := win_...
by mastintin
Thu May 10, 2018 2:17 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ShellExecute no abre en una window
Replies: 25
Views: 3239

Re: ShellExecute no abre en una window

karinha ..   ....     oActiveX = TActiveX():New( oWnd, "Shell.Explorer" )  ....   Sigue usando el viejo activex de ie9.. He investigado un poco y para solucionarlo , microsofrt ha sacado el control webview pero solo vale a paretir de win10 versión 1803 https://mspoweruser.com/microsoft-ann...
by mastintin
Thu May 10, 2018 7:30 am
Forum: FiveWin para Harbour/xHarbour
Topic: ShellExecute no abre en una window
Replies: 25
Views: 3239

Re: ShellExecute no abre en una window

Seguiré este post con interes. Sería interesante disponer de una clase "navegador" que use un motor que no sea el iexplorer por dos motivos. 1.- El activex de iexplorer es Muy viejo y ya no ejecuta el javascript mas moderno ademas de estar descontinuado desde hace ya muchos años. Si querei...
by mastintin
Thu Apr 12, 2018 9:11 pm
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Menu with several windows
Replies: 6
Views: 2718

Re: Menu with several windows

I have reviewed the code of the menu class and made some changes so that you can switch between the menus you want only by activating them. The Menus on Mac belong to the application and not to the windows, so it is up to the programmer to exchange them as needed. You can also include images in them...
by mastintin
Tue Apr 10, 2018 2:05 pm
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Menu with several windows
Replies: 6
Views: 2718

Re: Menu with several windows

One solution .... #include "FiveMac.ch" static oWnd static MenuParent //----------------------------------------------------------------------------// function Main()      BuildMenu()      DEFINE WINDOW oWnd TITLE "Hello world"      ACTIVATE WINDOW oWnd ;       VALID MsgYesNo( &q...
by mastintin
Wed Mar 28, 2018 7:20 am
Forum: FiveWin para Harbour/xHarbour
Topic: Este comportamiento es correcto ?
Replies: 4
Views: 639

Re: Este comportamiento es correcto ?

Básico de manual de clipper :D
Yo tambien pongo set exact on en mis programas pero en este no lo tenia ...
Pues si que le he dado vueltas . :D
Gracias por el apunte.
by mastintin
Tue Mar 27, 2018 9:20 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Este comportamiento es correcto ?
Replies: 4
Views: 639

Este comportamiento es correcto ?

Este código me ha traido de cabeza. los resultados son : .t. .f. .t. .f. Compilado con harbour y bcc7 y lo mismo con harbour para mac y fivemac Para sacar un resultado correcto: ! ( aux1 == aux2 ) function Main() local aux1:= "xxxxxxxxxxxxxxx" local aux2 := aux1 + "ccc" ? ( aux1 ...
by mastintin
Tue Mar 27, 2018 2:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: GDIBmp Save() method
Replies: 4
Views: 540

Re: GDIBmp Save() method

It is not supported by Microsoft directly. save ico files I know that the fwh team is with it.
Regards.
by mastintin
Fri Mar 16, 2018 12:00 pm
Forum: FiveWin para Harbour/xHarbour
Topic: un pequeño ejemplo ...meteo.prg
Replies: 52
Views: 14393

Re: un pequeño ejemplo ...meteo.prg

Mira asi :

Code: Select all


@ nRow,nCol+7  XIMAGE oBmp SOURCE loadBmp(cUrl) OF oDlg size 142,35 NOBORDER 

// cargaBmp(cUrl,oBmp)
 // obmp:lTransparent := .t.

 
by mastintin
Wed Mar 14, 2018 9:28 pm
Forum: FiveWin para Harbour/xHarbour
Topic: un pequeño ejemplo ...meteo.prg
Replies: 52
Views: 14393

Re: un pequeño ejemplo ...meteo.prg

Sin tocar nada aqui esta funcionando bien ...
Saludos.
by mastintin
Wed Mar 14, 2018 7:38 am
Forum: FiveWin para Harbour/xHarbour
Topic: ARCHIVOS PDF
Replies: 17
Views: 3342

Re: ARCHIVOS PDF

La solución es usar harupdf . Mirate en el foro , existen bastantes posts sobre el asunto . Harupdf esta dentro de las contrib de harbour y tenemos una clase de Carlos Mora que la hace casi compatible con tprinter de fwh . si usas windows 10 otra opcion es usar la impresora "Microsoft print to ...
by mastintin
Mon Mar 05, 2018 5:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: libharu
Replies: 8
Views: 1573

Re: libharu

AntoninoP. Fix this bug : in METHOD SayRotate - HPDF_Page_SetRGBFill( ::hPage, ( Int( nClrText / 0x10000 ) % 256 ) / 256.00, ( Int( nClrText / 0x100 ) % 256 ) / 256.00 , ( nClrText % 256 ) / 256.00 ) + HPDF_Page_SetRGBFill( ::hPage, ( nClrText % 256 ) / 256.00, ( Int( nClrText / 0x100 ) % 256 ) / 25...
by mastintin
Tue Jan 16, 2018 9:44 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ximage rotate and save
Replies: 13
Views: 1663

Re: ximage rotate and save

silvio , look ... Function SalvaImage(oImg)    Local nType    local cFile := cGetFile( "Bitmap (*.bmp)| *.bmp|" +         ;                                 "JPEG  (*.jpg)| *.jpg|" +          ;                                 "GIF   (*.gif)| *.gif|"  +         ;         ...