<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://itbloggen.se/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Andreas Kviby - The DotNetNerd</title><link>http://itbloggen.se/cs/blogs/diaznet/default.aspx</link><description>Every breath I take it&amp;#39;s between those { }!</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Build: 31106.3070)</generator><item><title>Dell Latitude XT2 - Tablet PC</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2010/03/15/dell-latitude-xt2-tablet-pc.aspx</link><pubDate>Sun, 14 Mar 2010 23:09:00 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:696677</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=696677</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=696677</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2010/03/15/dell-latitude-xt2-tablet-pc.aspx#comments</comments><description>&lt;p&gt;Fick &amp;auml;ran att l&amp;aring;na en Dell Latitude XT2 fr&amp;aring;n Tankbar - Webbyr&amp;aring;n i Nyk&amp;ouml;ping (www.tankbar.com) och det resulterade i ett tekniktest som jag verkligen kan rekommendera er teknikn&amp;ouml;rdar att l&amp;auml;sa.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.sn.se/bloggar/teknikbloggen/1.540397?blogPostAction=view_post&amp;amp;postingId=19.114620"&gt;L&amp;auml;s inl&amp;auml;gget p&amp;aring; SN h&amp;auml;r&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=696677" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/teknikbloggen+-+tankbar+-+webbyr_26002300_229_3B00_n+i+Nyk_26002300_246_3B00_ping/default.aspx">teknikbloggen - tankbar - webbyr&amp;#229;n i Nyk&amp;#246;ping</category></item><item><title>Backup all databases in SQL Server Express editions</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/10/02/backup-all-databases-in-sql-server-express-editions.aspx</link><pubDate>Fri, 02 Oct 2009 15:54:37 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:682341</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=682341</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=682341</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/10/02/backup-all-databases-in-sql-server-express-editions.aspx#comments</comments><description>&lt;p&gt;I have been searching and wanting a good but simple backup solution for all my SQL Server 2008 and SQL Server 2005 databases in the free Express edition. There is as you know no maintainance plans in the express editions and they are not backed up correctly by server software built in your server os. So finally I did stumble upon a really great solution which I modified a bit and will share here for all my friends and others to use.&lt;/p&gt;  &lt;p&gt;The whole idea is to backup all databases inside a named instance and also to keep track on how many days you want to save the backed up files.&lt;/p&gt;  &lt;p&gt;I use this for my local SharePoint backups and also three servers with SQL Server. Fantastic!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_45562324.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_50137A79.png" width="462" height="92" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;My folderstructure looks like above and you can ofcourse name files and scripts and folders the way you want it.&lt;/p&gt;  &lt;p&gt;I have a folder on my root drive or data drive on my server called sqlbackup. Inside that folder I have the above structure setup. I also have a subfolder called dbfiles and in that folder all my backups will be stored.&lt;/p&gt;  &lt;h2&gt;backupscript.sql&lt;/h2&gt;  &lt;p&gt;First of all we create the backupscript.sql file and it should look like the below file contents.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;h6&gt;&lt;/h6&gt;  &lt;p&gt;&lt;font size="1"&gt;DECLARE @dateString CHAR(12), @dayStr CHAR(2), @monthStr CHAR(2), @hourStr CHAR(2), @minStr CHAR(2)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;--month variable&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;IF (SELECT LEN(CAST(MONTH(GETDATE()) AS CHAR(2))))=2&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SET @monthSTR=CAST(MONTH(GETDATE()) AS CHAR(2))&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;ELSE&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SET @monthSTR= &amp;#39;0&amp;#39; + CAST(MONTH(GETDATE()) AS CHAR(2))&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;--day variable&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;IF (SELECT LEN(CAST(DAY(GETDATE()) AS CHAR(2))))=2&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SET @daySTR=CAST(DAY(GETDATE()) AS CHAR(2))&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;ELSE&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SET @daySTR=&amp;#39;0&amp;#39; + CAST(DAY(GETDATE()) AS CHAR(2))&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;--hour variable&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;IF (SELECT LEN(DATEPART(hh, GETDATE())))=2&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SET @hourStr=CAST(DATEPART(hh, GETDATE()) AS CHAR(2))&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;ELSE&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SET @hourStr= &amp;#39;0&amp;#39; + CAST(DATEPART(hh, GETDATE()) AS CHAR(2))&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;--minute variable&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;IF (SELECT LEN(DATEPART(mi, GETDATE())))=2&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SET @minStr=CAST(DATEPART(mi, GETDATE()) AS CHAR(2))&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;ELSE&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SET @minStr= &amp;#39;0&amp;#39; + CAST(DATEPART(mi, GETDATE()) AS CHAR(2))&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;--name variable based on time stamp&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;SET @dateString=CAST(YEAR(GETDATE()) AS CHAR(4)) + @monthStr + @dayStr + @hourStr + @minStr&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;--=================================================================&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;DECLARE @IDENT INT, @sql VARCHAR(1000), @DBNAME VARCHAR(200)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;SELECT @IDENT=MIN(database_id) FROM SYS.DATABASES WHERE [database_id] &amp;gt; 0 AND NAME NOT IN (&amp;#39;TEMPDB&amp;#39;)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;WHILE @IDENT IS NOT NULL&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;BEGIN&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SELECT @DBNAME = NAME FROM SYS.DATABASES WHERE database_id = @IDENT&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;/*Change disk location here as required*/&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SELECT @SQL = &amp;#39;BACKUP DATABASE &amp;#39;+@DBNAME+&amp;#39; TO DISK = &amp;#39;&amp;#39;c:\sqlbackup\dbfiles\&amp;#39;+@DBNAME+&amp;#39;_db_&amp;#39; + @dateString +&amp;#39;.BAK&amp;#39;&amp;#39; WITH INIT&amp;#39;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; EXEC (@SQL)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; SELECT @IDENT=MIN(database_id) FROM SYS.DATABASES WHERE [database_id] &amp;gt; 0 AND database_id&amp;gt;@IDENT AND NAME NOT IN (&amp;#39;TEMPDB&amp;#39;)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;END&lt;/font&gt;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;font size="1"&gt;Remember to change the path c:\sqlbackup\dbfiles in the script above if you change your path!&lt;/font&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;So the sqlscript will backup all databases in a named instance and save them to the dbfiles folder marked with date and time.&lt;/p&gt;  &lt;p&gt;Now we will create the clearbackup.vbs script that will delete backup files older than x days in the dbfiles folder.&lt;/p&gt;  &lt;h2&gt;clearbackup.vbs &lt;/h2&gt;  &lt;p&gt;&lt;font size="1"&gt;On Error Resume Next&amp;#160; &lt;br /&gt;Dim fso, folder, files, sFolder, sFolderTarget&amp;#160;&amp;#160;&amp;#160; &lt;br /&gt;Set fso = CreateObject(&amp;quot;Scripting.FileSystemObject&amp;quot;)&amp;#160; &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#39;location of the database backup files     &lt;br /&gt;sFolder = &amp;quot;c:\sqlbackup\dbfiles&amp;quot; &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;Set folder = fso.GetFolder(sFolder)&amp;#160; &lt;br /&gt;Set files = folder.Files&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#39;used for writing to textfile - generate report on database backups deleted     &lt;br /&gt;Const ForAppending = 8 &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#39;you need to create a folder named “scripts” for ease of file management &amp;amp;      &lt;br /&gt;&amp;#39;a file inside it named “LOG.txt” for delete activity logging      &lt;br /&gt;Set objFile = fso.OpenTextFile(&amp;quot;c:\sqlbackup\LOG.txt&amp;quot;, ForAppending) &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;objFile.Write &amp;quot;================================================================&amp;quot; &amp;amp; VBCRLF &amp;amp; VBCRLF     &lt;br /&gt;objFile.Write &amp;quot;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; DATABASE BACKUP FILE REPORT&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;quot; &amp;amp; VBCRLF      &lt;br /&gt;objFile.Write &amp;quot;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; DATE:&amp;#160; &amp;quot; &amp;amp;&amp;#160;&amp;#160;&amp;#160; FormatDateTime(Now(),1)&amp;#160;&amp;#160; &amp;amp; &amp;quot;&amp;quot; &amp;amp; VBCRLF      &lt;br /&gt;objFile.Write &amp;quot;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; TIME:&amp;#160; &amp;quot; &amp;amp;&amp;#160;&amp;#160;&amp;#160; FormatDateTime(Now(),3)&amp;#160;&amp;#160; &amp;amp; &amp;quot;&amp;quot; &amp;amp; VBCRLF &amp;amp; VBCRLF      &lt;br /&gt;objFile.Write &amp;quot;================================================================&amp;quot; &amp;amp; VBCRLF &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#39;iterate thru each of the files in the database backup folder     &lt;br /&gt;For Each itemFiles In files       &lt;br /&gt;&amp;#160;&amp;#160; &amp;#39;retrieve complete path of file for the DeleteFile method and to extract       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;#39;file extension using the GetExtensionName method      &lt;br /&gt;&amp;#160;&amp;#160; a=sFolder &amp;amp; itemFiles.Name &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160; &amp;#39;retrieve file extension      &lt;br /&gt;&amp;#160;&amp;#160; b = fso.GetExtensionName(a)      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;#39;check if the file extension is BAK      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; If uCase(b)=&amp;quot;BAK&amp;quot; Then &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;#39;check if the database backups are older than 5 days     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; If DateDiff(&amp;quot;d&amp;quot;,itemFiles.DateCreated,Now()) &amp;gt;= 5 Then &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &amp;#39;Delete any old BACKUP files to cleanup folder     &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; fso.DeleteFile a       &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; objFile.WriteLine &amp;quot;BACKUP FILE DELETED: &amp;quot; &amp;amp; a      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; Else      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; objFile.WriteLine &amp;quot;BACKUP FILE IS STILL CURRENT: &amp;quot; &amp;amp; a      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; End If      &lt;br /&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; End If      &lt;br /&gt;Next&amp;#160; &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;objFile.WriteLine &amp;quot;================================================================&amp;quot; &amp;amp; VBCRLF &amp;amp; VBCRLF &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;objFile.Close &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;Set objFile = Nothing     &lt;br /&gt;Set fso = Nothing      &lt;br /&gt;Set folder = Nothing      &lt;br /&gt;Set files = Nothing&lt;/font&gt; &lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Change the x number of days to match you wishes!&lt;/p&gt; &lt;/blockquote&gt;  &lt;h2&gt;log.txt&lt;/h2&gt;  &lt;p&gt;Create a textfile called log.txt in the folder so that the script can append logs to it. The logfile will contain the log for backing up files and deleting old backup files.&lt;/p&gt;  &lt;p&gt;Now we will create the command batch file that we can schedule on the server to execute whenever we feel neccessary.&lt;/p&gt;  &lt;h2&gt;runsqlbackups.cmd&lt;/h2&gt;  &lt;p&gt;The file will look like below.&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;REM Run TSQL Script to backup databases     &lt;br /&gt;sqlcmd -S AKVIBY\SQLEXPRESS -E -i&amp;quot;c:\sqlbackup\backupscript.sql&amp;quot; &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font size="1"&gt;REM Run database backup cleanup script     &lt;br /&gt;c:\sqlbackup\clearbackup.vbs&lt;/font&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Remember to change instance and path to match your settings!&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;So schedule your runsqlbackups.cmd and it will backup all your files and store them in dbfiles folder which you can make sure is backed up on regular times by your server backup system.&lt;/p&gt;  &lt;p&gt;When you run the scheduled task you will se a command prompt like below.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_5DE5C074.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_7D949A3C.png" width="439" height="223" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;If everything is setup okey you will also find all backups inside the dbfiles folder.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_0F712E0A.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_2F2007D2.png" width="439" height="187" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Like my local backups you can see above I then mark the dbfiles folder as an Live Mesh folder and all backed up. &lt;/p&gt;  &lt;p&gt;That’s all folks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=682341" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/microsoft/default.aspx">microsoft</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/backup/default.aspx">backup</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sql+server/default.aspx">sql server</category></item><item><title>How to send Mail from Outlook to SharePoint</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/09/13/how-to-send-mail-from-outlook-to-sharepoint.aspx</link><pubDate>Sun, 13 Sep 2009 09:34:19 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:678455</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=678455</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=678455</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/09/13/how-to-send-mail-from-outlook-to-sharepoint.aspx#comments</comments><description>&lt;p&gt;I will start a step by step tutorial here which will learn you how to send e-mails from Microsoft Outlook to SharePoint.&lt;/p&gt;  &lt;p&gt;Until then you can test the product that we made to accomplish this in real life.&lt;/p&gt;  &lt;p&gt;Try it for free, goto &lt;a href="http://www.spapi.com"&gt;www.spapi.com&lt;/a&gt; and the Downloads section.&lt;/p&gt;  &lt;p&gt;The tutorial will start on the 16th of october, next week.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=678455" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/outlook+sharepoint/default.aspx">outlook sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/outlook/default.aspx">outlook</category></item><item><title>Beta testers for Outlook to SharePoint application is wanted!</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/09/12/beta-testers-for-outlook-to-sharepoint-application-is-wanted.aspx</link><pubDate>Sat, 12 Sep 2009 20:25:53 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:678310</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=678310</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=678310</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/09/12/beta-testers-for-outlook-to-sharepoint-application-is-wanted.aspx#comments</comments><description>&lt;p&gt;Last week me and my new work announced the first Beta of MailDropper for SharePoint. We are now looking for beta testers all around the world from single users to large corporate organizations.&lt;/p&gt;  &lt;p&gt;We will provide you with the software, instructions and a testpaper that you will have to fill out (Only one page!).&lt;/p&gt;  &lt;p&gt;So mail me at &lt;a href="mailto:andreas@bestpromotion.se"&gt;andreas@bestpromotion.se&lt;/a&gt; or &lt;a href="mailto:ak@gkviby.com"&gt;ak@gkviby.com&lt;/a&gt; and I will contact you and send you the software.&lt;/p&gt;  &lt;p&gt;For thoose of you that do not know what MailDropper do take a look at &lt;a href="http://www.spapi.com"&gt;www.spapi.com&lt;/a&gt; for more information and screenshots.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=678310" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/outlook+sharepoint/default.aspx">outlook sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/outlook/default.aspx">outlook</category></item><item><title>SharePointCommunity nere idag!</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/09/12/sharepointcommunity-nere-idag.aspx</link><pubDate>Sat, 12 Sep 2009 20:20:42 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:678309</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=678309</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=678309</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/09/12/sharepointcommunity-nere-idag.aspx#comments</comments><description>&lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/swedish_5F00_5AE45FA3.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="swedish" border="0" alt="swedish" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/swedish_5F00_thumb_5F00_4CA5E6B3.png" width="18" height="14" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Jag hade missat att förlänga abonnemanget på eget domän på NING Networks och idag slutade det att fungera.&lt;/p&gt;  &lt;p&gt;Men nu är det förlängt ett tag till så nu hoppas jag att den nya plattformen kommer till liv under oktober.&lt;/p&gt;  &lt;p&gt;Jag ber om ursäkt!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=678309" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category></item><item><title>MailDropper for SharePoint just hit the planet!</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/09/10/maildropper-for-sharepoint-just-hit-the-planet.aspx</link><pubDate>Thu, 10 Sep 2009 21:40:32 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:677951</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=677951</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=677951</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/09/10/maildropper-for-sharepoint-just-hit-the-planet.aspx#comments</comments><description>&lt;p&gt;MailDropper for SharePoint is finally out for testing on the market and the interest is very high. With the help of MailDropper for SharePoint it will be easy to send one or more e-mails from Microsoft Outlook into SharePoint. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/create.your.own.settings.in.maildropper_5F00_7FEC5FD7.png" target="_blank"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;margin-left:0px;border-left-width:0px;margin-right:0px;" title="create.your.own.settings.in.maildropper" border="0" alt="create.your.own.settings.in.maildropper" align="left" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/create.your.own.settings.in.maildropper_5F00_thumb_5F00_382AD6F0.png" width="149" height="320" /&gt;&lt;/a&gt; &lt;font color="#808080"&gt;&lt;em&gt;&lt;strong&gt;MailDropper allows you to configure lists you want to send emails to and save these settings as favorites.&lt;/strong&gt;&lt;/em&gt; &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;&lt;em&gt;&lt;strong&gt;MailDropper also takes the entire original message including attachments and formatting and stores it as an attachment to each item in SharePoint.&lt;/strong&gt;&lt;/em&gt; &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;strong&gt;&lt;font color="#808080"&gt;This means that anyone can search, view and open email messages in SharePoint sent from Microsoft Outlook.&lt;/font&gt;         &lt;br /&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;The configuration files can be distributed by Group Policy tools for larger organizations, including the license keys. MailDropper for SharePoint is a unique product that is easier and faster than those on the market. Simplicity and speed is our motto and in MailDropper, we have combined these things and managed to build a stable software that many have requested. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/right.click.in.outlook.send.sharepoint_5F00_45FD1CEB.png" target="_blank"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;margin-left:0px;border-left-width:0px;margin-right:0px;" title="right.click.in.outlook.send.sharepoint" border="0" alt="right.click.in.outlook.send.sharepoint" align="left" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/right.click.in.outlook.send.sharepoint_5F00_thumb_5F00_77F4BD75.png" width="177" height="320" /&gt;&lt;/a&gt;     &lt;br /&gt;Another important thing to MailDropper for SharePoint is that we will only sell it through resellers. We are now looking for retailers who want to offer their customers this product and are interested in working with a product that offers functionality that your customers do not have and want, and margins that make the deal very interesting.&lt;/p&gt;  &lt;p&gt;&amp;#160; &lt;br /&gt;&lt;/p&gt;  &lt;h2&gt;&amp;#160;&lt;/h2&gt;  &lt;h2&gt;&amp;#160;&lt;/h2&gt;  &lt;h2&gt;&amp;#160;&lt;/h2&gt;  &lt;h2&gt;October Offer reads as follows:&lt;/h2&gt;  &lt;p&gt;Buy 5-pack for only $ 1.240 from a reseller near you.&lt;/p&gt;  &lt;p&gt;Buy UNLIMITED USERS license and install within your organization on all computers for as little as $ 15.600 from a reseller near you. &lt;/p&gt;  &lt;p&gt;Go to &lt;a href="http://www.spapi.com"&gt;www.spapi.com&lt;/a&gt; for more information on MailDropper for SharePoint and contact us directly if you want to become a retailer. All retailers get free access to customized versions that have the retailer&amp;#39;s logo and contact information in the product.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/full.html.saved.in.sharepoint_5F00_57D9B0B8.png" target="_blank"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;margin-left:0px;border-left-width:0px;margin-right:0px;" title="full.html.saved.in.sharepoint" border="0" alt="full.html.saved.in.sharepoint" align="left" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/full.html.saved.in.sharepoint_5F00_thumb_5F00_4590E9F6.png" width="376" height="347" /&gt;&lt;/a&gt;     &lt;br /&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Best regards    &lt;br /&gt;Andreas Kviby&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=677951" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/outlook+sharepoint/default.aspx">outlook sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/wss/default.aspx">wss</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/visual+studio/default.aspx">visual studio</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/microsoft/default.aspx">microsoft</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/software/default.aspx">software</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/moss/default.aspx">moss</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/swedish/default.aspx">swedish</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/outlook/default.aspx">outlook</category></item><item><title>.NET consultant looking for work</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/06/23/net-consultant-looking-for-work.aspx</link><pubDate>Tue, 23 Jun 2009 14:21:29 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:451811</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=451811</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=451811</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/06/23/net-consultant-looking-for-work.aspx#comments</comments><description>&lt;p&gt;Well it was not one of the posts I planned to write when the new year bells told everyone it’s 2009! But here I am, just got canned due to lack of work. Love the company Human Data and wish them my best in the future and maybe our roads will cross once again sometime in the future.&lt;/p&gt;  &lt;p&gt;I have never got canned before in my life so this is new to me. I have always made a choice to move on, to upgrade my CV or just try to make the world a better place :)&lt;/p&gt;  &lt;p&gt;When you get canned you must suddenly plan for your future between 8 and 5 working days, strange feeling huh?&lt;/p&gt;  &lt;p&gt;I just realized that I am made to carry out smaller and shorter projects within ASP.NET, ASP.NET MVC, C#, VB.NET, SQL Server or other technologies like Windows Forms development or even development of a new application for Windows Mobile. I am fast and accurate in those kind of projects but I am not made for long term projects. So anything between 20 and 150 is my kind of case. &lt;/p&gt;  &lt;p&gt;My knowledge is deep and wide, I have been developing apps for the Microsoft world ever since VB got released on diskettes a while ago :) I have spent my whole life with VB and speak and write VB and VB.NET fluently.&lt;/p&gt;  &lt;p&gt;I now work almost fluent in both C# and VB.NET and have focused a couple of years now on SharePoint development. Just started to make some stuff in ASP.NET MVC and with my Ruby on Rails background I can tell you folks, it rocks!&lt;/p&gt;  &lt;p&gt;If you need a consultant anywhere in the world, send me an e-mail (&lt;a href="mailto:ak@gkviby.com"&gt;ak@gkviby.com&lt;/a&gt;) and you will get my CV back and my pricelist.&lt;/p&gt;  &lt;p&gt;I take on jobs from the 1st of august 2009.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=451811" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/Consultant/default.aspx">Consultant</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/Windows+Mobile/default.aspx">Windows Mobile</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/asp.net+mvc/default.aspx">asp.net mvc</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/Jobs/default.aspx">Jobs</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/vb.net/default.aspx">vb.net</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/asp.net/default.aspx">asp.net</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sql+server/default.aspx">sql server</category></item><item><title>Missa inte årets SEF!</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/06/23/missa-inte-229-rets-sef.aspx</link><pubDate>Tue, 23 Jun 2009 14:02:55 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:451634</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=451634</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=451634</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/06/23/missa-inte-229-rets-sef.aspx#comments</comments><description>&lt;p&gt;SharePoint och Exchange forum, seforum! Missa inte årets upplaga som både innehåller nördspår och vanliga spår.&lt;/p&gt;  &lt;p&gt;Lär mer på &lt;a href="http://www.seforum.se"&gt;www.seforum.se&lt;/a&gt;!&lt;/p&gt;  &lt;p&gt;Passa på att anmäla er innan den sista juni och spara pengar.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_64BD8E68.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_762DEF40.png" width="452" height="120" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=451634" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category></item><item><title>Use SharedView to collaborate in smaller teams</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/05/15/use-sharedview-to-collaborate-in-smaller-teams.aspx</link><pubDate>Fri, 15 May 2009 06:04:56 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:57374</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=57374</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=57374</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/05/15/use-sharedview-to-collaborate-in-smaller-teams.aspx#comments</comments><description>&lt;p&gt;SharedView is another small and neat freeware from Microsoft. It allows you to start a session with maximum of 15 attenders and share what window you like. You can even upload handouts to the people.&lt;/p&gt;  &lt;p&gt;My first idea is ofcourse to start using this for the work with SharePoint Community Sweden and also to be able to arrange online classes. I think this is a great tool and I hope that we will see to cool testing of here soon.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_1BD8B03E.png" target="_blank"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_68D8FA09.png" width="493" height="274" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a title="http://connect.microsoft.com/site/sitehome.aspx?SiteID=94" href="http://connect.microsoft.com/site/sitehome.aspx?SiteID=94"&gt;http://connect.microsoft.com/site/sitehome.aspx?SiteID=94&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=57374" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/education/default.aspx">education</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharedview/default.aspx">sharedview</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/remote+tools/default.aspx">remote tools</category></item><item><title>Running JavaScript and CSS inside your Web Parts</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/05/10/running-javascript-and-css-inside-your-web-parts.aspx</link><pubDate>Sun, 10 May 2009 09:06:19 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:53495</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=53495</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=53495</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/05/10/running-javascript-and-css-inside-your-web-parts.aspx#comments</comments><description>&lt;p&gt;I have been struggling with this task for a while in my development projects. The task is how to include JavaScript and CSS files in your Web Part project. There are tons of quick and dirty solutions but I decided to find a smoother way to include them.&lt;/p&gt;  &lt;p&gt;This is my solution.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_02DFD305.png" target="_blank"&gt;&lt;img title="SharePointNerd - Andreas Kviby - SharePoint - Blog" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px;" height="274" alt="SharePointNerd - Andreas Kviby - SharePoint - Blog" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_579B3BFD.png" width="588" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;I created a new class in Visual Studio 2008 and found these two excellent functions. RegisterCSS and RegisterScript. It wasn’t invented by me but I still feel I have to share this because I know that a lot of people find this hard to do.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_59C56299.png"&gt;&lt;img title="image" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px;" height="120" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_0BBD0324.png" width="594" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;So from my Web Part code I just call the RegisterCSS and send in the path to the CSS file and the this object to make sure the code gets added to the right Web Part.&lt;/p&gt;  &lt;p&gt;When I run this code inside any Web Part project it will add and put the CSS and the JavaScript at the right place and it all works like a charm.&lt;/p&gt;  &lt;p&gt;If you would like to extend this you should ofcourse make it a Web Part Editable setting where to find the CSS and the JavaScript and my recommendation is to use a standard Document Library to store them in and then let the user choose Document Library and then the particular file. Neat!&lt;/p&gt;  &lt;p&gt;Thanks for this time!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=53495" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/webparts/default.aspx">webparts</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/javascript/default.aspx">javascript</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/css/default.aspx">css</category></item><item><title>SharePoint Journal gratis!</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/23/sharepoint-journal-gratis.aspx</link><pubDate>Thu, 23 Apr 2009 09:18:08 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:47048</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=47048</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=47048</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/23/sharepoint-journal-gratis.aspx#comments</comments><description>&lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/swedishflag_5F00_27733D78.jpg" target="_blank"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="swedishflag" border="0" alt="swedishflag" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/swedishflag_5F00_thumb_5F00_7919B7CA.jpg" width="30" height="20" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Tillsammans med Understanding SharePoint Journal har jag glädjen att ge bort senaste eller valfritt nummer till 10 medlemmar på SharePoint Community Sverige.&lt;/p&gt;  &lt;p&gt;I del tre av SharePoint Journal går författaren igenom den egentillverkade fälttypen SPTags. Det är till och med 90 minuters video med.&lt;/p&gt;  &lt;p&gt;Helt hysteriskt bra material för den inbitne!&lt;/p&gt;  &lt;p&gt;För att vinna en gratis kod värd 14,95 USD skickar du en motivering på Engelska varför just du behöver SharePoint Journal och en kort text varför du tycker SharePoint Community är en bra plats. Skicka detta inklusive länken till din medlemssida på communityportalen.&lt;/p&gt;  &lt;p&gt;För till kvarn gäller så skriv på och mejla mig andreas[at]humandata[.]se.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=47048" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category></item><item><title>I am developing you a free Sharepoint product!</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/21/i-am-developing-you-a-free-sharepoint-product.aspx</link><pubDate>Tue, 21 Apr 2009 21:34:11 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:46722</guid><dc:creator>diaz.net</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=46722</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=46722</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/21/i-am-developing-you-a-free-sharepoint-product.aspx#comments</comments><description>&lt;p&gt;So here is my challenge for all you SharePoint nerds out there.&lt;/p&gt;  &lt;p&gt;I want to get your suggestions on SharePoint products missing or that be done better than the existing ones.&lt;/p&gt;  &lt;p&gt;It can be webparts, features, custom fields or whatever. Send all your crazy and wild ideas to me at my workmail below and you could win your product.&lt;/p&gt;  &lt;p&gt;I will choose one of them each month and develop it and give it away for free as a ready to install SharePoint product to the one who tipped me.&lt;/p&gt;  &lt;p&gt;&lt;img src="http://3.bp.blogspot.com/_b5onCd3KMAE/Sbvz0kPHxjI/AAAAAAAAAUc/nSb1mqzhnuI/s400/winner-win.jpg" alt="" /&gt;&lt;/p&gt;  &lt;p&gt;I do this because I need to be challenged and I trust all you out there have ideas you would like to see alive.&lt;/p&gt;  &lt;p&gt;andreas[at]humandata[.]se&lt;/p&gt;  &lt;p&gt;See you soon!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=46722" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/challenge/default.aspx">challenge</category></item><item><title>SPTags explained on 107 pages</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/21/sptags-explained-on-107-pages.aspx</link><pubDate>Tue, 21 Apr 2009 21:16:14 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:46720</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=46720</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=46720</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/21/sptags-explained-on-107-pages.aspx#comments</comments><description>&lt;p&gt;Have you ever thought about custom fields in SharePoint? Then here is your ride to success. Everything explained in details and with videos as well. You will even get to know how to present the results in various ways in webparts. &lt;/p&gt;  &lt;p&gt;It is just amazing that you actually buy a complete class, education or you can even call it a small book for only 14,95 USD per issue.&lt;/p&gt;  &lt;p&gt;I has my doubts in the beginning about buying material this way but now I am more than convinced. I am thrilled!&lt;/p&gt;  &lt;p&gt;Issue 1 and 2 was great and now Issue 3 is like past issues on steroids!&lt;/p&gt;  &lt;p&gt;&lt;a href="https://www.e-junkie.com/ecom/gb.php?cl=41816&amp;amp;c=ib&amp;amp;aff=59505"&gt;&lt;u&gt;Grab your own issue right now, right here!&lt;/u&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_6041A0E5.png" target="_blank"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_051F15C5.png" width="454" height="357" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Understanding SharePoint Journal Issue 3 – SPTags explained!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=46720" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/Understanding+SharePoint+Journal/default.aspx">Understanding SharePoint Journal</category></item><item><title>Remote Document Library Viewer</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/17/remote-document-library-viewer.aspx</link><pubDate>Fri, 17 Apr 2009 09:19:39 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:45588</guid><dc:creator>diaz.net</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=45588</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=45588</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/17/remote-document-library-viewer.aspx#comments</comments><description>&lt;p&gt;So it is finally time for some serious testing of my new WebPart for SharePoint. Made for both WSS and MOSS Document Libraries and now with even more functionality missing in standard SharePoint.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_23D441EA.png" target="_blank"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_700B89F1.png" width="660" height="195" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;What you see in the imabe above is a Document Library displayed with my DocPart WebPart. The Document Library is located in the the Root Site and named Docs. My Webpart is displaying that Document Library on a subsite with no problems.&lt;/p&gt;  &lt;p&gt;It even displays the remote document library’s Views and when you select a View it will also show you thoose columns marked for display in that particular view.&lt;/p&gt;  &lt;p&gt;All columns supports ordering.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_538E9811.png" target="_blank"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_082EF44D.png" width="239" height="183" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;You can also see it supports icons for document types and even folders. What makes my WebPart different from the built-in webpart is when you click a folder.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_27DDCE15.png" target="_blank"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://itbloggen.se/cs/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/diaznet/image_5F00_thumb_5F00_79844867.png" width="318" height="379" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;When clicked you will see folders and items inside the clicked folder as in the image above. BUT! You also see the Up… Icon which will make it easy to browse your document libraries folders. &lt;/p&gt;  &lt;p&gt;&lt;img src="http://www.thesystemseminar.com/images/green_check.jpg" alt="" /&gt;&amp;#160;&lt;strong&gt;You can display Document Libraries from any Site within the same Web Application!&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Want to testdrive this app? Want to participate the betaprogram? Send an e-mail to me at andreas[at]humandata[.]se.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=45588" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/webparts/default.aspx">webparts</category><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/Document+Libraries/default.aspx">Document Libraries</category></item><item><title>SharePoint 14 goes SharePoint 2010</title><link>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/16/sharepoint-14-goes-sharepoint-2010.aspx</link><pubDate>Thu, 16 Apr 2009 01:07:47 GMT</pubDate><guid isPermaLink="false">c4d5937e-68fd-46bf-8592-cdf35d8a73c1:45365</guid><dc:creator>diaz.net</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/rsscomments.aspx?PostID=45365</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://itbloggen.se/cs/blogs/diaznet/commentapi.aspx?PostID=45365</wfw:comment><comments>http://itbloggen.se/cs/blogs/diaznet/archive/2009/04/16/sharepoint-14-goes-sharepoint-2010.aspx#comments</comments><description>&lt;blockquote&gt;   &lt;p&gt;It’s official. Today Microsoft announced that the official name of SharePoint “14” is SharePoint 2010.&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;em&gt;&lt;a href="http://blogs.msdn.com/sharepoint/archive/2009/04/14/microsoft-sharepoint-14-is-now-microsoft-sharepoint-2010.aspx" target="_blank"&gt;Read more&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://itbloggen.se/cs/aggbug.aspx?PostID=45365" width="1" height="1"&gt;</description><category domain="http://itbloggen.se/cs/blogs/diaznet/archive/tags/sharepoint/default.aspx">sharepoint</category></item></channel></rss>