unreleased BITMAP in FW 11.11 [solved]

unreleased BITMAP in FW 11.11 [solved]

Postby ukservice » Sat Dec 10, 2011 10:33 am

Hello,

I still get:

BMP,-2130373344,TWINDOW:HANDLEEVENT(0)->_FWH(3294)->SHOWWINDOW(0)->TWINDOW:ACTIVATE(972)->MAIN(596)

Thanks.
Last edited by ukservice on Fri Dec 16, 2011 12:07 pm, edited 2 times in total.
FWH 11.11, Harbour 3.1 and Borland C++ 5.82
User avatar
ukservice
 
Posts: 417
Joined: Tue Feb 23, 2010 3:09 pm
Location: John

Re: unreleased font in FW 11.11

Postby norberto » Sat Dec 10, 2011 11:57 am

When are we have an "stable" version???? :x
norberto
 
Posts: 566
Joined: Thu Aug 30, 2007 3:40 pm
Location: BR

Re: unreleased font in FW 11.11

Postby ukservice » Sat Dec 10, 2011 1:46 pm

Hope for Christmas ;)
FWH 11.11, Harbour 3.1 and Borland C++ 5.82
User avatar
ukservice
 
Posts: 417
Joined: Tue Feb 23, 2010 3:09 pm
Location: John

Re: unreleased font in FW 11.11

Postby Antonio Linares » Sun Dec 11, 2011 11:24 am

John,

Thats not a font, its a bitmap, and it seems as it has been created in line 596 of your app (as you don't specify what app you are testing and still I don't have the power to guess it) :-)

Norberto, its really stable, trust me :-)
regards, saludos

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

Re: unreleased font in FW 11.11

Postby Rimantas » Sun Dec 11, 2011 12:59 pm

Antonio Linares wrote:John,

Thats not a font, its a bitmap, and it seems as it has been created in line 596 of your app (as you don't specify what app you are testing and still I don't have the power to guess it) :-)

Norberto, its really stable, trust me :-)


Stable , but buggy ... :-) Antonio , how to solve cyrillics fonts problem on FolderEx ?

With best regards !
Rimantas U.
User avatar
Rimantas
 
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania

Re: unreleased font in FW 11.11

Postby Antonio Linares » Sun Dec 11, 2011 3:41 pm

Rimantas,

An unsupported feature doesnt mean that a product is buggy

Thats not a nice attitude when you are receiving very good tech support
regards, saludos

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

Re: unreleased font in FW 11.11

Postby hmpaquito » Sun Dec 11, 2011 5:00 pm

Antonio !

Llevas gafas ! Ah ! cómo nos afectan los años, para lo malo y para lo bueno ! :D

Y totalmente de acuerdo: una caracteristica no soportada nunca fue un error lo mismo que un font nunca fue un bitmap: este parece el "hilo loco"

Muchas gracias siempre, Antonio: tú nos haces grandes !

Saludos
hmpaquito
 
Posts: 1482
Joined: Thu Oct 30, 2008 2:37 pm

Re: unreleased BITMAP in FW 11.11

Postby ukservice » Sun Dec 11, 2011 7:43 pm

Antonio,

Here is a sample:

Code: Select all  Expand view
#include "fivewin.ch"



FUNCTION main()

   LOCAL oMain

   SetResDebug( .T. )





   DEFINE WINDOW oMain FROM 1, 1 TO 28, 75 ;
          TITLE "Test for Linares" ;
          MENU  MenuMain()



   SET MESSAGE OF oMain ;
       TO "(c) Ukservice" ;
       CLOCK ;
       DATE ;
       KEYBOARD 2007


   ACTIVATE WINDOW oMain MAXIMIZED




   delete file "checkres.txt"
   checkres()
   winexec("notepad checkres")


   QUIT


RETURN NIL





// -------------------------------------------------------------------------
FUNCTION MenuMain()

   LOCAL  oMenu

   MENU oMenu 2007


        MENUITEM "Help"
        MENU

           MENUITEM "F1 Help" ACTION WinExec( "HH HELP.CHM" ) RESOURCE "MNUHELP" ;
                    MESSAGE "Help"

        ENDMENU


   ENDMENU

RETURN oMenu
// ---------------------------------------------------------------------------

 



The non-released bitmap is due to Menu. Without Menu no problem.


Code: Select all  Expand view
BMP,-2096824075,TWINDOW:HANDLEEVENT(0)->_FWH(3294)->SHOWWINDOW(0)->TWINDOW:ACTIVATE(972)->MAIN(28)



Thanks.
FWH 11.11, Harbour 3.1 and Borland C++ 5.82
User avatar
ukservice
 
Posts: 417
Joined: Tue Feb 23, 2010 3:09 pm
Location: John

Re: unreleased font in FW 11.11

Postby Rimantas » Mon Dec 12, 2011 5:46 am

Antonio Linares wrote:Rimantas,

An unsupported feature doesnt mean that a product is buggy

Thats not a nice attitude when you are receiving very good tech support


What that mean - "unsupported" ? And if you look to my question , then you will see that with Window FolderEx and cirillics are working fine , but with Dialogs not . And you are saying "unsupported" ? I'm saying that here is bug ... If cyrillics are working with windows , then it must work and with dialogs .

Regards ,
Rimantas U.
User avatar
Rimantas
 
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania

Re: unreleased BITMAP in FW 11.11

Postby ukservice » Mon Dec 12, 2011 4:16 pm

Rimantas,

Please, that refers to your post. Thank you.
FWH 11.11, Harbour 3.1 and Borland C++ 5.82
User avatar
ukservice
 
Posts: 417
Joined: Tue Feb 23, 2010 3:09 pm
Location: John

Re: unreleased BITMAP in FW 11.11

Postby Antonio Linares » Mon Dec 12, 2011 8:16 pm

John,

This change is required in Class TMenu:

Code: Select all  Expand view
  METHOD Destroy() INLINE If( ::l2007, DelCheck2007(),),;
                           DestroyItems( ::aMenuItems )
 


That solves the unreleased bitmap, thanks! :-)
regards, saludos

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

Re: unreleased BITMAP in FW 11.11

Postby ukservice » Mon Dec 12, 2011 8:25 pm

Antonio, you too.

Please, look also at 2010 style.

Thanks again.
FWH 11.11, Harbour 3.1 and Borland C++ 5.82
User avatar
ukservice
 
Posts: 417
Joined: Tue Feb 23, 2010 3:09 pm
Location: John

Re: unreleased BITMAP in FW 11.11

Postby Antonio Linares » Mon Dec 12, 2011 8:33 pm

Yes, we have to include it too, thanks! :-)

Code: Select all  Expand view
  METHOD Destroy() INLINE If( ::l2007 .or. ::l2010, DelCheck2007(),),;
                           DestroyItems( ::aMenuItems )
regards, saludos

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

Re: unreleased BITMAP in FW 11.11

Postby fgondi » Mon Dec 12, 2011 10:50 pm

Antonio,

Disculpa, ¿Puedes publicar los fuentes de la nueva versión, con sus mejoras?
Por ejemplo, ahora yo no dispongo del fuente de las últimas versiones y no puedo, o mejor dicho no se si puedo porque este modificado, incluir cambios, ajustes como el comentado en este post.

Muchas gracias
Un saludo
Fernando González Diez
ALSIS Sistemas Informáticos
User avatar
fgondi
 
Posts: 694
Joined: Fri Oct 07, 2005 6:58 am
Location: Palencia, España

Re: unreleased BITMAP in FW 11.11

Postby ukservice » Wed Dec 14, 2011 12:26 pm

Antonio,

Is included in latest FWH?.

Thanks
FWH 11.11, Harbour 3.1 and Borland C++ 5.82
User avatar
ukservice
 
Posts: 417
Joined: Tue Feb 23, 2010 3:09 pm
Location: John

Next

Return to FiveWin for Harbour/xHarbour

Who is online

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