<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>António Vargas, Author at Blog IT</title>
	<atom:link href="https://blogit.create.pt/author/antoniovargas/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Create IT blogger community</description>
	<lastBuildDate>Thu, 10 Jan 2019 14:15:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>&#124;create&#124;it&#124; wins the Best Public Website award</title>
		<link>https://blogit.create.pt/antoniovargas/2012/02/02/createit-wins-the-best-public-website-award/</link>
					<comments>https://blogit.create.pt/antoniovargas/2012/02/02/createit-wins-the-best-public-website-award/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Thu, 02 Feb 2012 09:27:57 +0000</pubDate>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=41</guid>

					<description><![CDATA[<p>I´m proud to annunciate that create&#124;it&#124; (the company where i work) is the winner of the European SharePoint Community Awards 2012 in the “Best Puplic Website” category. So many months of hard team work to make the better for the Pestana Websites using SharePoint 2010 environment. I&#8217;m a member of the fantastic team that work [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2012/02/02/createit-wins-the-best-public-website-award/">|create|it| wins the Best Public Website award</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I´m proud to annunciate that create|it| (the company where i work) is the winner of the European SharePoint Community Awards 2012 in the “Best Puplic Website” category.</p>
<p>So many months of hard team work to make the better for the Pestana Websites using SharePoint 2010 environment.</p>
<p>I&#8217;m a member of the fantastic team that work in this project and I want to congratulate everyone (my colleagues, my company, the client stakeholders, the design company).</p>
<p>For more information about this award:</p>
<p><a href="http://sharepointeurope.com/content/award-winners-2012.aspx">http://sharepointeurope.com/content/award-winners-2012.aspx</a></p>
<p>Pestana Websites:</p>
<p><a href="http://www.pestana.com">http://www.pestana.com</a></p>
<p><a href="http://www.pousadas.pt">http://www.pousadas.pt</a></p>
<p><a href="http://www.pestanapriority.com">http://www.pestanapriority.com</a></p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2012/02/02/createit-wins-the-best-public-website-award/">|create|it| wins the Best Public Website award</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2012/02/02/createit-wins-the-best-public-website-award/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Using Application library caching</title>
		<link>https://blogit.create.pt/antoniovargas/2010/06/23/using-application-library-caching/</link>
					<comments>https://blogit.create.pt/antoniovargas/2010/06/23/using-application-library-caching/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Wed, 23 Jun 2010 17:24:47 +0000</pubDate>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Microsoft]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=61</guid>

					<description><![CDATA[<p>If you have a Silverlight application (framework 3.0 or superior) which the XAP file is sizable and the application has performance problems, you should put the project references in separate files using application library caching. You can follow this MSDN article that explains all that you need to implement Silverlight application library caching. Basically, the [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/06/23/using-application-library-caching/">Using Application library caching</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you have a Silverlight application (framework 3.0 or superior) which the XAP file is sizable and the application has performance problems, you should put the project references in separate files using application library caching.</p>
<p>You can follow this <a href="http://msdn.microsoft.com/en-us/library/dd833069%28VS.95%29.aspx" target="_blank">MSDN article</a> that explains all that you need to implement Silverlight application library caching.</p>
<p>Basically, the Silverlight packages specifies assemblies as external parts of the application package (a zip file that contains the assembly dll). Then, it will download all of the required package parts specified on application manifest.</p>
<p>To do this, you just need to create a xml file named <strong>&lt;assembly name without extension&gt;.extmap.xml</strong>. It must have content similar like this:</p>
<div id="codeSnippetWrapper">
<div id="codeSnippet">
<pre><span style="color: #0000ff">&lt;?</span><span style="color: #800000">xml</span> <span style="color: #ff0000">version</span><span style="color: #0000ff">=&quot;1.0&quot;</span>?<span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></p>
<pre><span style="color: #0000ff">&lt;</span><span style="color: #800000">manifest</span> <span style="color: #ff0000">xmlns:xsi</span><span style="color: #0000ff">=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span> </pre>
<p><!--CRLF--></p>
<pre>          <span style="color: #ff0000">xmlns:xsd</span><span style="color: #0000ff">=&quot;http://www.w3.org/2001/XMLSchema&quot;</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></p>
<pre>  <span style="color: #0000ff">&lt;</span><span style="color: #800000">assembly</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></p>
<pre>    <span style="color: #0000ff">&lt;</span><span style="color: #800000">name</span><span style="color: #0000ff">&gt;</span>System.Json<span style="color: #0000ff">&lt;/</span><span style="color: #800000">name</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></p>
<pre>    <span style="color: #0000ff">&lt;</span><span style="color: #800000">version</span><span style="color: #0000ff">&gt;</span>2.0.5.0<span style="color: #0000ff">&lt;/</span><span style="color: #800000">version</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></p>
<pre>    <span style="color: #0000ff">&lt;</span><span style="color: #800000">publickeytoken</span><span style="color: #0000ff">&gt;</span>31bf3856ad364e35<span style="color: #0000ff">&lt;/</span><span style="color: #800000">publickeytoken</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></p>
<pre>    <span style="color: #0000ff">&lt;</span><span style="color: #800000">relpath</span><span style="color: #0000ff">&gt;</span>System.Json.dll<span style="color: #0000ff">&lt;/</span><span style="color: #800000">relpath</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></p>
<pre>    <span style="color: #0000ff">&lt;</span><span style="color: #800000">extension</span> <span style="color: #ff0000">downloadUri</span><span style="color: #0000ff">=&quot;System.Json.zip&quot;</span> <span style="color: #0000ff">/&gt;</span></pre>
<p><!--CRLF--></p>
<pre>  <span style="color: #0000ff">&lt;/</span><span style="color: #800000">assembly</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></p>
<pre><span style="color: #0000ff">&lt;/</span><span style="color: #800000">manifest</span><span style="color: #0000ff">&gt;</span></pre>
<p><!--CRLF--></div>
</div>
<p>File Elements Description:</p>
<ul>
<li><strong>name</strong> – Assembly name</li>
<li><strong>version</strong> – Assembly version</li>
<li><strong>publickeytoken</strong> – Key token which you used to sign the assembly.</li>
<li><strong>relpath</strong> – Assembly file name.</li>
<li><strong>extension</strong> – Uri where it’s possible to download the assembly package.</li>
</ul>
<p><p><strong>Note:</strong> You cannot use the application library caching on out-of-browser applications.</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/06/23/using-application-library-caching/">Using Application library caching</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2010/06/23/using-application-library-caching/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Silverlight tips for designers</title>
		<link>https://blogit.create.pt/antoniovargas/2010/06/21/silverlight-tips-for-designers/</link>
					<comments>https://blogit.create.pt/antoniovargas/2010/06/21/silverlight-tips-for-designers/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Mon, 21 Jun 2010 15:46:00 +0000</pubDate>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Microsoft]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=81</guid>

					<description><![CDATA[<p>If you&#039;re doing a Silverlight-based project that are involving a web design team, don&#8217;t forget to tell to designer to ensure the following tips: Only use images with 92 dpi (the designers are habituated to use images with 72 dpi, and they should only use images with 92 dpi because Silverlight always use this resolution). [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/06/21/silverlight-tips-for-designers/">Silverlight tips for designers</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you&#039;re doing a Silverlight-based project that are involving a web design team, don&rsquo;t forget to tell to designer to ensure the following tips:</p>
<ul>
<li>Only <strong>use images with 92 dpi</strong> (the designers are habituated to use images with 72 dpi, and they should only use images with 92 dpi because Silverlight always use this resolution).</li>
<li>To import the design mockup to Expression Blend, the designer should use the <a href="http://en.wikipedia.org/wiki/RGB_color_model" target="_blank"><strong>RGB</strong></a><strong> as the color model</strong>.</li>
</ul>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/06/21/silverlight-tips-for-designers/">Silverlight tips for designers</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2010/06/21/silverlight-tips-for-designers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Customizing a page on SharePoint 2010</title>
		<link>https://blogit.create.pt/antoniovargas/2010/06/11/customizing-a-page-on-sharepoint-2010/</link>
					<comments>https://blogit.create.pt/antoniovargas/2010/06/11/customizing-a-page-on-sharepoint-2010/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Fri, 11 Jun 2010 14:53:00 +0000</pubDate>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=101</guid>

					<description><![CDATA[<p>In the last week, I needed to customize a native page on SharePoint 2010 for a specified project. After I&#8217;ve done some searches on my feeds, I found a great article which it explains how to customize some parts of the SharePoint page. This article focuses to customize the ribbon positioning in SharePoint 2010 master [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/06/11/customizing-a-page-on-sharepoint-2010/">Customizing a page on SharePoint 2010</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In the last week, I needed to customize a native page on SharePoint 2010 for a specified project. After I&rsquo;ve done some searches on my feeds, I found <a href="http://blogs.msdn.com/b/sharepoint/archive/2010/04/06/customizing-ribbon-positioning-in-sharepoint-2010-master-pages.aspx" target="_blank">a great article</a> which it explains how to customize some parts of the SharePoint page.</p>
<p>This <a href="http://blogs.msdn.com/b/sharepoint/archive/2010/04/06/customizing-ribbon-positioning-in-sharepoint-2010-master-pages.aspx" target="_blank">article</a> focuses to customize the ribbon positioning in SharePoint 2010 master pages, but it explains all that i needed to known.</p>
<p>Followed (and tested on my dev environment) by the article, you must to ensure that you have the following containers on your SharePoint master page:</p>
<ul>
<li><strong>Ribbon container</strong> &ndash; Div which the control id is <strong>s4-ribbonrow</strong>. You need it to put the SharePoint ribbon.</li>
<li><strong>Body container</strong> &ndash; Div which the control id is <strong>s4-workspace</strong> and an inner div which the control id is <strong>s4-bodyContainer</strong>. You need it to put your page content.</li>
</ul>
<p>I&#039;d a webpart zone on my page content (inside the page layout), and the only problem was when I tried to change the webpart settings, because I didn&rsquo;t saw the settings control (the SharePoint rendered the control outside the body container).</p>
<p>To fix that (I spent a lot of time debugging), you need to ensure that you&rsquo;ve a div (which control id is <strong>MSO_ContentDiv</strong>) on you page content. It&rsquo;s necessary, because when you want to change the webpart settings the SharePoint will render the settings control inside this div.</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/06/11/customizing-a-page-on-sharepoint-2010/">Customizing a page on SharePoint 2010</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2010/06/11/customizing-a-page-on-sharepoint-2010/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The Taxonomy feature has not been activated</title>
		<link>https://blogit.create.pt/antoniovargas/2010/03/08/the-taxonomy-feature-has-not-been-activated/</link>
					<comments>https://blogit.create.pt/antoniovargas/2010/03/08/the-taxonomy-feature-has-not-been-activated/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Mon, 08 Mar 2010 11:57:50 +0000</pubDate>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=121</guid>

					<description><![CDATA[<p>If you’re trying to create a managed metadata site column type on SharePoint Server 2010 Beta and it’s returning the following error: The Taxonomy feature (Feature ID &#34;73EF14B1-13A9-416b-A9B5-ECECA2B0604C&#34;) has not been activated. Check this post. Basically, you need to run the following command in the Command Prompt: STSADM -o activatefeature -id 73EF14B1-13A9-416b-A9B5-ECECA2B0604C -url http://&#60;server&#62; –force [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/03/08/the-taxonomy-feature-has-not-been-activated/">The Taxonomy feature has not been activated</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you’re trying to create a managed metadata site column type on SharePoint Server 2010 Beta and it’s returning the following error:</p>
<p>The Taxonomy feature (Feature ID &quot;73EF14B1-13A9-416b-A9B5-ECECA2B0604C&quot;) has not been activated.</p>
<p>Check this <a href="http://www.whatsthepointofsharing.com/?p=624" target="_blank">post</a>.</p>
<p>Basically, you need to run the following command in the Command Prompt:</p>
<p><strong>STSADM -o activatefeature -id 73EF14B1-13A9-416b-A9B5-ECECA2B0604C -url http://&lt;server&gt; –force</strong></p>
<p>Don’t forget to change <strong>&lt;server&gt;</strong> to the name of your SharePoint server.</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/03/08/the-taxonomy-feature-has-not-been-activated/">The Taxonomy feature has not been activated</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2010/03/08/the-taxonomy-feature-has-not-been-activated/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Using Deployment setting on Production Environment</title>
		<link>https://blogit.create.pt/antoniovargas/2010/03/02/using-deployment-setting-on-production-environment/</link>
					<comments>https://blogit.create.pt/antoniovargas/2010/03/02/using-deployment-setting-on-production-environment/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Tue, 02 Mar 2010 05:02:00 +0000</pubDate>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[.NET]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=141</guid>

					<description><![CDATA[<p>When i studied for the Microsoft exam (70-562, Microsoft .NET Framework 3.5, ASP.NET Application Development) i found an interesting setting that i didn&#8217;t known, the Deployment. This configuration setting ensures that your application will override important application level settings used when you developed your web application. It will ensure that the following configurations are done: [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/03/02/using-deployment-setting-on-production-environment/">Using Deployment setting on Production Environment</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When i studied for the <a href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-562&amp;locale=en-us">Microsoft exam (70-562, Microsoft .NET Framework 3.5, ASP.NET Application Development)</a> i found an interesting setting that i didn&rsquo;t known, the Deployment.</p>
<p>This configuration setting ensures that your application will override important application level settings used when you developed your web application. It will ensure that the following configurations are done:</p>
<ul>
<li>debug is set to false</li>
<li>page output tracing is disabled</li>
<li>force customErrors to be shown to remote users (it will ensure that the end user only see friendly error messages)</li>
</ul>
<p>If you want to activate this setting, you need to put the following configuration on the machine.config:</p>
<p>&lt;configuration&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;system.web&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>&lt;deployment retail=&quot;true&quot;/&gt;</strong></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/system.web&gt;</p>
<p>&lt;/configuration&gt;</p>
<p>Some references:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/ms228298.aspx" title="http://msdn.microsoft.com/en-us/library/ms228298.aspx">deployment Element (ASP.NET Settings Schema)</a></li>
<li><a href="http://daptivate.com/archive/2008/02/12/top-10-best-practices-for-production-asp-net-applications.aspx">Top 10 Best Practices for Production ASP.NET Applications</a></li>
</ul>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/03/02/using-deployment-setting-on-production-environment/">Using Deployment setting on Production Environment</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2010/03/02/using-deployment-setting-on-production-environment/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Visual Studio Build Error (HRESULT 0x80131515)</title>
		<link>https://blogit.create.pt/antoniovargas/2010/02/04/visual-studio-build-error-hresult-0x80131515/</link>
					<comments>https://blogit.create.pt/antoniovargas/2010/02/04/visual-studio-build-error-hresult-0x80131515/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Thu, 04 Feb 2010 06:58:03 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=161</guid>

					<description><![CDATA[<p>Today I&#8217;ve tested the Silverlight Validation Framework&#160; in the Visual Studio 2010 beta 2. I downloaded the assemblies, then i added the assembly references on the project, and then i tried to compile the project. But the compiler found the following error message: I found solution to fix this on the Rob’s blog. To fix [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/02/04/visual-studio-build-error-hresult-0x80131515/">Visual Studio Build Error (HRESULT 0x80131515)</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Today I&#8217;ve tested the <a href="http://silverlightvalidate.codeplex.com/">Silverlight Validation Framework</a>&#160; in the Visual Studio 2010 beta 2. </p>
<p>I downloaded the assemblies, then i added the assembly references on the project, and then i tried to compile the project. But the compiler found the following error message: </p>
<p> <img fetchpriority="high" decoding="async" style="float: none;margin-left: auto;margin-right: auto" src="http://img195.imageshack.us/img195/9129/69118460.png" width="518" height="186">   </p>
<p>I found solution to fix this on the <a href="http://cantgrokwontgrok.blogspot.com/2009/10/visual-studio-unknown-build-error.html">Rob’s blog</a>. </p>
<p>To fix this you need to open the Properties for each assembly (via file system) and then click Unlock as you can see in the following screenshot:</p>
<p> <img decoding="async" style="float: none;margin-left: auto;margin-right: auto" src="http://img688.imageshack.us/img688/593/73014862.png" width="512" height="344"></p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/02/04/visual-studio-build-error-hresult-0x80131515/">Visual Studio Build Error (HRESULT 0x80131515)</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2010/02/04/visual-studio-build-error-hresult-0x80131515/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to create a Text Box control in Multiline mode</title>
		<link>https://blogit.create.pt/antoniovargas/2010/02/01/how-to-create-a-text-box-control-in-multiline-mode/</link>
					<comments>https://blogit.create.pt/antoniovargas/2010/02/01/how-to-create-a-text-box-control-in-multiline-mode/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Mon, 01 Feb 2010 13:57:19 +0000</pubDate>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Microsoft]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=181</guid>

					<description><![CDATA[<p>If you need to create a Tex Box control in Multiline mode as you can do in the ASP.NET, check this tip. You just need to add the AcceptReturn property on your Text Box control as the following sample: &#60;TextBox x:Name=&#34;textBox1&#34; AcceptsReturn=&#34;True&#34;&#62;&#60;/TextBox&#62;</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/02/01/how-to-create-a-text-box-control-in-multiline-mode/">How to create a Text Box control in Multiline mode</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you need to create a Tex Box control in Multiline mode as you can do in the ASP.NET, check <a href="http://www.silverlightshow.net/tips/How-to-make-a-text-box-multi-line.aspx">this tip</a>.</p>
<p>You just need to add the AcceptReturn property on your Text Box control as the following sample:</p>
<p>&lt;TextBox x:Name=&quot;textBox1&quot; <strong>AcceptsReturn=&quot;True&quot;</strong>&gt;&lt;/TextBox&gt;</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/02/01/how-to-create-a-text-box-control-in-multiline-mode/">How to create a Text Box control in Multiline mode</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2010/02/01/how-to-create-a-text-box-control-in-multiline-mode/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Reset Identity value</title>
		<link>https://blogit.create.pt/antoniovargas/2010/01/12/reset-identity-value/</link>
					<comments>https://blogit.create.pt/antoniovargas/2010/01/12/reset-identity-value/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Tue, 12 Jan 2010 10:55:00 +0000</pubDate>
				<category><![CDATA[Sql Server]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=201</guid>

					<description><![CDATA[<p>Today, i needed to reset the Identity value for one column in the SQL Server database. I used the following commando to view the current identity value: DBCC CHECKIDENT (&#039;TableName1&#039;, NORESEED) and then, it returned the following message: Checking identity information: current identity value &#039;53&#039;, current column value &#039;53&#039;. DBCC execution completed. If DBCC printed [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/01/12/reset-identity-value/">Reset Identity value</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Today, i needed to reset the Identity value for one column in the SQL Server database.</p>
<p>I used the following commando to view the current identity value:</p>
<p><strong>DBCC CHECKIDENT (&#039;TableName1&#039;, NORESEED)</strong></p>
<p>and then, it returned the following message:</p>
<p><em>Checking identity information: current identity value &#039;53&#039;, current column value &#039;53&#039;.   <br />DBCC execution completed. If DBCC printed error messages, contact your system administrator.</em></p>
<p>Finally, after I&#039;ve checked the current identity value, i needed to reset this value and I&#039;ve used the following command:</p>
<p><strong>DBCC CHECKIDENT (TableName1, RESEED, 0)</strong></p>
<p>and then, it returned the following message:&nbsp; </p>
<p><em>Checking identity information: current identity value &#039;53&#039;, current column value &#039;0&#039;.   <br />DBCC execution completed. If DBCC printed error messages, contact your system administrator.</em></p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2010/01/12/reset-identity-value/">Reset Identity value</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2010/01/12/reset-identity-value/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Excel Services: Using REST to get data</title>
		<link>https://blogit.create.pt/antoniovargas/2009/12/06/excel-services-using-rest-to-get-data/</link>
					<comments>https://blogit.create.pt/antoniovargas/2009/12/06/excel-services-using-rest-to-get-data/#respond</comments>
		
		<dc:creator><![CDATA[António Vargas]]></dc:creator>
		<pubDate>Sun, 06 Dec 2009 12:33:00 +0000</pubDate>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint]]></category>
		<guid isPermaLink="false">http://blogcreate.azurewebsites.net/antoniovargas/?p=221</guid>

					<description><![CDATA[<p>Now with SharePoint 2010 we are be able to use REST to getting excel file data using Excel Services. The syntax is very simple and quickly to understand. I will leave here some samples of how you can use REST to get data. To access to your Excel file, you can use the following link: [&#8230;]</p>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2009/12/06/excel-services-using-rest-to-get-data/">Excel Services: Using REST to get data</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Now with SharePoint 2010 we are be able to use REST to getting excel file data using Excel Services.</p>
<p>The syntax is very simple and quickly to understand. I will leave here some samples of how you can use REST to get data.</p>
<p>To access to your Excel file, you can use the following link:</p>
<p>http://<em><strong>&lt;site&gt;</strong></em>/_vti_bin/ExcelRest.aspx/<em><strong>&lt;library&gt;</strong></em>/<strong><em>&lt;file&gt;</em></strong>/Model</p>
<ul>
<li>&lt;site&gt; &ndash; SharePoint site (such as createit:8080) </li>
<li>&lt;library&gt; &ndash; SharePoint document library that contains the excel file (such as Profits) </li>
<li>&lt;file&gt; &ndash; The Excel file that you want to getting data (such as ProfitsV2.xlsx) </li>
</ul>
<p>And then you will be able to get some different type of data as the following samples:</p>
<p>Used Excel file screenshot (to compare with data results using REST):</p>
<blockquote>
<p><img decoding="async" src="http://img412.imageshack.us/img412/9775/97750206.png"></p>
</blockquote>
<p>&nbsp;</p>
<ul>
<li><strong>Get workbook (ATOM format)</strong></li>
</ul>
<blockquote>
<p>http://createbox/devplatform/_vti_bin/ExcelRest.aspx/Simulators/WorldMarkets.xlsx<strong>/Model</strong></p>
</blockquote>
<blockquote>
<p><img decoding="async" src="http://img13.imageshack.us/img13/150/30733637.png"></p>
</blockquote>
<p>&nbsp;</p>
<ul>
<li><strong>Get a range (HTML format)</strong></li>
</ul>
<blockquote>
<p>http://createbox/devplatform/_vti_bin/ExcelRest.aspx/Simulators/WorldMarkets.xlsx/Model<strong>/Ranges(&#039;WorldMarkets&#039;)</strong></p>
</blockquote>
<blockquote>
<p><img decoding="async" src="http://img527.imageshack.us/img527/9138/68384976.png"></p>
</blockquote>
<ul>
<li><strong>Get a range (ATOM format)</strong></li>
</ul>
<blockquote>
<p>http://createbox/devplatform/_vti_bin/ExcelRest.aspx/Simulators/WorldMarkets.xlsx/Model/Ranges(&#039;WorldMarkets&#039;)<strong>?$format=atom</strong></p>
</blockquote>
<blockquote>
<p><img decoding="async" src="http://img704.imageshack.us/img704/2078/69003795.png"></p>
</blockquote>
<p>&nbsp;</p>
<ul>
<li><strong>Get a graphic (Image format)</strong></li>
</ul>
<blockquote>
<p>http://createbox/devplatform/_vti_bin/ExcelRest.aspx/Simulators/WorldMarkets.xlsx/Model<strong>/Charts(&#039;Chart%201&#039;)?$format=image</strong></p>
</blockquote>
<blockquote>
<p><img decoding="async" src="http://img205.imageshack.us/img205/5079/51025844.png"></p>
</blockquote>
<p>The post <a href="https://blogit.create.pt/antoniovargas/2009/12/06/excel-services-using-rest-to-get-data/">Excel Services: Using REST to get data</a> appeared first on <a href="https://blogit.create.pt">Blog IT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blogit.create.pt/antoniovargas/2009/12/06/excel-services-using-rest-to-get-data/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
