<?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>CP - Help, Answers, Tips, Questions about software, hardware and other stuff &#187; processing</title>
	<atom:link href="http://computersplace.net/tag/processing/feed" rel="self" type="application/rss+xml" />
	<link>http://computersplace.net</link>
	<description>Reviews, Answers on software, laptop, computer, hardware, spyware, printer</description>
	<lastBuildDate>Sat, 04 Sep 2010 18:03:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Programatically show processing screen ( Using SPLongOperation )</title>
		<link>http://computersplace.net/articles-review/programatically-show-processing-screen-splongoperation.html</link>
		<comments>http://computersplace.net/articles-review/programatically-show-processing-screen-splongoperation.html#comments</comments>
		<pubDate>Mon, 19 Jul 2010 16:03:02 +0000</pubDate>
		<dc:creator>Marco C</dc:creator>
				<category><![CDATA[Articles Review]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[Programatically]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[SPLongOperation]]></category>

		<guid isPermaLink="false">http://computersplace.net/articles-review/programatically-show-processing-screen-splongoperation.html</guid>
		<description><![CDATA[how to programatically show processing screen ( Using SPLongOperation )

It would be nice if we could show a processing like the below that comes out of the box in Sharepoint 2010 which says &#8220;Processing&#8230; Please wait while your changes are processed.&#8221;


This can be achieved programatically by the following code
SPLongOperation.BeginOperation beginOperation = null;

if (beginOperation == null)
{
 [...]]]></description>
			<content:encoded><![CDATA[<h3>how to programatically show processing screen ( Using SPLongOperation )</h3>
<p>
It would be nice if we could show a processing like the below that comes out of the box in Sharepoint 2010 which says &#8220;Processing&#8230; Please wait while your changes are processed.&#8221;</p>
<div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/_g-JN_WB_wo4/S89wWt_bmAI/AAAAAAAAAbo/tWH4XWe3m3c/s1600/Processing.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="228" src="http://3.bp.blogspot.com/_g-JN_WB_wo4/S89wWt_bmAI/AAAAAAAAAbo/tWH4XWe3m3c/s640/Processing.png" width="640" wt="true" /></a></div>
<div class="separator" style="clear: both; text-align: center;"></div>
<p>This can be achieved programatically by the following code</p>
<pre class="brush: csharp">SPLongOperation.BeginOperation beginOperation = null;

if (beginOperation == null)
{
    beginOperation = delegate(SPLongOperation longOperation)
    {
        // Long running code here .. 

        longOperation.End("settings.aspx", SPRedirectFlags.RelativeToLayoutsPage, HttpContext.Current, null);
    };
}
SPLongOperation.Begin(beginOperation);
</pre>
<p>
longOperation.End() can be used to specify the redirect page when the operation ends. In the above example, it will redirect to the settings page of the site.</p>
<p>Also refer to :<br />
<a href="http://peterheibrink.wordpress.com/2009/09/07/splongoperation/">http://peterheibrink.wordpress.com/2009/09/07/splongoperation/</a>
<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5285230663251728127-3011338330489354412?l=howtosharepoint.blogspot.com' alt='' /></div>
<p><small>Check it out:<a rel="nofollow" href="http://howtosharepoint.blogspot.com/2010/04/how-to-programatically-show-processing.html">SharePoint 2010</a></small> </p>
<div>    <h3>Related Posts:</h3><br><a href="http://computersplace.net/articles-review/delegate-controls-sharepoint-2010.html" rel="bookmark" class="crp_title">how to use delegate controls in Sharepoint 2010</a><span class="crp_excerpt"> use delegate controls in Sharepoint 2010

GlobalNavigation Delegate Control&lt;delegatecontrol controlid="GlobalNavigation" runat="server"&gt;&lt;/delegatecontrol&gt;

The GlobalNavigation delegate control is at the top of the v4 ...</span><br><a href="http://computersplace.net/articles-review/thmx-theme-reference.html" rel="bookmark" class="crp_title">THMX theme reference</a><span class="crp_excerpt"> SharePoint 2010 THMX theme reference 
Check it out:SharePoint 2010  </span><br><a href="http://computersplace.net/articles-review/sharepoint-2010-webpart-deployment-structure.html" rel="bookmark" class="crp_title">Sharepoint 2010 &#8211; WebPart deployment structure</a><span class="crp_excerpt"> This post is to put together the various files that is generated in Visual Studio 2010 like the manifest.xml, feature.xml, ...</span><br><a href="http://computersplace.net/articles-review/ribbon-customization-hide-ribbon-programatically.html" rel="bookmark" class="crp_title">Ribbon customization : Hide Ribbon Programatically</a><span class="crp_excerpt"> Ribbon customization : how to hide Ribbon programatically
programatically hide a Ribbon public void HideRibbon()
{
  SPRibbon current = SPRibbon.GetCurrent(this.Page);

  ...</span><br><a href="http://computersplace.net/articles-review/programatically-redirect-to-custom-error-page.html" rel="bookmark" class="crp_title">Programatically redirect to custom error page</a><span class="crp_excerpt"> programatically redirect to custom error page
To set a custom error page
const string CustomErrorPage = "/_layouts/CustomPageMappings/Error.aspx"; 

webApp.UpdateMappedPage(SPWebApplication.SPCustomPage.Error, CustomErrorPage);
ref:
http://todd-carter.com/post/2010/04/07/An-Expected-Error-Has-Occurred.aspx


To call the error ...</span></div>]]></content:encoded>
			<wfw:commentRss>http://computersplace.net/articles-review/programatically-show-processing-screen-splongoperation.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I wanna create a simple bank processing software?</title>
		<link>http://computersplace.net/software-problem/i-wanna-create-simple-bank-processing-software.html</link>
		<comments>http://computersplace.net/software-problem/i-wanna-create-simple-bank-processing-software.html#comments</comments>
		<pubDate>Mon, 10 May 2010 17:35:40 +0000</pubDate>
		<dc:creator>Wide Glide</dc:creator>
				<category><![CDATA[Software Problem]]></category>
		<category><![CDATA[bank]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[wanna]]></category>

		<guid isPermaLink="false">http://computersplace.net/software-problem/i-wanna-create-a-simple-bank-processing-software.html</guid>
		<description><![CDATA[Hi,
 I wanna make a software which can do a simple bank process.The program must be able to give username and password to customers. I know only a little of c++. I need to do this software as a project work to my school. So can you plz tell me what should i do? Should [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,<br />
 I wanna make a software which can do a simple bank process.The program must be able to give username and password to customers. I know only a little of c++. I need to do this software as a project work to my school. So can you plz tell me what should i do? Should i use any softwares?</p>
<div>    <h3>Related Posts:</h3><br><a href="http://computersplace.net/software-problem/software-enterprises-tools-project-planning-control.html" rel="bookmark" class="crp_title">In the software enterprises, what tools are used for project planning and control?</a><span class="crp_excerpt"> For example I wanna know that in the Microsoft company, do they use Microsoft Project for planning and controlling their ...</span><br><a href="http://computersplace.net/software-problem/question-documentation-software-design-developement-project-school.html" rel="bookmark" class="crp_title">Question about documentation for a Software Design and Developement project in school!?</a><span class="crp_excerpt"> Well see we used Visual Basic Expression Edition 2005 to create a program. I did a heaps basic one, a ...</span><br><a href="http://computersplace.net/hardware-help/laptop-hardware-help/laptop-order-i-buy-extended-warranty-i.html" rel="bookmark" class="crp_title">My laptop is out of order and i have best buy extended warranty. how can i use it?</a><span class="crp_excerpt"> I have a two yr extended warranty of best buy. 
my laptop automatically turns off the power or freeze itself,
frequently.. ...</span><br><a href="http://computersplace.net/software-problem/whats-free-simple-project-management.html" rel="bookmark" class="crp_title">Whats the best free simple to use project management to use?</a><span class="crp_excerpt"> I have a project and need to manage it with a timeline priortise certain tasks etc. Can you tell me ...</span><br><a href="http://computersplace.net/software-problem/suggetions-software-engineering-projectpls.html" rel="bookmark" class="crp_title">suggetions for software engineering project?!pls&#8230;?</a><span class="crp_excerpt"> any projects!! im getting ideas and i still cant make up my mind.. i need something interesting and yet feasible.. ...</span></div>]]></content:encoded>
			<wfw:commentRss>http://computersplace.net/software-problem/i-wanna-create-simple-bank-processing-software.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>what software requirements are needed for real time processing?</title>
		<link>http://computersplace.net/software-problem/software-requirements-needed-real-time-processing.html</link>
		<comments>http://computersplace.net/software-problem/software-requirements-needed-real-time-processing.html#comments</comments>
		<pubDate>Mon, 10 May 2010 17:35:26 +0000</pubDate>
		<dc:creator>Best D</dc:creator>
				<category><![CDATA[Software Problem]]></category>
		<category><![CDATA[needed]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[real]]></category>
		<category><![CDATA[requirements]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://computersplace.net/software-problem/what-software-requirements-are-needed-for-real-time-processing.html</guid>
		<description><![CDATA[    Related Posts:Management Information System for company like iTunes? How does a company like iTunes music store run? What I mean is what type of output, input, process, database, ...What platform to design real time scheduling software? I'd like to design (or have designed by someone else) web based software where people [...]]]></description>
			<content:encoded><![CDATA[<div>    <h3>Related Posts:</h3><br><a href="http://computersplace.net/software-problem/management-information-system-company-itunes.html" rel="bookmark" class="crp_title">Management Information System for company like iTunes?</a><span class="crp_excerpt"> How does a company like iTunes music store run? What I mean is what type of output, input, process, database, ...</span><br><a href="http://computersplace.net/software-problem/platform-design-real-time-scheduling-software.html" rel="bookmark" class="crp_title">What platform to design real time scheduling software?</a><span class="crp_excerpt"> I'd like to design (or have designed by someone else) web based software where people could schedule appointments for a ...</span><br><a href="http://computersplace.net/software-problem/whats-good-type-laptop-computer-i-college.html" rel="bookmark" class="crp_title">What&#8217;s good a type of Laptop Computer that I could take to college?</a><span class="crp_excerpt"> Are there any specific system requirements I should know about. And also what are some programs/hardware that I should have ...</span><br><a href="http://computersplace.net/software-problem/software-license/requirements-software-engineers.html" rel="bookmark" class="crp_title">what are the requirements for software engineers?</a><span class="crp_excerpt"> what type of training requirements does a software enigneer need? what salary? any special licenses??? need answer asap...
 </span><br><a href="http://computersplace.net/software-problem/software-development-requirements-investigation-prototyping-design-preparation-implemention-testing.html" rel="bookmark" class="crp_title">Software Development requirements, investigation and prototyping, design, preparation, implemention &#038; testing?</a><span class="crp_excerpt"> Hi, I am having a tough time finding out anything in any easy way to describe each step of Software ...</span></div>]]></content:encoded>
			<wfw:commentRss>http://computersplace.net/software-problem/software-requirements-needed-real-time-processing.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced) (user agent is rejected)

Served from: computersplace.net @ 2010-09-04 19:41:36 -->