<?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:blogger='http://schemas.google.com/blogger/2008' 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-6009241977585466007</id><updated>2024-10-18T01:52:58.878-04:00</updated><category term=".NET Development Articles"/><category term="Siccolo"/><category term=".NET Development"/><category term="PocketPC Application"/><category term="SQL Server"/><category term="SQL Server Development"/><category term="Windows Mobile Development"/><category term="FBJS"/><category term="FBML"/><category term="fb:friend-selector"/><category term="Smartphone Application"/><category term="asp:GridView"/><category term="AJAX"/><category term="Animation"/><category term="Facebook"/><category term="Mock AJAX"/><category term="SQL Server Administration"/><category term="SQL Server Management"/><category term="SQL Server Mobile Management"/><category term="ajax.post"/><category term="fb:action"/><category term="fb:create-button"/><category term="fb:dashboard"/><category term="fb:editor"/><category term="fb:help"/><category term="fb:iframe"/><category term="CertAddCertificateContextToStore"/><category term="DBA"/><category term="DataSet"/><category term="Format To Currency in SQL"/><category term="T-SQL"/><category term="WMI"/><category term="Windows Management Instrumentation"/><category term="X509Store"/><category term="convert money"/><category term="convert()"/><category term="sql currency format"/><category term="sql format currency"/><category term="ASP.NET"/><category term="Animated GIF"/><category term="CanvasFBMLBasePage"/><category term="Event Log Monitoring"/><category term="Event Log RSS"/><category term="Facebook feed"/><category term="File Upload"/><category term="MS CRM"/><category term="MS CRM Customization"/><category term="ManagementObject"/><category term="ManagementObjectCollection"/><category term="Personal Security Certificate"/><category term="PublishAction"/><category term="Scripting.FileSystemObject"/><category term="SetRefHandle"/><category term="Win32_ComputerSystem"/><category term="Win32_ConnectionShare"/><category term="Win32_UserAccount"/><category term="Windows Event Log Watcher"/><category term="fb:ref"/><category term="fb:request-form"/><category term="fb:subtitle"/><category term="fb:tab-item"/><category term="fb:tabs"/><category term="fb:wide"/><category term="javascript"/><category term="publishActionOfUser"/><category term="setFBML"/><category term="xp_cmdshell"/><category term="B12"/><category term="CSV"/><category term="CSV parsing"/><category term="CSV reading"/><category term="Clarity Medispa"/><category term="ColumnHeader"/><category term="DataColumn"/><category term="DataRow"/><category term="GridView"/><category term="Health"/><category term="Hub"/><category term="ListView"/><category term="Load Dataset from CSV"/><category term="Manage CRM Leads"/><category term="Manage CRM Reports"/><category term="ManagementEventWatcher"/><category term="ManagementObjectSearcher"/><category term="NETWORK MARKETING"/><category term="OLE Automation"/><category term="OleDb"/><category term="OleDbAdapter"/><category term="OleDbCommand"/><category term="OleDbConnection"/><category term="Web Client"/><category term="Win32_NTLogEvent"/><category term="Win32_Service"/><category term="convert currency"/><category term="mkdir"/><category term="rename"/><title type='text'>Siccolo - Free Management Tool For SQL Server!</title><subtitle type='html'>&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Siccolo helps MS SQL Server professionals&lt;/a&gt; save time and increase their productivity by utilizing a more efficient approach to database management - use their Windows Mobile empowered device while sipping margarita on the beach. &lt;a href=&quot;http://www.siccolo.com&quot;&gt;Siccolo extends support from mobile devices for Microsoft SQL Servers&lt;/a&gt;</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default?alt=atom&amp;redirect=false'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default?alt=atom&amp;start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>42</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-930641752983927536</id><published>2020-02-17T14:43:00.001-05:00</published><updated>2020-02-17T14:43:19.389-05:00</updated><title type='text'>Exception handling -&gt; &quot;bubble up</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
 

&lt;h5 class=&quot;card-title&quot;&gt;Exception handling -&gt; &quot;bubble up&quot;&lt;/h5&gt;
      &lt;h6 class=&quot;card-subtitle mb-2 text-muted&quot;&gt;&lt;a href=&quot;http://www.siccolo.com/articles/blurbs.html#6&quot;&gt;Exception handling&lt;/a&gt;&lt;/h6&gt;
      
      &lt;p class=&quot;card-text&quot;&gt;
(#1) &lt;pre&gt;&lt;code&gt;
 try
 {
  ...
  // might fail
  ...
 }
 catch (Exception ex)
 {
  ...
  Log(ex);
  throw ex;
 }
&lt;/code&gt;&lt;/pre&gt;
where &lt;code&gt;throw ex&lt;/code&gt; bubbles the exception up the chain. Creates a new exception to throw - Stack Trace is truncated below the method that failed, no longer have the full stack trace information.
&lt;br/&gt;&lt;br/&gt;
(#2) Compare to 
&lt;pre&gt;&lt;code&gt;
...
catch (Exception ex)
{
 ...
 throw;
}
...
&lt;/code&gt;&lt;/pre&gt;
Here &lt;code&gt;throw&lt;/code&gt; &quot;rethrows&quot; exception, and Stack trace information is preserved.
&lt;br/&gt;&lt;br/&gt;
So, if (#1) wants to add user-friendly &lt;code&gt;throw new ApplicationException(&quot;failed for certain&quot;)&lt;/code&gt;, then proper way would be &lt;code&gt;throw new ApplicationException(&quot;failed for certain&quot;, &lt;b&gt;ex&lt;/b&gt;)&lt;/code&gt;
&lt;br/&gt;

&lt;hr /&gt;
more at &lt;a href=&quot;http://www.siccolo.com/articles/blurbs.html&quot;&gt;siccolo blurbs&lt;/a&gt;


&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/930641752983927536/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/930641752983927536' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/930641752983927536'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/930641752983927536'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2020/02/exception-handling-bubble-up.html' title='Exception handling -&gt; &quot;bubble up'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-6918254745830095570</id><published>2020-02-17T14:36:00.001-05:00</published><updated>2020-02-17T14:36:24.207-05:00</updated><title type='text'>Rotate Array Left N-times c#</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;


Rotate Array Left N-times c#:

&lt;pre&gt;&lt;code&gt;
public static int[] &lt;a href=&quot;http://www.siccolo.com/articles/blurbs.html#2&quot;&gt;RotateArrayLeft&lt;/a&gt;(int[] ins, int startindex = 1)
 {
  if (ins == null || ins.Length == 0) { return ins; }
  var outs = new int[ins.Length];
  //Copy(Array sourceArray, int sourceIndex, Array destinationArray, int destinationIndex, int length):
  Array.Copy(ins, startindex, outs, 0, ins.Length - startindex);
  var q = new Queue&lt;int&gt;(ins);
  for (int i = outs.Length - startindex; i &lt; outs.Length; i++)
  {
   outs[i] = q.Dequeue();
  }

  return outs;
 }
&lt;/code&gt;&lt;/pre&gt;


&lt;hr/&gt;
more at &lt;a href=&quot;http://www.siccolo.com/articles/blurbs.html&quot;&gt;siccolo blurbs&lt;/a&gt;

&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/6918254745830095570/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/6918254745830095570' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/6918254745830095570'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/6918254745830095570'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2020/02/rotate-array-left-n-times-c.html' title='Rotate Array Left N-times c#'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-2556487980102238807</id><published>2020-02-17T14:34:00.001-05:00</published><updated>2020-02-17T14:34:30.242-05:00</updated><title type='text'>Shift array</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;


Shift array:

&lt;pre&gt;&lt;code&gt;
public static int?[] &lt;a href=&quot;http://www.siccolo.com/articles/blurbs.html#1&quot;&gt;ShiftArray&lt;/a&gt;(int?[] ins)
 {
  if (ins == null || ins.Length == 0) { return ins; }
  var outs = new int?[ins.Length];
  Array.Copy(ins, 1, outs, 0, ins.Length - 1);
  outs[outs.Length - 1] = ins[0];
  return outs;
 }
&lt;/code&gt;&lt;/pre&gt;


&lt;hr/&gt;
more at &lt;a href=&quot;http://www.siccolo.com/articles/blurbs.html&quot;&gt;siccolo blurbs&lt;/a&gt;

&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/2556487980102238807/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/2556487980102238807' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/2556487980102238807'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/2556487980102238807'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2020/02/shift-array.html' title='Shift array'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-7712026774699589743</id><published>2020-02-17T14:13:00.000-05:00</published><updated>2020-02-17T14:32:07.688-05:00</updated><title type='text'></title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;

manually reverse a string:

&lt;pre&gt;&lt;code&gt;
 public static string &lt;a href=&quot;http://www.siccolo.com/articles/blurbs.html#0&quot;&gt;ReverseStringManual&lt;/a&gt;(string ins)
 {
  StringBuilder outs = new StringBuilder(ins.Length);
  for (int i = ins.Length; i &gt; 0; i--) { outs.Append(ins[i - 1]); };
  return outs.ToString();
 }
&lt;/code&gt;&lt;/pre&gt;


&lt;hr/&gt;
more at &lt;a href=&quot;http://www.siccolo.com/articles/blurbs.html&quot;&gt;siccolo blurbs&lt;/a&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/7712026774699589743/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/7712026774699589743' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7712026774699589743'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7712026774699589743'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2020/02/manually-reverse-string-public-static.html' title=''/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-7422050844649048166</id><published>2008-05-22T12:46:00.000-04:00</published><updated>2020-02-17T14:04:59.686-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CanvasFBMLBasePage"/><category scheme="http://www.blogger.com/atom/ns#" term="Facebook feed"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:friend-selector"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:ref"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:request-form"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:subtitle"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:tab-item"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:tabs"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:wide"/><category scheme="http://www.blogger.com/atom/ns#" term="FBJS"/><category scheme="http://www.blogger.com/atom/ns#" term="FBML"/><category scheme="http://www.blogger.com/atom/ns#" term="PublishAction"/><category scheme="http://www.blogger.com/atom/ns#" term="publishActionOfUser"/><category scheme="http://www.blogger.com/atom/ns#" term="setFBML"/><category scheme="http://www.blogger.com/atom/ns#" term="SetRefHandle"/><title type='text'>next article in Developing Facebook Application with FBML FBJS FQL and .NET series at CodeProject</title><content type='html'>see at &lt;a href=&quot;http://www.codeproject.com/KB/aspnet/Facebook_App_ASP_Csharp2.aspx&quot;&gt;Developing Facebook Application with .NET - part 2&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/7422050844649048166/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/7422050844649048166' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7422050844649048166'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7422050844649048166'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/05/next-article-in-developing-facebook_22.html' title='next article in Developing Facebook Application with FBML FBJS FQL and .NET series at CodeProject'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-917047219130397817</id><published>2008-05-22T11:44:00.003-04:00</published><updated>2008-05-22T11:55:22.657-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CanvasFBMLBasePage"/><category scheme="http://www.blogger.com/atom/ns#" term="Facebook feed"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:friend-selector"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:ref"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:request-form"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:subtitle"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:tab-item"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:tabs"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:wide"/><category scheme="http://www.blogger.com/atom/ns#" term="FBJS"/><category scheme="http://www.blogger.com/atom/ns#" term="FBML"/><category scheme="http://www.blogger.com/atom/ns#" term="PublishAction"/><category scheme="http://www.blogger.com/atom/ns#" term="publishActionOfUser"/><category scheme="http://www.blogger.com/atom/ns#" term="setFBML"/><category scheme="http://www.blogger.com/atom/ns#" term="SetRefHandle"/><title type='text'>next article in Developing Facebook Application with FBML FBJS FQL and .NET series</title><content type='html'>next article in Developing Facebook Application with FBML FBJS FQL and .NET series:&lt;br /&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-3.html#fbml_fbtabs&#39;&gt;ASP.NET - using FBML Tabs - &amp;lt;fb-tabs/&gt; and &amp;lt;fb:tab-item/&gt; in ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-3.html#fbrequest_form&#39;&gt;ASP.NET - using &amp;lt;fb:request-form/&gt; in ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-3.html#fbml_multi_friend_select&#39;&gt;ASP.NET - building Invite page with FBML multi friend selector from ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-3.html#fbml_fql&#39;&gt;access Facebook Data from ASP.NET (C#) using FQL and DirectFQLQuery()&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-3.html#application_profile&#39;&gt;ASP.NET - update Facebook user profile using SetFBML, &amp;lt;fb:subtitle/&gt;, &amp;lt;fb:wide/&gt; in ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-3.html#application_profile&#39;&gt;ASP.NET - update Facebook user profile using &amp;lt;fb:ref/&gt;, SetRefHandle&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-3.html#application_profile_update_scheduler&#39;&gt;ASP.NET - build scheduled updates for Facebook - &quot;cron job&quot; for Facebook using ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-3.html#fbml_minifeed&#39;&gt;ASP.NET - populate user profile mini-feed using PublishAction(), Feed.publishActionOfUser using ASP.NET&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-3.html#post_remove_url&#39;&gt;ASP.NET - handle Application unsintall/remove using Post Remove URL in ASP.NET&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/917047219130397817/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/917047219130397817' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/917047219130397817'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/917047219130397817'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/05/next-article-in-developing-facebook.html' title='next article in Developing Facebook Application with FBML FBJS FQL and .NET series'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-8080987881715809892</id><published>2008-05-20T10:47:00.002-04:00</published><updated>2008-05-20T10:50:18.527-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development"/><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="ASP.NET"/><category scheme="http://www.blogger.com/atom/ns#" term="asp:GridView"/><category scheme="http://www.blogger.com/atom/ns#" term="CSV"/><category scheme="http://www.blogger.com/atom/ns#" term="CSV parsing"/><category scheme="http://www.blogger.com/atom/ns#" term="CSV reading"/><category scheme="http://www.blogger.com/atom/ns#" term="DataSet"/><category scheme="http://www.blogger.com/atom/ns#" term="Load Dataset from CSV"/><title type='text'>Comma delimited files - Load Dataset from CSV File - Reading CSV and Parsing CSV Files</title><content type='html'>new artcle at &lt;a href=&quot;http://www.siccolo.com&quot;&gt;Siccolo&lt;/a&gt; - &lt;br /&gt;&lt;br /&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/Open_DataSet_From_TextFile/open_dataset_from_text_csv_file.html&#39; &gt;&lt;br /&gt;How to open Dataset From Comma delimited (CSV) File - Reading CSV files - Parsing CSV Files&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/8080987881715809892/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/8080987881715809892' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/8080987881715809892'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/8080987881715809892'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/05/comma-delimited-files-load-dataset-from.html' title='Comma delimited files - Load Dataset from CSV File - Reading CSV and Parsing CSV Files'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-1733889628364251154</id><published>2008-03-07T13:30:00.000-05:00</published><updated>2008-03-07T13:50:10.209-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="AJAX"/><category scheme="http://www.blogger.com/atom/ns#" term="ajax.post"/><category scheme="http://www.blogger.com/atom/ns#" term="Animation"/><category scheme="http://www.blogger.com/atom/ns#" term="asp:GridView"/><category scheme="http://www.blogger.com/atom/ns#" term="Facebook"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:action"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:create-button"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:dashboard"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:editor"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:friend-selector"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:help"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:iframe"/><category scheme="http://www.blogger.com/atom/ns#" term="FBJS"/><category scheme="http://www.blogger.com/atom/ns#" term="FBML"/><category scheme="http://www.blogger.com/atom/ns#" term="Mock AJAX"/><title type='text'>fix for Error: FacebookAPI.CreateSession() -&gt; FacebookAPI.ErrorCheck(): Invalid Parameter</title><content type='html'>&lt;a href=&quot;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-2.html&quot;&gt;Fix for FacebookAPI.CreateSession() - FacebookAPI.ErrorCheck() - Invalid Parameter problem in Facebook Developer Toolkit&lt;/a&gt; - &lt;br /&gt;see it at &lt;a href=&quot;http://www.siccolo.com/articles.asp&quot;&gt;Siccolo articles&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/1733889628364251154/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/1733889628364251154' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/1733889628364251154'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/1733889628364251154'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/03/fix-for-error-facebookapicreatesession.html' title='fix for Error: FacebookAPI.CreateSession() -&gt; FacebookAPI.ErrorCheck(): Invalid Parameter'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-7231046234131167138</id><published>2008-03-06T16:59:00.000-05:00</published><updated>2008-03-06T17:00:28.796-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="AJAX"/><category scheme="http://www.blogger.com/atom/ns#" term="ajax.post"/><category scheme="http://www.blogger.com/atom/ns#" term="Animation"/><category scheme="http://www.blogger.com/atom/ns#" term="asp:GridView"/><category scheme="http://www.blogger.com/atom/ns#" term="Facebook"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:action"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:create-button"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:dashboard"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:editor"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:friend-selector"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:help"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:iframe"/><category scheme="http://www.blogger.com/atom/ns#" term="FBJS"/><category scheme="http://www.blogger.com/atom/ns#" term="FBML"/><category scheme="http://www.blogger.com/atom/ns#" term="Mock AJAX"/><title type='text'>Developing Facebook Application with FBML and .NET article on www.codeproject.com</title><content type='html'>&lt;a href=&quot;http://www.siccolo.com/articles.asp&quot;&gt;Siccolo development article&lt;/a&gt; on www.codeproject.com - &lt;a href=&quot;http://www.codeproject.com/KB/aspnet/Facebook_App_ASP_Csharp.aspx&lt;br /&gt;&quot;&gt;Developing Facebook Application with FBML FBJS and .NET, with C# &lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/7231046234131167138/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/7231046234131167138' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7231046234131167138'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7231046234131167138'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/03/developing-facebook-application-with_213.html' title='Developing Facebook Application with FBML and .NET article on www.codeproject.com'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-9008644004317914789</id><published>2008-03-06T16:23:00.000-05:00</published><updated>2008-03-06T16:25:58.146-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="AJAX"/><category scheme="http://www.blogger.com/atom/ns#" term="ajax.post"/><category scheme="http://www.blogger.com/atom/ns#" term="Animation"/><category scheme="http://www.blogger.com/atom/ns#" term="asp:GridView"/><category scheme="http://www.blogger.com/atom/ns#" term="Facebook"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:action"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:create-button"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:dashboard"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:editor"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:friend-selector"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:help"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:iframe"/><category scheme="http://www.blogger.com/atom/ns#" term="FBJS"/><category scheme="http://www.blogger.com/atom/ns#" term="FBML"/><category scheme="http://www.blogger.com/atom/ns#" term="Mock AJAX"/><title type='text'>Developing Facebook Application with FBML and .NET article on www.lottext.com</title><content type='html'>&lt;a href=&quot;http://www.siccolo.com/articles.asp&quot;&gt;Siccolo development article&lt;/a&gt; on www.lottext.com - &lt;a href=&quot;http://www.lottext.com/articles/6329/1/Developing-Facebook-Application-with-FBML-FBJS-and-NET/Page1.html&quot;&gt;Developing Facebook Application with FBML FBJS and .NET, with C# &lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/9008644004317914789/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/9008644004317914789' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/9008644004317914789'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/9008644004317914789'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/03/developing-facebook-application-with_06.html' title='Developing Facebook Application with FBML and .NET article on www.lottext.com'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-1307196212815396975</id><published>2008-03-06T15:59:00.001-05:00</published><updated>2008-03-06T16:16:15.246-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="AJAX"/><category scheme="http://www.blogger.com/atom/ns#" term="ajax.post"/><category scheme="http://www.blogger.com/atom/ns#" term="Animation"/><category scheme="http://www.blogger.com/atom/ns#" term="asp:GridView"/><category scheme="http://www.blogger.com/atom/ns#" term="Facebook"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:action"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:create-button"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:dashboard"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:editor"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:friend-selector"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:help"/><category scheme="http://www.blogger.com/atom/ns#" term="fb:iframe"/><category scheme="http://www.blogger.com/atom/ns#" term="FBJS"/><category scheme="http://www.blogger.com/atom/ns#" term="FBML"/><category scheme="http://www.blogger.com/atom/ns#" term="Mock AJAX"/><title type='text'>Developing Facebook Application with FBML and .NET</title><content type='html'>&lt;a href=&quot;http://www.siccolo.com/Articles/CodeProject/Facebook/facebook-application-development-1.html&quot;&gt;Developing Facebook Application with FBML FBJS and .NET&lt;/a&gt; - &lt;br /&gt;how to build a &lt;a href=&quot;http://apps.facebook.com/fbtestappsiccolo&quot;&gt;sophisticated Facebook application&lt;/a&gt; that interacts with Facebook users and with a &lt;a href=&quot;http://www.siccolo.com&quot;&gt;SQL Server database&lt;/a&gt; - see it at &lt;a href=&quot;http://www.siccolo.com/articles.asp&quot;&gt;Siccolo articles&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/1307196212815396975/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/1307196212815396975' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/1307196212815396975'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/1307196212815396975'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/03/developing-facebook-application-with.html' title='Developing Facebook Application with FBML and .NET'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-4412788983667110184</id><published>2008-03-04T15:15:00.003-05:00</published><updated>2008-03-04T15:22:59.820-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development"/><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="File Upload"/><category scheme="http://www.blogger.com/atom/ns#" term="Scripting.FileSystemObject"/><title type='text'>Develop Custom File Upload article on www.lottext.com</title><content type='html'>&lt;a href=&quot;http://www.siccolo.com/articles.asp&quot;&gt;Siccolo development article&lt;/a&gt; on www.lottext.com - &lt;a href=&quot;http://www.lottext.com/articles/5944/1/Develop-Custom-File-Upload-with-Javascript-and-ScriptingFileSystemObject/Page1.html&quot;&gt;Develop Custom File Upload with Javascript and Scripting.FileSystemObject&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/4412788983667110184/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/4412788983667110184' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/4412788983667110184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/4412788983667110184'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/03/article-on-wwwlottextcom_04.html' title='Develop Custom File Upload article on www.lottext.com'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-1541441932677215434</id><published>2008-03-04T14:49:00.001-05:00</published><updated>2008-03-04T14:51:36.904-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development"/><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="File Upload"/><category scheme="http://www.blogger.com/atom/ns#" term="javascript"/><category scheme="http://www.blogger.com/atom/ns#" term="Scripting.FileSystemObject"/><title type='text'>Create Custom File Upload - .NET Software Development - Javascript and Scripting.FileSystemObject</title><content type='html'>How to create Custom File Upload - .NET Software Development - Javascript and Scripting.FileSystemObject - a new &lt;a href=&quot;http://www.siccolo.com/articles.asp&quot;&gt;Siccolo development article&lt;/a&gt; - &lt;br /&gt;&lt;a href=&quot;http://www.siccolo.com/Articles/CodeProject/UploadControl_Javascript/upload_control.html&quot;&gt;Custom File Upload with Javascript and Scripting.FileSystemObject, Web Service/ASP.NET and C#&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/1541441932677215434/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/1541441932677215434' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/1541441932677215434'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/1541441932677215434'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/03/create-custom-file-upload-net-software.html' title='Create Custom File Upload - .NET Software Development - Javascript and Scripting.FileSystemObject'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-4697653785144232798</id><published>2008-03-04T09:45:00.003-05:00</published><updated>2008-03-04T14:53:40.565-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development"/><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="ASP.NET"/><category scheme="http://www.blogger.com/atom/ns#" term="javascript"/><title type='text'>address showModalDialog() problem and javascript</title><content type='html'>new &lt;a href=&quot;http://www.siccolo.com/articles.asp&quot;&gt;article on Siccolo&lt;/a&gt; - &lt;a href=&quot;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/miscellaneous-development-tips-1.html#showModalDialogproblem&quot;&gt;address showModalDialog() problem and javascript&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/4697653785144232798/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/4697653785144232798' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/4697653785144232798'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/4697653785144232798'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/03/address-showmodaldialog-problem-and.html' title='address showModalDialog() problem and javascript'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-7882797941764298506</id><published>2008-03-03T09:44:00.002-05:00</published><updated>2008-03-04T15:20:00.998-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development"/><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="CertAddCertificateContextToStore"/><category scheme="http://www.blogger.com/atom/ns#" term="Personal Security Certificate"/><category scheme="http://www.blogger.com/atom/ns#" term="PocketPC Application"/><category scheme="http://www.blogger.com/atom/ns#" term="Windows Mobile Development"/><category scheme="http://www.blogger.com/atom/ns#" term="X509Store"/><title type='text'>Personal Security Certificate PFX article on www.lottext.com</title><content type='html'>posted article on &lt;a href=&quot;http://www.lottext.com/articles/2859/1/Windows-Mobile---How-to-Install-Personal-Security-Certificate-PFX/Page1.html&quot;&gt;Windows Mobile - How to Install Personal Security Certificate PFX&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/7882797941764298506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/7882797941764298506' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7882797941764298506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7882797941764298506'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/03/article-on-wwwlottextcom.html' title='Personal Security Certificate PFX article on www.lottext.com'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-3797248272398382093</id><published>2008-02-26T11:45:00.001-05:00</published><updated>2008-02-26T11:47:06.592-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="convert money"/><category scheme="http://www.blogger.com/atom/ns#" term="convert()"/><category scheme="http://www.blogger.com/atom/ns#" term="DBA"/><category scheme="http://www.blogger.com/atom/ns#" term="Format To Currency in SQL"/><category scheme="http://www.blogger.com/atom/ns#" term="sql currency format"/><category scheme="http://www.blogger.com/atom/ns#" term="sql format currency"/><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server"/><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server Administration"/><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server Development"/><title type='text'>sql number format and sql format number</title><content type='html'>Creating &lt;a href=&quot;http://www.siccolo.com/Articles/SQLScripts/how-to-create-sql-to-format-currency.html&quot;&gt;user defined number format function&lt;/a&gt; to &lt;br /&gt;&lt;br/&gt;&lt;br /&gt;&lt;strong&gt;dbo.format_number (1234), dbo.format_number (-1234.05)&lt;/strong&gt;, results are:&lt;br /&gt;&lt;strong&gt;1,234&lt;/strong&gt; and &lt;strong&gt;-1,234&lt;/strong&gt;.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/3797248272398382093/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/3797248272398382093' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/3797248272398382093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/3797248272398382093'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/02/sql-number-format-and-sql-format-number.html' title='sql number format and sql format number'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-5641625324115903471</id><published>2008-02-26T11:43:00.001-05:00</published><updated>2008-02-26T11:45:47.758-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="convert money"/><category scheme="http://www.blogger.com/atom/ns#" term="convert()"/><category scheme="http://www.blogger.com/atom/ns#" term="DBA"/><category scheme="http://www.blogger.com/atom/ns#" term="Format To Currency in SQL"/><category scheme="http://www.blogger.com/atom/ns#" term="sql currency format"/><category scheme="http://www.blogger.com/atom/ns#" term="sql format currency"/><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server"/><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server Administration"/><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server Development"/><title type='text'>sql currency format and sql format currency</title><content type='html'>Creating &lt;a href=&quot;http://www.siccolo.com/Articles/SQLScripts/how-to-create-sql-to-format-currency.html&quot;&gt;user defined currency format function&lt;/a&gt; to &lt;br /&gt;&lt;br/&gt;&lt;br /&gt;&lt;strong&gt;select dbo.format_currency (1234), dbo.format_currency (-1234.05)&lt;/strong&gt;, results are:&lt;br /&gt;&lt;strong&gt;1,234.00&lt;/strong&gt; and &lt;strong&gt;-1,234.05&lt;/strong&gt;.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/5641625324115903471/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/5641625324115903471' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/5641625324115903471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/5641625324115903471'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/02/sql-currency-format-and-sql-format.html' title='sql currency format and sql format currency'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-2219389371539551900</id><published>2008-02-14T10:44:00.000-05:00</published><updated>2008-02-14T10:45:17.152-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Hub"/><category scheme="http://www.blogger.com/atom/ns#" term="Siccolo"/><title type='text'>Hubba-Hubba</title><content type='html'>hubbing at &lt;a href=&quot;http://hubpages.com/hub/Siccolo-SQLServerTool&quot;&gt;Siccolo Hub&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/2219389371539551900/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/2219389371539551900' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/2219389371539551900'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/2219389371539551900'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/02/hubba-hubba.html' title='Hubba-Hubba'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-3045211374748649406</id><published>2008-02-01T14:08:00.003-05:00</published><updated>2008-03-04T15:27:53.493-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="CertAddCertificateContextToStore"/><category scheme="http://www.blogger.com/atom/ns#" term="PocketPC Application"/><category scheme="http://www.blogger.com/atom/ns#" term="Smartphone Application"/><category scheme="http://www.blogger.com/atom/ns#" term="X509Store"/><title type='text'>How to Install Personal Security Certificate in C# compact framework using PFXIsPFXBlob(), CertAddCertificateContextToStore() functions</title><content type='html'>&lt;a href=&quot;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/compact-framework-development-tips.html#AddPersonalSecurityCertificate&quot;&gt;Access web service with required personal security certificate - using x509 PFX personal certificate - Install Personal Security Certificate in C# compact framework. &lt;/a&gt;:&lt;br /&gt;&lt;a href=&quot;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/compact-framework-development-tips.html#AddPersonalSecurityCertificate&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;!-- Begin BlogToplist voting code --&gt;&lt;br /&gt;&lt;a href=&quot;http://www.blogtoplist.com/vote.php?u=32732&quot; target=&quot;_blank&quot;&gt;&lt;br /&gt;&lt;img src=&quot;http://www.blogtoplist.com/images/votebutton.gif&quot; alt=&quot;Top Blogs&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.blogtoplist.com/software/&quot; title=&quot;Software&quot;&gt;&lt;br /&gt;&lt;img src=&quot;http://www.blogtoplist.com/tracker.php?u=32732&quot; alt=&quot;Software&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;!-- End BlogToplist tracker code --&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;...&lt;br /&gt;byte[] pfxData = GetFile(certificatePath);&lt;br /&gt;...&lt;br /&gt;CRYPT_DATA_BLOB pPFX = new CRYPT_DATA_BLOB();&lt;br /&gt;pPFX.cbData = pfxData.Length;&lt;br /&gt;pPFX.pbData = Marshal.AllocHGlobal(pfxData.Length);&lt;br /&gt;Marshal.Copy(pfxData, 0, pPFX.pbData, pfxData.Length);&lt;br /&gt;...&lt;br /&gt;hMemStore  = PFXImportCertStore(ref pPFX, password, CRYPT_USER_KEYSET);&lt;br /&gt;...&lt;br /&gt;cert_MY_store = CryptoAPI.CertOpenStore(new IntPtr(CERT_STORE_PROV_SYSTEM_W),&lt;br /&gt;                                                           0, &lt;br /&gt;                                                            IntPtr.Zero,&lt;br /&gt;                                                            CERT_SYSTEM_STORE_CURRENT_USER, &lt;br /&gt;                                                            &quot;MY&quot;);&lt;br /&gt;&lt;br /&gt;...&lt;br /&gt;...&lt;br /&gt;CertAddCertificateContextToStore(cert_MY_store,&lt;br /&gt;                                                               hCertCntxt,&lt;br /&gt;                                                               (int)CERT_STORE_ADD_REPLACE_EXISTING, IntPtr.Zero)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/3045211374748649406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/3045211374748649406' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/3045211374748649406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/3045211374748649406'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/02/how-to-install-personal-security.html' title='How to Install Personal Security Certificate in C# compact framework using PFXIsPFXBlob(), CertAddCertificateContextToStore() functions'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-8544629525592515923</id><published>2008-02-01T14:02:00.000-05:00</published><updated>2008-02-01T14:08:07.600-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="CertAddCertificateContextToStore"/><category scheme="http://www.blogger.com/atom/ns#" term="DataSet"/><category scheme="http://www.blogger.com/atom/ns#" term="Personal Security Certificate"/><category scheme="http://www.blogger.com/atom/ns#" term="PocketPC Application"/><category scheme="http://www.blogger.com/atom/ns#" term="Smartphone Application"/><category scheme="http://www.blogger.com/atom/ns#" term="Windows Mobile Development"/><category scheme="http://www.blogger.com/atom/ns#" term="X509Store"/><title type='text'>.NET Compact Framework Miscellaneous Development Tips...</title><content type='html'>&lt;UL&gt;.NET Compact Framework Miscellaneous Development Tips:&lt;br /&gt;&lt;LI&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/compact-framework-development-tips.html#NetworkCredentials&#39;&gt;Access web service with required network credentials - System.Net.NetworkCredential&lt;/a&gt;&lt;br /&gt;&lt;LI&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/compact-framework-development-tips.html#AddPersonalSecurityCertificate&#39;&gt;How to Install Personal Security Certificate in C# compact framework - x509 PFX personal certificate - CertAddCertificateContextToStore() - PFXIsPFXBlob()&lt;/a&gt;&lt;br /&gt;&lt;LI&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/compact-framework-development-tips.html#CheckPersonalSecurityCertificate&#39;&gt;How to Check if Personal Security Certificate Exists in C# compact framework - x509 PFX personal certificate - X509Store - X509Certificate2Collection&lt;/a&gt;&lt;br /&gt;&lt;LI&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/compact-framework-development-tips.html#GetDeviceID&#39;&gt;How to Retrieve Windows Mobile Device ID in C# Compact Framework - GetDeviceUniqueID()&lt;/a&gt;&lt;br /&gt;&lt;LI&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/compact-framework-development-tips.html#GetSIMPhoneNumber&#39;&gt;How to Retrieve Windows Mobile SIM Phone Number in C# Compact Framework - SmsGetPhoneNumber()&lt;/a&gt;&lt;br /&gt;&lt;LI&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/compact-framework-development-tips.html#GetApplicationDirectory&#39;&gt;How to Retrieve Windows Mobile Application Directory in C# Compact Framework - Path.GetDirectoryName()&lt;/a&gt;&lt;br /&gt;&lt;LI&gt;&lt;a href=&#39;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/compact-framework-development-tips.html#LoadXMLSettings&#39;&gt;How to Retrieve and Load XML Settings in Windows Mobile Application in C# Compact Framework&lt;/a&gt;&lt;br /&gt;&lt;/UL&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/8544629525592515923/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/8544629525592515923' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/8544629525592515923'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/8544629525592515923'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/02/net-compact-framework-miscellaneous.html' title='.NET Compact Framework Miscellaneous Development Tips...'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-5247806902498648429</id><published>2008-01-15T12:45:00.000-05:00</published><updated>2008-01-15T12:50:30.528-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development"/><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="ColumnHeader"/><category scheme="http://www.blogger.com/atom/ns#" term="DataColumn"/><category scheme="http://www.blogger.com/atom/ns#" term="DataRow"/><category scheme="http://www.blogger.com/atom/ns#" term="DataSet"/><category scheme="http://www.blogger.com/atom/ns#" term="GridView"/><category scheme="http://www.blogger.com/atom/ns#" term="ListView"/><category scheme="http://www.blogger.com/atom/ns#" term="OleDb"/><category scheme="http://www.blogger.com/atom/ns#" term="OleDbAdapter"/><category scheme="http://www.blogger.com/atom/ns#" term="OleDbCommand"/><category scheme="http://www.blogger.com/atom/ns#" term="OleDbConnection"/><category scheme="http://www.blogger.com/atom/ns#" term="Siccolo"/><title type='text'>How to open Dataset from a Text File and display Text File in GridView or in ListView</title><content type='html'>New article at &lt;a href=&quot;http://www.siccolo.com/articles.asp&quot;&gt;Siccolo .NET Development Articles&lt;/a&gt; - &lt;a href=&quot;http://www.siccolo.com/Articles/CodeProject/Open_DataSet_From_TextFile/open_dataset_from_text_file.html&quot;&gt;Open Dataset from Text File - Load ListView and GridView in .NET from TextFile&lt;/a&gt; - using OleDB namespace and OleDbConnection, OleDbCommand, OleDbAdapter, DataSet, DataRow, DataColumn objects...&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/5247806902498648429/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/5247806902498648429' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/5247806902498648429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/5247806902498648429'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2008/01/how-to-open-dataset-from-text-file-and.html' title='How to open Dataset from a Text File and display Text File in GridView or in ListView'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-8762967124360312579</id><published>2007-12-26T12:28:00.000-05:00</published><updated>2007-12-26T12:30:06.441-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="NETWORK MARKETING"/><title type='text'>[off topick] - what is NETWORK MARKETING</title><content type='html'>read more at &lt;a href=&quot;http://www.whoisjuliettegray.net/Articles.html&quot;&gt;Articles from Entrepreneur, World Traveler, Health/Wealth Consultant, Mentor - Juliette Gray&lt;br /&gt;&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/8762967124360312579/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/8762967124360312579' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/8762967124360312579'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/8762967124360312579'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2007/12/off-topick-what-is-network-marketing.html' title='[off topick] - what is NETWORK MARKETING'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-2273943899463932307</id><published>2007-12-11T13:34:00.001-05:00</published><updated>2008-03-04T15:49:26.727-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development"/><category scheme="http://www.blogger.com/atom/ns#" term=".NET Development Articles"/><category scheme="http://www.blogger.com/atom/ns#" term="ManagementObject"/><category scheme="http://www.blogger.com/atom/ns#" term="ManagementObjectCollection"/><category scheme="http://www.blogger.com/atom/ns#" term="Win32_ComputerSystem"/><category scheme="http://www.blogger.com/atom/ns#" term="Win32_ConnectionShare"/><category scheme="http://www.blogger.com/atom/ns#" term="Win32_UserAccount"/><category scheme="http://www.blogger.com/atom/ns#" term="Windows Management Instrumentation"/><category scheme="http://www.blogger.com/atom/ns#" term="WMI"/><title type='text'>How to enumerate running processes using WMI and Win32_Process class</title><content type='html'>see at &lt;a href=&quot;http://www.siccolo.com/Articles/CodeProject/miscellaneous-development-tips/miscellaneous-development-tips-1.html#EnumerateProcesses_Win32_Process&quot;&gt;How to enumerate running processes using WMI and Win32_Process class&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/2273943899463932307/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/2273943899463932307' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/2273943899463932307'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/2273943899463932307'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2007/12/how-to-enumerate-running-processes.html' title='How to enumerate running processes using WMI and Win32_Process class'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-7235648203449843051</id><published>2007-12-06T16:30:00.000-05:00</published><updated>2007-12-06T16:31:11.823-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="mkdir"/><category scheme="http://www.blogger.com/atom/ns#" term="Siccolo"/><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server Development"/><category scheme="http://www.blogger.com/atom/ns#" term="T-SQL"/><category scheme="http://www.blogger.com/atom/ns#" term="xp_cmdshell"/><title type='text'>SQL Sever - How to Create a Directory (Folder) - Using xp_cmdshell and mkdir command</title><content type='html'>&lt;a href=&quot;http://www.siccolo.com/Articles/SQLScripts/how-to-create-sql-to-create-directory.html&quot;&gt;SQL Sever - How to Create a Directory (Folder) - Using xp_cmdshell and mkdir command&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/7235648203449843051/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/7235648203449843051' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7235648203449843051'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/7235648203449843051'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2007/12/sql-sever-how-to-create-directory.html' title='SQL Sever - How to Create a Directory (Folder) - Using xp_cmdshell and mkdir command'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6009241977585466007.post-204615190253569250</id><published>2007-12-06T16:26:00.000-05:00</published><updated>2007-12-06T16:28:26.727-05:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="rename"/><category scheme="http://www.blogger.com/atom/ns#" term="Siccolo"/><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server Development"/><category scheme="http://www.blogger.com/atom/ns#" term="T-SQL"/><category scheme="http://www.blogger.com/atom/ns#" term="xp_cmdshell"/><title type='text'>How to Mass Rename Files from SQL using xp_cmdshell and rename command</title><content type='html'>&lt;a href=&quot;http://www.siccolo.com/articles/sqlscripts/create-sql-to-mass_rename-files.html&quot;&gt;SQL Server - using xp_cmdshell and rename command to mass rename files&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;a href=&quot;http://www.siccolo.com&quot;&gt;Gor SQL Server?Manage It With Siccolo!&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://siccolo.blogspot.com/feeds/204615190253569250/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/6009241977585466007/204615190253569250' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/204615190253569250'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6009241977585466007/posts/default/204615190253569250'/><link rel='alternate' type='text/html' href='http://siccolo.blogspot.com/2007/12/how-to-mass-rename-files-from-sql-using.html' title='How to Mass Rename Files from SQL using xp_cmdshell and rename command'/><author><name>Siccolo</name><uri>http://www.blogger.com/profile/06292173136812769967</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>