Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS Tech Support » strong blinking Collapse All
Subject Author Date
Brian Horn Mar 2, 2007 - 11:40 AM

if we select any of the Office2007(release1/2/3) themes and then
make mouse movement over the bar (any of restore/minimize/close button) a strong blinking takes place however if we select
the theme other than that mentioned above it works fine.

Similarly in the Ribbonbar example from Prof-UIS if we select any of the themes of Office2007 and observe the Home -> Style Tab we can
observe such similar effect where style gallery control looks twice.

How do we avoid the blinking and flickering?

Technical Support Mar 2, 2007 - 12:47 PM

Thank you for reporting the bug. We fixed it and emailed you the information about how to download the update.

Brian Horn Mar 5, 2007 - 11:03 AM


we are getting a following errors with new source code....

ExtGridWnd.cpp
Prof-UIS is automatically linking with oleaut32.lib
(OLE automation)
\Program Files\FOSS Software Inc\Prof-UIS\Src\ExtGridWnd.cpp(44624) : error C2666: ’pow’ : 7 overloads have similar conversions
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(620): could be ’long double pow(long double,int)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(618): or ’long double pow(long double,long double)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(572): or ’float pow(float,int)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(570): or ’float pow(float,float)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(534): or ’double pow(int,int)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(532): or ’double pow(double,int)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(195): or ’double pow(double,double)’
while trying to match the argument list ’(int, double)’
\Program Files\FOSS Software Inc\Prof-UIS\Src\ExtGridWnd.cpp(44648) : error C2666: ’pow’ : 7 overloads have similar conversions
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(620): could be ’long double pow(long double,int)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(618): or ’long double pow(long double,long double)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(572): or ’float pow(float,int)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(570): or ’float pow(float,float)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(534): or ’double pow(int,int)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(532): or ’double pow(double,int)’
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\math.h(195): or ’double pow(double,double)’
while trying to match the argument list ’(int, double)’

Technical Support Mar 6, 2007 - 9:37 AM

Thank you for reporting the problem. Please replace the following line in the ExtGridWnd.cpp file:

V_R8(&varRight) = pow( 2, DOUBLE(nPower) );
with
V_R8(&varRight) = pow( 2.0, DOUBLE(nPower) );
This should fix the problem.