Nuevo FWH 15.09

Post Reply
User avatar
Antonio Linares
Site Admin
Posts: 42521
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 75 times
Contact:

Nuevo FWH 15.09

Post by Antonio Linares »

regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 42521
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 75 times
Contact:

Re: Nuevo FWH 15.09

Post by Antonio Linares »

Publicado FWH 15.09 build 2

viewtopic.php?f=16&p=182383#p182383
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 42521
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 75 times
Contact:

Re: Nuevo FWH 15.09

Post by Antonio Linares »

Publicado FWH 15.09 build 3:

viewtopic.php?p=182831#p182831
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
cnavarro
Posts: 6557
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: Nuevo FWH 15.09

Post by cnavarro »

Nuevos ejemplos Menuitem multiline

.\samples\multilin0.prg
Image

.\samples\UTestmnu.prg
Image
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
User avatar
Antonio Linares
Site Admin
Posts: 42521
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 75 times
Contact:

Re: Nuevo FWH 15.09

Post by Antonio Linares »

Publicado FWH 15.09 build 4:

viewtopic.php?p=183265#p183265
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 42521
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 75 times
Contact:

Re: Nuevo FWH 15.09

Post by Antonio Linares »

Y finalmente aqui está FWH 15.09 build 5:

viewtopic.php?p=183729#p183729

gracias a todos por vuestra ayuda y paciencia :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Patricio Avalos Aguirre
Posts: 1060
Joined: Fri Oct 07, 2005 1:56 pm
Location: La Serena, Chile
Contact:

Re: Nuevo FWH 15.09

Post by Patricio Avalos Aguirre »

Antonio

aun persiste el error en ocasiones en fwh 15.9 build 5

Image Subido en subir imagenes


Image Subido en subir imagenes
Saludos
Patricio

__________________________________________________________________
Version: Harbour 3.2.0dev (r1307082134),Compiler: Borland C++ 5.8.2 (32-bit)
PCode version: 0.3, FWH 13.2
http://www.sialm.cl
User avatar
cnavarro
Posts: 6557
Joined: Wed Feb 15, 2012 8:25 pm
Location: España
Been thanked: 3 times

Re: Nuevo FWH 15.09

Post by cnavarro »

Te ocurre siempre que muestras esas pantallas, o solo algunas veces?

Tienes Fw_SetUnicode( .T. ) en tu aplicacion?
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
User avatar
Patricio Avalos Aguirre
Posts: 1060
Joined: Fri Oct 07, 2005 1:56 pm
Location: La Serena, Chile
Contact:

Re: Nuevo FWH 15.09

Post by Patricio Avalos Aguirre »

Gracias Cristobal

colocando Fw_SetUnicode( .t. ) se soluciona el problema
Saludos
Patricio

__________________________________________________________________
Version: Harbour 3.2.0dev (r1307082134),Compiler: Borland C++ 5.8.2 (32-bit)
PCode version: 0.3, FWH 13.2
http://www.sialm.cl
User avatar
Patricio Avalos Aguirre
Posts: 1060
Joined: Fri Oct 07, 2005 1:56 pm
Location: La Serena, Chile
Contact:

Re: Nuevo FWH 15.09 Error picture

Post by Patricio Avalos Aguirre »

Estimados

tengo problemas con los pictures con Fw_SetUnicode( .t. )
este ejemplo el primer _main funciona bien el segundo escribe minusculas
podria alguien colaborar el ejemplo..

procedure main()

_main()
Fw_SetUnicode( .t. )
_main()

return

function _Main()

local oDlg, oGet
local nValue := SPACE(10)

SET _3DLOOK ON

DEFINE DIALOG oDlg RESOURCE "TestGet"

REDEFINE GET oGet VAR nValue PICTURE "@!" ID 110 OF oDlg

oGet:bGotFocus = { || oGet:SetPos( 0 ), nil }

REDEFINE BUTTON ID 120 OF oDlg ACTION MsgInfo( nValue )

ACTIVATE DIALOG oDlg CENTERED

return nil



aqui el RC, del ejemplo testgetr.prg - testgetr.rc

TestGet DIALOG 27, 68, 166, 57
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "Testing a GET with right justification"
FONT 8, "Arial"
BEGIN
CONTROL "", 110, "EDIT", ES_RIGHT | ES_MULTILINE | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 17, 12, 135, 14
CONTROL "&Ok", 120, "BUTTON", WS_CHILD | WS_VISIBLE | WS_TABSTOP, 46, 37, 31, 14
CONTROL "&Cancel", IDCANCEL, "BUTTON", WS_CHILD | WS_VISIBLE | WS_TABSTOP, 88, 37, 31, 14
END
Saludos
Patricio

__________________________________________________________________
Version: Harbour 3.2.0dev (r1307082134),Compiler: Borland C++ 5.8.2 (32-bit)
PCode version: 0.3, FWH 13.2
http://www.sialm.cl
User avatar
Patricio Avalos Aguirre
Posts: 1060
Joined: Fri Oct 07, 2005 1:56 pm
Location: La Serena, Chile
Contact:

Re: Nuevo FWH 15.09

Post by Patricio Avalos Aguirre »

UF..

Al parecer nadie ocupa Fw_SetUnicode( .t. )

entonces a trabajar con Fw_SetUnicode( .f. )

:-)
Saludos
Patricio

__________________________________________________________________
Version: Harbour 3.2.0dev (r1307082134),Compiler: Borland C++ 5.8.2 (32-bit)
PCode version: 0.3, FWH 13.2
http://www.sialm.cl
Post Reply