Blog

InterSystems IRIS TSQL Code 10067 The rowset was using optimistic concurre

In this post, you’ll learn about the SQL error code 10067 in InterSystems IRIS database the reason why you are receiving the TSQL message when using the InterSystems IRIS data platform Error Code : 10067 Reason for the Error code 10067 in InterSystems IRIS DBMS The rowset was using optimistic concurrency and the value of a column has been changed after the containing row was…

InterSystems IRIS General Error Code – 5932

In this post, you’ll learn about the General error code 5932 in InterSystems IRIS database the reason why you are receiving the error message when using the InterSystems IRIS data platform Error Code : 5932 Reason for the Error code 5932 in InterSystems IRIS DBMS Action not valid with this version of the Web Gateway on the web server

Windows System Error Code 8565 – ERROR_DS_FOREST_VERSION_TOO_LOW (0x2175)]

In this post, you’ll learn about the Windows System Error ERROR_DS_FOREST_VERSION_TOO_LOW (0x2175)] and the reason why you are receiving the error message How does this Error in Windows Look like? Error Code 8565 ERROR_DS_FOREST_VERSION_TOO_LOW (0x2175)] Why do you receive the System Error Error Code 8565 ERROR_DS_FOREST_VERSION_TOO_LOW (0x2175)] in Windows? The version of the operating system installed on this server no longer supports the current forest…

SQLite Error 266 – SQLITE_IOERR_READ

In this post, you’ll learn about the SQLite Error Message 266 SQLITE_IOERR_READ and the reason why you are receiving the error message when you are working with the SQLite database How does this SQLite Error Message Look like? 266 – SQLITE_IOERR_READ Why do you receive this Error in SQLite? The SQLITE_IOERR_READ error code is an extended error code for SQLITE_IOERR indicating an I/O error in…

Rectangle and TranslateTransform example in Silverlight and XAML

Below is a sample code snippet demonstrating how to use the TranslateTransform with the Rectangle control in Silverlight and XAML. Rectangle and TranslateTransform 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=”200″ Canvas.Top=”50″ RenderTransformOrigin=”0,0″ > <Rectangle.RenderTransform> <TranslateTransform X=”100″ Y=”100″/> </Rectangle.RenderTransform> </Rectangle> </Canvas>

Alternate Method to Navigate from Page in Windows Phone 8 using C#

The NavigationService.Navigate method i.e. generally used to navigate from one page to another page in Windows Phone 8 SDK. The NavigationService also exposes a property “Source” which can be used to Get/Set the URI of the page . By Setting this property, the Application Frame loads the specified page. Alternate Method to Navigate from Page in Windows Phone 8 using C# Below is a sample…