Nuevo FWH 15.09

Nuevo FWH 15.09

Postby Antonio Linares » Sat Sep 26, 2015 8:25 am

regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 42077
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Nuevo FWH 15.09

Postby Antonio Linares » Sat Oct 03, 2015 7:37 am

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: 42077
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Nuevo FWH 15.09

Postby Antonio Linares » Thu Oct 15, 2015 3:01 pm

Publicado FWH 15.09 build 3:

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

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 42077
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Nuevo FWH 15.09

Postby cnavarro » Fri Oct 16, 2015 5:17 am

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
cnavarro
 
Posts: 6541
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Nuevo FWH 15.09

Postby Antonio Linares » Wed Oct 28, 2015 11:39 am

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: 42077
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Nuevo FWH 15.09

Postby Antonio Linares » Fri Nov 06, 2015 5:01 pm

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
Antonio Linares
Site Admin
 
Posts: 42077
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Nuevo FWH 15.09

Postby Patricio Avalos Aguirre » Sat Nov 14, 2015 4:55 pm

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
Patricio Avalos Aguirre
 
Posts: 1060
Joined: Fri Oct 07, 2005 1:56 pm
Location: La Serena, Chile

Re: Nuevo FWH 15.09

Postby cnavarro » Sat Nov 14, 2015 5:01 pm

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
cnavarro
 
Posts: 6541
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Nuevo FWH 15.09

Postby Patricio Avalos Aguirre » Mon Nov 16, 2015 2:24 pm

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

Re: Nuevo FWH 15.09 Error picture

Postby Patricio Avalos Aguirre » Tue Nov 24, 2015 2:33 am

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

Re: Nuevo FWH 15.09

Postby Patricio Avalos Aguirre » Fri Nov 27, 2015 5:52 pm

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
User avatar
Patricio Avalos Aguirre
 
Posts: 1060
Joined: Fri Oct 07, 2005 1:56 pm
Location: La Serena, Chile


Return to FiveWin para Harbour/xHarbour

Who is online

Users browsing this forum: Google [Bot] and 47 guests