Page 1 of 1

Problem with W10 Pro

PostPosted: Fri Jan 12, 2018 4:20 pm
by ip_ram
Hello!

I'm using the example of class "OutLook2010" and after upgrading in W10 I had problems on the system screens.

Look at the examples below the difference with W7 and W10.

https://uploaddeimagens.com.br/imagens/w7-png--4

https://uploaddeimagens.com.br/imagens/w10-png--2

I use the FW-1709 and the source code is the samples folder (test2010.prg).

Any tips?

Thank you!
Rodrigo Melo / Brazil

Re: Problem with W10 Pro

PostPosted: Fri Jan 12, 2018 6:12 pm
by Rick Lipkin
Just curious ... are you using the XP Manifest file linked in both versions ?

Rick Lipkin

Re: Problem with W10 Pro

PostPosted: Fri Jan 12, 2018 6:49 pm
by ip_ram
Rick,

XP.Manifest is not used in applications.

Tks

Re: Problem with W10 Pro

PostPosted: Fri Jan 12, 2018 7:16 pm
by ip_ram
Rick,

In time, I'm using FW-1709 with BCC-7.30 and xHarbour 1.2.3 Rev. 10209 for BCC 7.30.

But I also used BCC and xHarbour in the versions accompanying the FW-1709.

Tks!

Re: Problem with W10 Pro

PostPosted: Sat Jan 13, 2018 8:08 am
by Antonio Linares
Rodrigo,

In FWH/samples/test2010.prg please comment out these lines:

// SetParent( oOutLook2010:hWnd, oWnd:hWnd )

and

// SetParent( oSplit:hWnd, oWnd:hWnd )

with those changes it seems to work fine

Re: Problem with W10 Pro

PostPosted: Sat Jan 13, 2018 12:49 pm
by ip_ram
Linares,

All right, Master!

It worked fine.

Tks!

Rodrigo Melo
Brazil

Re: Problem with W10 Pro

PostPosted: Sat Jan 13, 2018 3:00 pm
by ip_ram
Linares,

And how do I remove the options menu on the last button?

https://uploaddeimagens.com.br/imagens/appdemo-png

Tks!

Rodrigo

Re: Problem with W10 Pro

PostPosted: Sun Jan 14, 2018 6:15 am
by Antonio Linares
Code: Select all  Expand view

DEFINE OUTLOOK2010 oOutLook2010 OF oWnd ;
      PROMPTS "Mail", "Calendar", "Contacts", "" ;
      BITMAPS "..\bitmaps\mail.bmp", "..\bitmaps\calendar.bmp", "..\bitmaps\notes.bmp"

   oOutLook2010:SetPopup( DummyPopup() )

...

CLASS DummyPopup

   METHOD Activate() VIRTUAL
   METHOD End() VIRTUAL
   
ENDCLASS
 

Re: Problem with W10 Pro

PostPosted: Sun Jan 14, 2018 1:35 pm
by ip_ram
Linares,

Gracias!

Rodrigo Melo
Belo Horizonte / MG / Brasil