Blog

InterSystems IRIS TSQL Code 1757 Column ‘%.*ls.%.*ls’ is not of same coll

In this post, you’ll learn about the SQL error code 1757 in InterSystems IRIS database the reason why you are receiving the TSQL message when using the InterSystems IRIS data platform Error Code : 1757 Reason for the Error code 1757 in InterSystems IRIS DBMS Column ‘%.*ls.%.*ls’ is not of same collation as referencing column ‘%.*ls.%.*ls’ in foreign key ‘%.*ls’.

Rectangle and SkewTransform example in Silverlight and XAML

Below is a sample code snippet demonstrating how to use the SkewTransform with the Rectangle control in Silverlight and XAML. Rectangle and SkewTransform example in Silverlight and XAML <Canvas x:Name=”ACCanvas” xmlns=”http://schemas.microsoft.com/client/2007″ xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml” Width=”400″ Height=”300″ > <Canvas.Background> <SolidColorBrush Color=”Yellow”/> </Canvas.Background> <Rectangle Width=”190″ Height=”160″ Fill=”Red” Stroke=”Green” Canvas.Left=”0″ Canvas.Top=”50″ RenderTransformOrigin=”0,0″ > <Rectangle.RenderTransform> <SkewTransform AngleX=”45″ /> </Rectangle.RenderTransform> </Rectangle> </Canvas>

How to Implement Style Inheritance in Windows Phone 8 ?

There are times when you want to apply some styles to a control in Windows Phone 8 but you may not want to start it from scratch . In these scenarios , the developers can use the property “BasedOn” to reference another style that is defined . For example , assume that there is already a style named “Style1” and for the Style2 you might…

Win32 COM Error – ERROR_FLT_CONTEXT_ALREADY_LINKED – 0x801F001C

In this post, you’ll learn more about the Error ERROR_FLT_CONTEXT_ALREADY_LINKED – 0x801F001C that is returned when working with the COM-based APIs in Win32 Win32 COM Error ERROR_FLT_CONTEXT_ALREADY_LINKED – 0x801F001C Win32 COM Error Error Description The specified context is already attached to another object

How to fix the Oracle error NNO-00631: warning: forwarder number has invalid name “string”, forwarder ignored?

In this post, you’ll learn more about the Oracle ErrorNNO-00631: warning: forwarder number has invalid name “string”, forwarder ignored with the details on why you receive this error and the possible solution to fix it. Oracle Error Description NNO-00631: warning: forwarder number has invalid name “string”, forwarder ignored Reason for the Error NNO-00631: warning: forwarder number has invalid name “string”, forwarder ignored Cause: The server’s…