problema con SetBalloon(.t.)
Moderator: Enrico Maria Giordano
problema con SetBalloon(.t.)
salve a tutti,
ho un problema con SetBalloon(.t.) per il nuovo look 2007 dei tooltips con fw 7.12.
non vedo nessun tooltips sulla buttonbar se nel file rc ho:
1 24 "themed.manifest"
come risolvere?
ciao, marzio
ho un problema con SetBalloon(.t.) per il nuovo look 2007 dei tooltips con fw 7.12.
non vedo nessun tooltips sulla buttonbar se nel file rc ho:
1 24 "themed.manifest"
come risolvere?
ciao, marzio
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: problema con SetBalloon(.t.)
A me il seguente esempio funziona regolarmente:
EMG
Code: Select all
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd
SETBALLOON( .T. )
DEFINE WINDOW oWnd
DEFINE BUTTONBAR OF oWnd 2007;
SIZE 33, 33
DEFINE BUTTON OF oWnd:oBar;
FILE "C:\FWH\BITMAPS\OPEN.BMP";
ACTION MSGINFO( "Test" );
TOOLTIP "This is a test"
ACTIVATE WINDOW oWnd
RETURN NIL
grazie per la risposta.
ho provato il tuo esempio che funziona solo se non ho inserito themed.manifest nel file rc che contiene le seguenti righe:
1 ICON "write.ico"
1 24 "themed.manifest"
questo è il contenuto del file themed.manifest:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1"
manifestVersion="1.0">
<assemblyIdentity
name="Your.Application.Name.Here"
processorArchitecture="x86"
version="1.0.0.0"
type="win32"/>
<description>Windows Shell</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="x86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>
ciao, marzio
ho provato il tuo esempio che funziona solo se non ho inserito themed.manifest nel file rc che contiene le seguenti righe:
1 ICON "write.ico"
1 24 "themed.manifest"
questo è il contenuto del file themed.manifest:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1"
manifestVersion="1.0">
<assemblyIdentity
name="Your.Application.Name.Here"
processorArchitecture="x86"
version="1.0.0.0"
type="win32"/>
<description>Windows Shell</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="x86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>
ciao, marzio
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
A me funziona anche con il manifest. Questo è il contenuto del mio RC:
EMG
Code: Select all
1 24 "c:\fwh\samples\winxp\WindowsXP.Manifest"
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact: