Nuevo FWH 15.09
- 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:
- 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:
- 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
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
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
- 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:
- 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
Y finalmente aqui está FWH 15.09 build 5:
viewtopic.php?p=183729#p183729
gracias a todos por vuestra ayuda y paciencia![Smile :-)](./images/smilies/icon_smile.gif)
viewtopic.php?p=183729#p183729
gracias a todos por vuestra ayuda y paciencia
![Smile :-)](./images/smilies/icon_smile.gif)
- Patricio Avalos Aguirre
- Posts: 1060
- Joined: Fri Oct 07, 2005 1:56 pm
- Location: La Serena, Chile
- Contact:
Re: Nuevo FWH 15.09
Antonio
aun persiste el error en ocasiones en fwh 15.9 build 5
Subido en subir imagenes
Subido en subir imagenes
aun persiste el error en ocasiones en fwh 15.9 build 5
![Image](http://www.subeimagenes.com/thumb/13-11-2015-16-48-19-1525891.png)
![Image](http://www.subeimagenes.com/thumb/14-11-2015-13-47-41-1525894.png)
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
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
Re: Nuevo FWH 15.09
Te ocurre siempre que muestras esas pantallas, o solo algunas veces?
Tienes Fw_SetUnicode( .T. ) en tu aplicacion?
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
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
- Patricio Avalos Aguirre
- Posts: 1060
- Joined: Fri Oct 07, 2005 1:56 pm
- Location: La Serena, Chile
- Contact:
Re: Nuevo FWH 15.09
Gracias Cristobal
colocando Fw_SetUnicode( .t. ) se soluciona el problema
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
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
- 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
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..
aqui el RC, del ejemplo testgetr.prg - testgetr.rc
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
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
- Patricio Avalos Aguirre
- Posts: 1060
- Joined: Fri Oct 07, 2005 1:56 pm
- Location: La Serena, Chile
- Contact:
Re: Nuevo FWH 15.09
UF..
Al parecer nadie ocupa Fw_SetUnicode( .t. )
entonces a trabajar con Fw_SetUnicode( .f. )
![Smile :-)](./images/smilies/icon_smile.gif)
Al parecer nadie ocupa Fw_SetUnicode( .t. )
entonces a trabajar con Fw_SetUnicode( .f. )
![Smile :-)](./images/smilies/icon_smile.gif)
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
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