Page 1 of 2

unreleased BITMAP in FW 11.11 [solved]

PostPosted: Sat Dec 10, 2011 10:33 am
by ukservice
Hello,

I still get:

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

Thanks.

Re: unreleased font in FW 11.11

PostPosted: Sat Dec 10, 2011 11:57 am
by norberto
When are we have an "stable" version???? :x

Re: unreleased font in FW 11.11

PostPosted: Sat Dec 10, 2011 1:46 pm
by ukservice
Hope for Christmas ;)

Re: unreleased font in FW 11.11

PostPosted: Sun Dec 11, 2011 11:24 am
by Antonio Linares
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 :-)

Re: unreleased font in FW 11.11

PostPosted: Sun Dec 11, 2011 12:59 pm
by Rimantas
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 !

Re: unreleased font in FW 11.11

PostPosted: Sun Dec 11, 2011 3:41 pm
by Antonio Linares
Rimantas,

An unsupported feature doesnt mean that a product is buggy

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

Re: unreleased font in FW 11.11

PostPosted: Sun Dec 11, 2011 5:00 pm
by hmpaquito
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

Re: unreleased BITMAP in FW 11.11

PostPosted: Sun Dec 11, 2011 7:43 pm
by ukservice
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.

Re: unreleased font in FW 11.11

PostPosted: Mon Dec 12, 2011 5:46 am
by Rimantas
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 ,

Re: unreleased BITMAP in FW 11.11

PostPosted: Mon Dec 12, 2011 4:16 pm
by ukservice
Rimantas,

Please, that refers to your post. Thank you.

Re: unreleased BITMAP in FW 11.11

PostPosted: Mon Dec 12, 2011 8:16 pm
by Antonio Linares
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! :-)

Re: unreleased BITMAP in FW 11.11

PostPosted: Mon Dec 12, 2011 8:25 pm
by ukservice
Antonio, you too.

Please, look also at 2010 style.

Thanks again.

Re: unreleased BITMAP in FW 11.11

PostPosted: Mon Dec 12, 2011 8:33 pm
by Antonio Linares
Yes, we have to include it too, thanks! :-)

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

Re: unreleased BITMAP in FW 11.11

PostPosted: Mon Dec 12, 2011 10:50 pm
by fgondi
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

Re: unreleased BITMAP in FW 11.11

PostPosted: Wed Dec 14, 2011 12:26 pm
by ukservice
Antonio,

Is included in latest FWH?.

Thanks