<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6074755521408329271</id><updated>2011-12-27T20:50:27.142+05:30</updated><category term='softwares'/><category term='flex errors'/><category term='asp.net'/><category term='acessing panel'/><category term='Flex codebehind'/><category term='Flex AIR Active User'/><category term='javascript'/><category term='asp.net javascript'/><category term='sql server 2005'/><category term='Flex Google Maps'/><category term='show hide panel'/><title type='text'>Views of a software engineer</title><subtitle type='html'>- Madhu Panisetty</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://madhupanisetty.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://madhupanisetty.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>madhu</name><uri>http://www.blogger.com/profile/14032413650346846702</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6074755521408329271.post-1381769251398356263</id><published>2009-04-04T19:04:00.007+05:30</published><updated>2009-04-05T11:12:47.235+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='acessing panel'/><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='asp.net javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='show hide panel'/><title type='text'>Hide / Show Panel on client side with button click using java script</title><content type='html'>To hide or show a panel in javascript we use client Id of the control to target the panel and also set style property to show or hide the panel.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;    &amp;lt;title&amp;gt;show hide on client side&amp;lt;/title&amp;gt;&lt;br /&gt;    &amp;lt;script language=&amp;quot;javascript&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;        function click_button()&lt;br /&gt;        {&lt;br /&gt;            if(document.getElementById(&amp;#039;&amp;lt;%=Panel1.ClientID%&amp;gt;&amp;#039;).style.display == &amp;#039;none&amp;#039;)&lt;br /&gt;            {&lt;br /&gt;                document.getElementById(&amp;#039;&amp;lt;%=Panel1.ClientID%&amp;gt;&amp;#039;).style.display = &amp;#039;block&amp;#039;;&lt;br /&gt;                document.getElementById(&amp;#039;btnshowHide&amp;#039;).value = &amp;#039;hide&amp;#039;;&lt;br /&gt;            }&lt;br /&gt;            else &lt;br /&gt;            {&lt;br /&gt;                document.getElementById(&amp;#039;&amp;lt;%=Panel1.ClientID%&amp;gt;&amp;#039;).style.display = &amp;#039;none&amp;#039;;&lt;br /&gt;                document.getElementById(&amp;#039;btnshowHide&amp;#039;).value = &amp;#039;show&amp;#039;;&lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt;    &amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;    &amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;    &amp;lt;div&amp;gt;&lt;br /&gt;    &amp;lt;input id=&amp;quot;btnshowHide&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;hide&amp;quot; onclick=&amp;quot;click_button();&amp;quot; /&amp;gt;&lt;br /&gt;    &amp;lt;asp:Panel ID=&amp;quot;Panel1&amp;quot; runat=&amp;quot;server&amp;quot; Height=&amp;quot;50px&amp;quot; Width=&amp;quot;125px&amp;quot;&amp;gt;&lt;br /&gt;        click hide to hide this text&lt;br /&gt;    &amp;lt;/asp:Panel&amp;gt;    &lt;br /&gt;    &amp;lt;/div&amp;gt;&lt;br /&gt;    &amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;To enable client side click we are using a html button&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&amp;lt;input id=&amp;quot;btnshowHide&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;show&amp;quot; onclick=&amp;quot;click_button();&amp;quot; /&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;In the method click_button() we are accessing the panel to hide using the client id of the control&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;document.getElementById(&amp;#039;&amp;lt;%=Panel1.ClientID%&amp;gt;&amp;#039;).style.display&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;so now to hide we set the style as 'none'&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;document.getElementById(&amp;#039;&amp;lt;%=Panel1.ClientID%&amp;gt;&amp;#039;).style.display = &amp;#039;none&amp;#039;;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;and to show it back we set style as 'block'&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;document.getElementById(&amp;#039;&amp;lt;%=Panel1.ClientID%&amp;gt;&amp;#039;).style.display = &amp;#039;block&amp;#039;;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Also we toggle the text of the button between show and hide&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;document.getElementById(&amp;#039;btnshowHide&amp;#039;).value = &amp;#039;show&amp;#039;;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;image when intially loaded&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_3CGtwfdMFI4/Sdg_zJZ_GcI/AAAAAAAAAEc/pRNsee6jzKU/s1600-h/hide.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 117px; height: 83px;" src="http://2.bp.blogspot.com/_3CGtwfdMFI4/Sdg_zJZ_GcI/AAAAAAAAAEc/pRNsee6jzKU/s320/hide.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5321073107669031362" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;when hide is clicked, this is how shown, every thing done on client side&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_3CGtwfdMFI4/Sdg_zIoJaqI/AAAAAAAAAEk/QyP_xq2k68Q/s1600-h/show.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 82px; height: 89px;" src="http://4.bp.blogspot.com/_3CGtwfdMFI4/Sdg_zIoJaqI/AAAAAAAAAEk/QyP_xq2k68Q/s320/show.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5321073107459992226" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.madhu.qsh.in'&gt;Madhu :-)&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6074755521408329271-1381769251398356263?l=madhupanisetty.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://madhupanisetty.blogspot.com/feeds/1381769251398356263/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6074755521408329271&amp;postID=1381769251398356263' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/1381769251398356263'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/1381769251398356263'/><link rel='alternate' type='text/html' href='http://madhupanisetty.blogspot.com/2009/04/hide-show-panel-on-client-side-with.html' title='Hide / Show Panel on client side with button click using java script'/><author><name>madhu</name><uri>http://www.blogger.com/profile/14032413650346846702</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_3CGtwfdMFI4/Sdg_zJZ_GcI/AAAAAAAAAEc/pRNsee6jzKU/s72-c/hide.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6074755521408329271.post-6761898961788458245</id><published>2009-01-21T13:52:00.004+05:30</published><updated>2009-01-21T13:59:20.625+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Flex codebehind'/><title type='text'>Code Behind in Flex</title><content type='html'>If you are a Asp.Net developer you are more interested in writing code behind file to separate logic from interface.&lt;br /&gt;&lt;br /&gt;This is a simple example to show code behind in flex&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;CodeBehindTest.mxml&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;&amp;lt;mx:Application xmlns:mx=&amp;quot;http://www.adobe.com/2006/mxml&amp;quot; &lt;br /&gt; layout=&amp;quot;absolute&amp;quot; creationComplete=&amp;quot;initApp();&amp;quot;&amp;gt;&lt;br /&gt; &amp;lt;mx:Script&amp;gt;&lt;br /&gt;  &amp;lt;![CDATA[&lt;br /&gt;   &lt;span style="font-weight:bold;"&gt;include &amp;quot;CodeBehindTest.as&amp;quot;;&lt;/span&gt;&lt;br /&gt;  ]]&amp;gt;&lt;br /&gt; &amp;lt;/mx:Script&amp;gt;&lt;br /&gt; &amp;lt;mx:Button id=&amp;quot;btnMessage&amp;quot; label=&amp;quot;Show Message&amp;quot;/&amp;gt;&lt;br /&gt;&amp;lt;/mx:Application&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;In the above code we included the code behind file in main mxml&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is actual code behind action script file&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;CodeBehindTest.as&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;// ActionScript file&lt;br /&gt;import flash.events.MouseEvent;&lt;br /&gt;import mx.controls.Alert;&lt;br /&gt;private function initApp():void&lt;br /&gt;{&lt;br /&gt; btnMessage.addEventListener(MouseEvent.CLICK,ShowMessage);&lt;br /&gt;}&lt;br /&gt;private function ShowMessage(e:MouseEvent):void&lt;br /&gt;{&lt;br /&gt; Alert.show("Message from codebehind");&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.madhu.qsh.in"&gt;Madhu :-)&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6074755521408329271-6761898961788458245?l=madhupanisetty.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://madhupanisetty.blogspot.com/feeds/6761898961788458245/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6074755521408329271&amp;postID=6761898961788458245' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/6761898961788458245'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/6761898961788458245'/><link rel='alternate' type='text/html' href='http://madhupanisetty.blogspot.com/2009/01/code-behind-in-flex.html' title='Code Behind in Flex'/><author><name>madhu</name><uri>http://www.blogger.com/profile/14032413650346846702</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6074755521408329271.post-723561728507736076</id><published>2008-12-17T19:47:00.009+05:30</published><updated>2009-01-21T14:00:47.362+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Flex Google Maps'/><title type='text'>Using google maps in flex</title><content type='html'>Basic requirements before using Google maps (assuming you already have flex builder)&lt;br /&gt;&lt;br /&gt;1. Get &lt;a href="http://maps.googleapis.com/maps/flash/release/sdk.zip"&gt;GoogleMaps API SDK&lt;/a&gt;&lt;br /&gt;2. Sign up for &lt;a href="http://code.google.com/apis/maps/signup.html"&gt;API Key&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Follow these steps&lt;br /&gt;&lt;br /&gt;3. Open flex builder&lt;br /&gt;4. Create new web project&lt;br /&gt;5. Add reference of &lt;span style="font-weight: bold;"&gt;map_flex_1_8b.swc&lt;/span&gt; to the project&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_3CGtwfdMFI4/SUkTj6ncLHI/AAAAAAAAADs/WsFLzevnkaU/s1600-h/add+ref.bmp"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 307px;" src="http://3.bp.blogspot.com/_3CGtwfdMFI4/SUkTj6ncLHI/AAAAAAAAADs/WsFLzevnkaU/s320/add+ref.bmp" alt="" id="BLOGGER_PHOTO_ID_5280773545819647090" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;6. Add mxml code&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;&amp;lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:ns1="com.google.maps.controls.*"&amp;gt;&lt;br /&gt;&amp;lt;maps:Map url="http://www.yoururl.com/" xmlns:maps="com.google.maps.*" id="myMap" mapevent_mapready="onMapReady(event)" width="100%" height="100%" key="&lt;span style="font-style: italic;"&gt;yourkey&lt;/span&gt;"/&amp;gt;&lt;br /&gt;&amp;lt;mx:Button label="Current Lat Long" click="ShowLatLong()" x="10" y="10"/&amp;gt;&lt;br /&gt;&amp;lt;mx:Button label="++" width="50" click="zoomIn()" x="10" y="40"/&amp;gt;&lt;br /&gt;&amp;lt;mx:Button label="--" width="50" click="zoomOut()" x="10" y="238"/&amp;gt;&lt;br /&gt;&amp;lt;mx:VSlider id="vsZoom" x="28" y="70" minimum="1" maximum="17" tickInterval="0.1" change="zoomChange()"/&amp;gt;&lt;br /&gt;&amp;lt;mx:Script&amp;gt;&lt;br /&gt;   &amp;lt;![CDATA[&lt;br /&gt;       import mx.controls.Alert;&lt;br /&gt;&lt;br /&gt;       import com.google.maps.LatLng;&lt;br /&gt;       import com.google.maps.Map;&lt;br /&gt;       import com.google.maps.MapEvent;&lt;br /&gt;       import com.google.maps.MapType;&lt;br /&gt; &lt;br /&gt;       private function onMapReady(event:Event):void {&lt;br /&gt;           init();&lt;br /&gt;           myMap.setCenter(new LatLng(17.7345444917096,83.32132062557982),vsZoom.value, MapType.NORMAL_MAP_TYPE);&lt;br /&gt;           //click not working - but by default it handles&lt;br /&gt;           //myMap.addEventListener(MouseEvent.DOUBLE_CLICK,handleMouseClick);&lt;br /&gt;           myMap.addEventListener(MouseEvent.MOUSE_WHEEL,handleMouseWheel);&lt;br /&gt;       }&lt;br /&gt;       private function ShowLatLong():void{&lt;br /&gt;           var objLatLong:LatLng;&lt;br /&gt;           objLatLong = myMap.getCenter();&lt;br /&gt;           myMap.zoomIn();&lt;br /&gt;           Alert.show("[lat]"+objLatLong.lat()+ "[long]"+objLatLong.lng());&lt;br /&gt;       }&lt;br /&gt;       private function zoomIn():void{&lt;br /&gt;           vsZoom.value = vsZoom.value + 1;&lt;br /&gt;           zoomChange();&lt;br /&gt;       }&lt;br /&gt;       private function zoomOut():void{&lt;br /&gt;           vsZoom.value = vsZoom.value - 1;&lt;br /&gt;           zoomChange();&lt;br /&gt;       }&lt;br /&gt;       private function init():void{&lt;br /&gt;           vsZoom.value = vsZoom.maximum;&lt;br /&gt;       }&lt;br /&gt;       private function zoomChange():void{&lt;br /&gt;           myMap.setZoom(vsZoom.value);&lt;br /&gt;       }&lt;br /&gt;       private function handleMouseClick():void{&lt;br /&gt;           vsZoom.value = vsZoom.value + 1;&lt;br /&gt;       }&lt;br /&gt;       private function handleMouseWheel(ev:MouseEvent):void{&lt;br /&gt;           vsZoom.value = vsZoom.value + ev.delta/30;&lt;br /&gt;           zoomChange();&lt;br /&gt;       }&lt;br /&gt;   ]]&amp;gt;&lt;br /&gt;&amp;lt;/mx:Script&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/mx:Application&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. Change url and apikey to your values&lt;br /&gt;&lt;br /&gt;sample output&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_3CGtwfdMFI4/SUkSAegXMYI/AAAAAAAAADk/4IXBlFedDtI/s1600-h/gmap+sample.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 282px;" src="http://4.bp.blogspot.com/_3CGtwfdMFI4/SUkSAegXMYI/AAAAAAAAADk/4IXBlFedDtI/s320/gmap+sample.JPG" alt="" id="BLOGGER_PHOTO_ID_5280771837466718594" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.madhu.qsh.in/"&gt;Madhu :-)&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6074755521408329271-723561728507736076?l=madhupanisetty.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://madhupanisetty.blogspot.com/feeds/723561728507736076/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6074755521408329271&amp;postID=723561728507736076' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/723561728507736076'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/723561728507736076'/><link rel='alternate' type='text/html' href='http://madhupanisetty.blogspot.com/2008/12/using-google-maps-in-flex.html' title='Using google maps in flex'/><author><name>madhu</name><uri>http://www.blogger.com/profile/14032413650346846702</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_3CGtwfdMFI4/SUkTj6ncLHI/AAAAAAAAADs/WsFLzevnkaU/s72-c/add+ref.bmp' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6074755521408329271.post-4676524381113941334</id><published>2008-12-17T18:01:00.007+05:30</published><updated>2009-01-21T14:01:38.951+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Flex AIR Active User'/><title type='text'>Checking user is idle or not in AIR</title><content type='html'>This changes the label according to user is active or idle on system.&lt;br /&gt;Please note this is for AIR only.&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;&amp;lt;mx:WindowedApplication  xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()" layout="absolute"&amp;gt;&lt;br /&gt;       &amp;lt;mx:Script&amp;gt;&lt;br /&gt;       &amp;lt;![CDATA[&lt;br /&gt;  private function init():void&lt;br /&gt;  {&lt;br /&gt;     &lt;span style="font-weight: bold;"&gt;NativeApplication.nativeApplication.&lt;span style="font-style: italic;"&gt;idleThreshold = 5&lt;/span&gt;;&lt;br /&gt;&lt;br /&gt;     NativeApplication.nativeApplication.addEventListener(&lt;span style="font-style: italic;"&gt;Event.USER_PRESENT&lt;/span&gt;, userActiveAlert);&lt;br /&gt;&lt;br /&gt;     NativeApplication.nativeApplication.addEventListener(&lt;span style="font-style: italic;"&gt;Event.USER_IDLE&lt;/span&gt;, userIdleAlert);&lt;/span&gt;&lt;br /&gt;  }&lt;br /&gt;  private function userActiveAlert(ev:Event):void&lt;br /&gt;  {&lt;br /&gt;     lblUserStatus.text = "User came back :-)";&lt;br /&gt;     lblUserStatus.setStyle("color",StyleManager.getColorName("green"));&lt;br /&gt;  }&lt;br /&gt;  private function userIdleAlert(ev:Event):void&lt;br /&gt;  {&lt;br /&gt;     lblUserStatus.text = "User is idle :-(";&lt;br /&gt;     lblUserStatus.setStyle("color",StyleManager.getColorName("red"));&lt;br /&gt;  }&lt;br /&gt;       ]]&amp;gt;&lt;br /&gt;       &amp;lt;/mx:Script&amp;gt;&lt;br /&gt;       &amp;lt;mx:Label id="lblUserStatus" /&amp;gt;&lt;br /&gt;&amp;lt;/mx:WindowedApplication&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6074755521408329271-4676524381113941334?l=madhupanisetty.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://madhupanisetty.blogspot.com/feeds/4676524381113941334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6074755521408329271&amp;postID=4676524381113941334' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/4676524381113941334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/4676524381113941334'/><link rel='alternate' type='text/html' href='http://madhupanisetty.blogspot.com/2008/12/checking-user-is-idle-or-not-in-air.html' title='Checking user is idle or not in AIR'/><author><name>madhu</name><uri>http://www.blogger.com/profile/14032413650346846702</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6074755521408329271.post-6806596795108287312</id><published>2008-12-02T12:39:00.003+05:30</published><updated>2008-12-02T13:14:54.327+05:30</updated><title type='text'>Maximising an air application on startup</title><content type='html'>Maximising an air application on startup&lt;br /&gt;&lt;br /&gt;dont forgot to use in &lt;span style="font-weight:bold;"&gt;applicationComplete&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;&amp;lt;mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"&lt;br /&gt; applicationComplete="onApplicationComplete();"&amp;gt;&lt;br /&gt;&lt;br /&gt; &amp;lt;mx:Script&amp;gt;&lt;br /&gt;     &amp;lt;![CDATA[&lt;br /&gt;      &lt;br /&gt;         private function onApplicationComplete():void {&lt;br /&gt;             stage.nativeWindow.maximize();         &lt;br /&gt;         }&lt;br /&gt;      &lt;br /&gt;     ]]&amp;gt;&lt;br /&gt; &amp;lt;/mx:Script&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/mx:WindowedApplication&amp;gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.madhu.qsh.in"&gt;Madhu :)&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6074755521408329271-6806596795108287312?l=madhupanisetty.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://madhupanisetty.blogspot.com/feeds/6806596795108287312/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6074755521408329271&amp;postID=6806596795108287312' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/6806596795108287312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/6806596795108287312'/><link rel='alternate' type='text/html' href='http://madhupanisetty.blogspot.com/2008/12/maximising-air-application-on-startup.html' title='Maximising an air application on startup'/><author><name>madhu</name><uri>http://www.blogger.com/profile/14032413650346846702</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6074755521408329271.post-5479331767254852356</id><published>2008-11-26T12:29:00.000+05:30</published><updated>2008-11-26T12:55:24.853+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='flex errors'/><title type='text'>"Process Terminated without connecting to debugger" in flex</title><content type='html'>I got this error while debugging some complex code of AIR application, and then i was unable to even run the application. I closed flex builder and opened again still its not running and not even debug is working. Only after restarting my system it started working.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Error shown&lt;/span&gt;:&lt;br /&gt;Process terminated without establishing connection to debugger.&lt;br /&gt;&lt;br /&gt;Command:&lt;br /&gt;"C:\Program Files\Adobe\Flex Builder 3 Trial\sdks\3.0.0\bin\adl.exe" E:\madhu\learning\flex\BindingToMethod\bin-debug\BindingToMethod-app.xml E:\madhu\learning\flex\BindingToMethod\bin-debug&lt;br /&gt;&lt;br /&gt;Output from command:&lt;br /&gt;invocation forwarded to primary instance&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;check this image&lt;/span&gt;:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_3CGtwfdMFI4/SSz1c3g75gI/AAAAAAAAACY/x0W14A0LGjg/s1600-h/flex_debug_error.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 186px;" src="http://1.bp.blogspot.com/_3CGtwfdMFI4/SSz1c3g75gI/AAAAAAAAACY/x0W14A0LGjg/s320/flex_debug_error.JPG" alt="" id="BLOGGER_PHOTO_ID_5272859140031243778" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Reason for issue:&lt;/span&gt;&lt;br /&gt;This occurs when there is already another debugger running.&lt;br /&gt;For more info check this link&lt;br /&gt;&lt;a href="http://bugs.adobe.com/jira/browse/FB-11037"&gt;http://bugs.adobe.com/jira/browse/FB-11037&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;/span&gt;&lt;br /&gt;1. Close flex builder&lt;br /&gt;2. Open task manager&lt;br /&gt;3. kill the process ALD.exe&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_3CGtwfdMFI4/SSz4VJEcckI/AAAAAAAAACg/I4poMCSLDpc/s1600-h/killing+ald.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 271px; height: 320px;" src="http://3.bp.blogspot.com/_3CGtwfdMFI4/SSz4VJEcckI/AAAAAAAAACg/I4poMCSLDpc/s320/killing+ald.JPG" alt="" id="BLOGGER_PHOTO_ID_5272862305839510082" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thats it, you can work now with out any problem.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.madhu.qsh.in"&gt;Madhu :)&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6074755521408329271-5479331767254852356?l=madhupanisetty.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://madhupanisetty.blogspot.com/feeds/5479331767254852356/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6074755521408329271&amp;postID=5479331767254852356' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/5479331767254852356'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/5479331767254852356'/><link rel='alternate' type='text/html' href='http://madhupanisetty.blogspot.com/2008/11/process-terminated-without-connecting.html' title='&quot;Process Terminated without connecting to debugger&quot; in flex'/><author><name>madhu</name><uri>http://www.blogger.com/profile/14032413650346846702</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_3CGtwfdMFI4/SSz1c3g75gI/AAAAAAAAACY/x0W14A0LGjg/s72-c/flex_debug_error.JPG' height='72' width='72'/><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6074755521408329271.post-8986952948955161071</id><published>2008-06-03T13:08:00.000+05:30</published><updated>2008-06-03T13:22:41.723+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='sql server 2005'/><title type='text'>Enabling Ole Automation Procedures</title><content type='html'>&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;When you want to initilise a com component (&lt;/span&gt;&lt;span style=""&gt;sp_OACreate&lt;/span&gt;&lt;span style=""&gt;) or call a method (&lt;/span&gt;&lt;span style=""&gt;sp_OAMethod&lt;/span&gt;&lt;span style=""&gt;) of com component we have to use &lt;b&gt;Ole Automation Procedures.&lt;/b&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;If we use those procedures we get error like&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoBodyText" style="text-align: justify; color: rgb(255, 0, 0);"&gt;SQL Server blocked access to procedure 'sys.sp_OACreate' of component 'Ole Automation Procedures' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'Ole Automation Procedures' by using sp_configure. For more information about enabling 'Ole Automation Procedures', see "Surface Area Configuration" in SQL Server Books Online.&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;This is because by default &lt;b&gt;Ole Automation Procedures&lt;/b&gt; are disabled for security reasons. To avoid this error we need to enabled &lt;b&gt;Ole Automation Procedures&lt;/b&gt;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;Lets see steps for enabling &lt;b&gt;Ole Automation Procedures&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;1. Open &lt;b&gt;SQL Server &lt;/b&gt;&lt;b&gt;&lt;span style=""&gt;Surface Area Configuration &lt;/span&gt;&lt;/b&gt;&lt;span style=""&gt;tool from&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style=""&gt;start menu &gt; program files &gt; Microsoft SQL Server 2005 &gt;  Configuration Tools &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shapetype id="_x0000_t75" coordsize="21600,21600" spt="75" preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"&gt;  &lt;v:stroke joinstyle="miter"&gt;  &lt;v:formulas&gt;   &lt;v:f eqn="if lineDrawn pixelLineWidth 0"&gt;   &lt;v:f eqn="sum @0 1 0"&gt;   &lt;v:f eqn="sum 0 0 @1"&gt;   &lt;v:f eqn="prod @2 1 2"&gt;   &lt;v:f eqn="prod @3 21600 pixelWidth"&gt;   &lt;v:f eqn="prod @3 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @0 0 1"&gt;   &lt;v:f eqn="prod @6 1 2"&gt;   &lt;v:f eqn="prod @7 21600 pixelWidth"&gt;   &lt;v:f eqn="sum @8 21600 0"&gt;   &lt;v:f eqn="prod @7 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @10 21600 0"&gt;  &lt;/v:formulas&gt;  &lt;v:path extrusionok="f" gradientshapeok="t" connecttype="rect"&gt;  &lt;o:lock ext="edit" aspectratio="t"&gt; &lt;/v:shapetype&gt;&lt;v:shape id="_x0000_i1025" type="#_x0000_t75" style="'width:413.25pt;" ole=""&gt;  &lt;v:imagedata src="file:///C:/DOCUME~1/Madhu/LOCALS~1/Temp/msoclip1/01/clip_image001.png" title=""&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_3CGtwfdMFI4/SET1kgSSnyI/AAAAAAAAAB8/F4xOlLjqJbc/s1600-h/image002.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 470px; height: 55px;" src="http://3.bp.blogspot.com/_3CGtwfdMFI4/SET1kgSSnyI/AAAAAAAAAB8/F4xOlLjqJbc/s320/image002.jpg" alt="" id="BLOGGER_PHOTO_ID_5207557076637884194" border="0" /&gt;&lt;/a&gt;&lt;!--[endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;o:oleobject type="Embed" progid="PBrush" shapeid="_x0000_i1025" drawaspect="Content" objectid="_1274003678"&gt;  &lt;/o:OLEObject&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;2. Open &lt;b&gt;Surface Area Configuration for Features&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_i1026" type="#_x0000_t75" style="'width:362.25pt;height:110.25pt'" ole=""&gt;  &lt;v:imagedata src="file:///C:/DOCUME~1/Madhu/LOCALS~1/Temp/msoclip1/01/clip_image003.png" title=""&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_3CGtwfdMFI4/SET1k-FxwYI/AAAAAAAAACE/-uY4zQmF2WU/s1600-h/image004.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 469px; height: 97px;" src="http://3.bp.blogspot.com/_3CGtwfdMFI4/SET1k-FxwYI/AAAAAAAAACE/-uY4zQmF2WU/s320/image004.jpg" alt="" id="BLOGGER_PHOTO_ID_5207557084638462338" border="0" /&gt;&lt;/a&gt;&lt;!--[endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;o:oleobject type="Embed" progid="PBrush" shapeid="_x0000_i1026" drawaspect="Content" objectid="_1274003679"&gt;  &lt;/o:OLEObject&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;3. Select &lt;b&gt;OLE Automation&lt;/b&gt; and check the box &lt;b&gt;Enable OLE Automation&lt;/b&gt; &lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_i1027" type="#_x0000_t75" style="'width:6in;height:258.75pt'" ole=""&gt;  &lt;v:imagedata src="file:///C:/DOCUME~1/Madhu/LOCALS~1/Temp/msoclip1/01/clip_image005.png" title=""&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_3CGtwfdMFI4/SET1lBQGjQI/AAAAAAAAACM/sCf3amBxejA/s1600-h/image006.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 513px; height: 307px;" src="http://1.bp.blogspot.com/_3CGtwfdMFI4/SET1lBQGjQI/AAAAAAAAACM/sCf3amBxejA/s320/image006.jpg" alt="" id="BLOGGER_PHOTO_ID_5207557085487074562" border="0" /&gt;&lt;/a&gt;&lt;!--[endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;o:oleobject type="Embed" progid="PBrush" shapeid="_x0000_i1027" drawaspect="Content" objectid="_1274003680"&gt;  &lt;/o:OLEObject&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;4. Click Apply&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-align: justify;"&gt;Now you can use &lt;b&gt;&lt;span style=""&gt;Ole Automation Procedures&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;Madhu :-)&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;b&gt;&lt;span style=""&gt;&lt;a href="http://www.madhu.qsh.in"&gt;www.madhu.qsh.in&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6074755521408329271-8986952948955161071?l=madhupanisetty.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://madhupanisetty.blogspot.com/feeds/8986952948955161071/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6074755521408329271&amp;postID=8986952948955161071' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/8986952948955161071'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/8986952948955161071'/><link rel='alternate' type='text/html' href='http://madhupanisetty.blogspot.com/2008/06/enabling-ole-automation-procedures.html' title='Enabling Ole Automation Procedures'/><author><name>madhu</name><uri>http://www.blogger.com/profile/14032413650346846702</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_3CGtwfdMFI4/SET1kgSSnyI/AAAAAAAAAB8/F4xOlLjqJbc/s72-c/image002.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6074755521408329271.post-5037212098106025193</id><published>2008-03-21T00:02:00.000+05:30</published><updated>2008-06-10T19:47:13.787+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='softwares'/><title type='text'>licenced software free for a day :)</title><content type='html'>&lt;div&gt;Hi,&lt;/div&gt;&lt;br /&gt;&lt;div&gt;      This is my first blog, and I hope this will be really helpful to you all.&lt;/div&gt;&lt;br /&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;&lt;div&gt;How do you think if we get a software, I mean licenced software free to use personally. I hope its difficult for us to buy each and every software, even its found to be worth using. So what if we get those softwares free of cost, that too licenced versions. I dont think its possible, what we may get is only open source softwares, but no I found a place where we get licenced versions free of cost. Its a new project to help the people like us to get free softwares and also it helps the software developers as an adversisement.&lt;/div&gt;&lt;br /&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;&lt;div&gt;I was surprised to hear that this projet team is paying money for the software developers, just for us to download. I am happy and exited on seeing this site, its worth a watch. Only limitation is that they wont give softwares free of cost all time, they only give you one software a day for free of cost. You have to download that software if you found really worth using, and you get licenced version.&lt;/div&gt;&lt;br /&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;&lt;div&gt;just visit &lt;a href="http://www.giveawayoftheday.com/"&gt;http://www.giveawayoftheday.com/&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;you will really enjoy this site, worth watching daily once, also if you are busy, you can subscribe to your email, so that you get the new software that is free as an email.&lt;/div&gt;&lt;br /&gt;&lt;div&gt; &lt;/div&gt;&lt;br /&gt;&lt;div&gt;MadhU :)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6074755521408329271-5037212098106025193?l=madhupanisetty.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://madhupanisetty.blogspot.com/feeds/5037212098106025193/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6074755521408329271&amp;postID=5037212098106025193' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/5037212098106025193'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6074755521408329271/posts/default/5037212098106025193'/><link rel='alternate' type='text/html' href='http://madhupanisetty.blogspot.com/2008/03/licenced-software-free-for-day.html' title='licenced software free for a day :)'/><author><name>madhu</name><uri>http://www.blogger.com/profile/14032413650346846702</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
