<?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/'><id>tag:blogger.com,1999:blog-5277756027683167030.comments</id><updated>2012-05-29T22:50:48.843+02:00</updated><category term='Organization Model'/><category term='Accounts Receivable'/><category term='MOSS 2007'/><category term='Custom Field Types'/><category term='SQL'/><category term='Outlook'/><category term='BDC'/><category term='SQL Server 2000'/><category term='application templates'/><category term='SQL Server'/><category term='Accounts Payable'/><category term='Dynamics AX'/><category term='Windows'/><category term='BOM'/><category term='Enterprise Portal'/><category term='WMS'/><category term='Event Handlers'/><category term='Supply Chain Management'/><category term='Fill Utility'/><category term='Axapta'/><category term='Links'/><category term='CQWP'/><category term='Master planning'/><category term='Freeware'/><category term='Visio 2007'/><category term='backup'/><category term='Reports'/><category term='Excel 2007'/><category term='authentication'/><category term='Microsoft Virtual PC'/><category term='Office'/><category term='AIF'/><category term='Office Add-ins'/><category term='SharePoint'/><category term='XML'/><category term='Workflow'/><category term='Intercompany'/><category term='PowerPoint 2007'/><category term='Search'/><category term='Word'/><category term='CEWP'/><category term='WSS 3.0'/><category term='Word 2007'/><category term='X++'/><category term='Manufacturing'/><category term='Project Accounting'/><category term='Alerts'/><category term='Inventory Management'/><category term='BI'/><category term='SharePoint Designer'/><category term='HTML'/><category term='Dynamics AX 2012'/><category term='Shipment'/><category term='Blogging Tips'/><category term='InfoPath'/><title type='text'>IT Pro Ramblings</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://patrikluca.blogspot.com/feeds/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/comments/default'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/comments/default?start-index=26&amp;max-results=25'/><author><name>Patrik Luca</name><uri>http://www.blogger.com/profile/12241736960596376811</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_YLb3OfoefzA/SqIiYJwZjDI/AAAAAAAABBY/NqJn_yrX7wg/S220/2009-08-28+augustus+2009+002.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>440</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-5316653348202547431</id><published>2012-05-29T22:50:48.843+02:00</published><updated>2012-05-29T22:50:48.843+02:00</updated><title type='text'>Hi Patrik!

I&amp;#39;m new in Sharepoint, and I need ...</title><content type='html'>Hi Patrik!&lt;br /&gt;&lt;br /&gt;I&amp;#39;m new in Sharepoint, and I need to pass values from a .../AllItems.aspx list to a .../NewForm.aspx&lt;br /&gt;&lt;br /&gt;I followed your post, step by step, and tried to adapt your script to my needs, but I failed, and I can&amp;#39;t see what the problem is :/&lt;br /&gt;I only need the values from a column. &lt;br /&gt;&lt;br /&gt;My url is &amp;quot;.../NewForm.aspx?Id Pc={@Id_x0020_Pc}&amp;quot; &lt;br /&gt;(FieldTitle=&amp;quot;Id Pc&amp;quot; FieldName=&amp;quot;Id_x0020_Pc&amp;quot;)&lt;br /&gt;&lt;br /&gt;My script is -&amp;gt;&lt;br /&gt;&lt;br /&gt;_spBodyOnLoadFunctionNames.push(&amp;quot;fillDefaultValues&amp;quot;);&lt;br /&gt;function fillDefaultValues(){&lt;br /&gt;  var qs=location.search.substring(1,location.search.length);&lt;br /&gt;  var args=qs.split(&amp;quot;&amp;amp;&amp;quot;);&lt;br /&gt;  var vals=new Object();&lt;br /&gt;  for (var i=0; i&amp;lt;args.length;i++){&lt;br /&gt;    var nameVal=args[i].split(&amp;quot;=&amp;quot;);&lt;br /&gt;    var temp=unescape(nameVal[1]).split(&amp;#39;+&amp;#39;);&lt;br /&gt;    nameVal[1]=temp.join(&amp;#39;&amp;#39;);&lt;br /&gt;    vals[nameVal[0]]=nameVal[1];&lt;br /&gt;  }&lt;br /&gt;  var title=vals[&amp;quot;Id_x0020_Pc&amp;quot;];&lt;br /&gt;  if(title==undefined)&lt;br /&gt;    return;&lt;br /&gt;  var theSelect=getTagFromIdentifierAndTitle(&amp;quot;select&amp;quot;,&amp;quot;Lookup&amp;quot;,&amp;quot;Id_x0020_Pc&amp;quot;);&lt;br /&gt;  if(theSelect==null){&lt;br /&gt;    var theInput=getTagFromIdentifierAndTitle(&amp;quot;input&amp;quot;,&amp;quot;&amp;quot;,&amp;quot;Id_x0020_Pc&amp;quot;);&lt;br /&gt;    if(theInput==null){&lt;br /&gt;      return;&lt;br /&gt;    }&lt;br /&gt;    theInput.value=title;&lt;br /&gt;    document.getElementById(theInput.id).readOnly=true;&lt;br /&gt;  }&lt;br /&gt;  else{&lt;br /&gt;    theSelect.value=title;&lt;br /&gt;    document.getElementById(theSelect.id).readOnly=true;&lt;br /&gt;  }&lt;br /&gt;  &lt;br /&gt;  function getTagFromIdentifierAndTitle(tagName,identifier,title){&lt;br /&gt;  var len=identifier.length;&lt;br /&gt;  var tags=document.getElementsByTagName(tagName);&lt;br /&gt;  for(var i=0;i&amp;lt;tags.length;i++){&lt;br /&gt;    var tempString=tags[i].id;&lt;br /&gt;    if(tags[i].title==title &amp;amp;&amp;amp; (identifier==&amp;quot;&amp;quot; ||&lt;br /&gt;       tempString.indexOf(identifier)==tempString.length - len)){&lt;br /&gt;      return tags[i];&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;  return null;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;what did I do wrong? :?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1818329500893747380/comments/default/5316653348202547431'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1818329500893747380/comments/default/5316653348202547431'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2008/01/how-to-set-default-values-based-on_20.html?showComment=1338324648843#c5316653348202547431' title=''/><author><name>Martin</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2008/01/how-to-set-default-values-based-on_20.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-1818329500893747380' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/1818329500893747380' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-671038719'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='29 May, 2012 22:50'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-142699262396725652</id><published>2012-05-08T15:38:09.061+02:00</published><updated>2012-05-08T15:38:09.061+02:00</updated><title type='text'>Followed all the steps but when generating the doc...</title><content type='html'>Followed all the steps but when generating the document from template I got the error:&lt;br /&gt;&lt;br /&gt;Exception has been thrown by the target of an invocation.&lt;br /&gt;&lt;br /&gt;I did it for CustTable form and document data source is CustTable as well. Any ideas?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1698533989469134083/comments/default/142699262396725652'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1698533989469134083/comments/default/142699262396725652'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2012/01/dynamics-ax-2012-office-add-ins.html?showComment=1336484289061#c142699262396725652' title=''/><author><name>alex000x</name><uri>http://www.blogger.com/profile/00670879120338932999</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2012/01/dynamics-ax-2012-office-add-ins.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-1698533989469134083' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/1698533989469134083' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-794018306'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='08 May, 2012 15:38'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-5673500658468274089</id><published>2012-05-01T20:56:34.101+02:00</published><updated>2012-05-01T20:56:34.101+02:00</updated><title type='text'>Hi AML,
I&amp;#39;m afraid I cannot help you with thes...</title><content type='html'>Hi AML,&lt;br /&gt;I&amp;#39;m afraid I cannot help you with these questions: never tried this kind of stuff. Feel free to share your findings if you are able to achieve this functionality.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/5673500658468274089'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/5673500658468274089'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html?showComment=1335898594101#c5673500658468274089' title=''/><author><name>Patrik Luca</name><uri>http://www.blogger.com/profile/12241736960596376811</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='13363711819564113423'/><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_YLb3OfoefzA/SqIiYJwZjDI/AAAAAAAABBY/NqJn_yrX7wg/S220/2009-08-28+augustus+2009+002.JPG'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-4712171932867476067' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/4712171932867476067' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-58284730'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='01 May, 2012 20:56'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-7781401087092090979</id><published>2012-04-27T04:53:26.744+02:00</published><updated>2012-04-27T04:53:26.744+02:00</updated><title type='text'>Hi Sir Patrick,

Is it possible to run a macro cod...</title><content type='html'>Hi Sir Patrick,&lt;br /&gt;&lt;br /&gt;Is it possible to run a macro code(VBA) in x++?&lt;br /&gt;like inserting new row?&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;&lt;br /&gt;AML</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/7781401087092090979'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/7781401087092090979'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html?showComment=1335495206744#c7781401087092090979' title=''/><author><name>AML</name><uri>http://www.blogger.com/profile/06022128121080932928</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-4712171932867476067' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/4712171932867476067' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-226225606'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='27 April, 2012 04:53'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-8852367323608075418</id><published>2012-04-17T04:48:01.713+02:00</published><updated>2012-04-17T04:48:01.713+02:00</updated><title type='text'>Hi Patrick,

For example, i have about 10 records ...</title><content type='html'>Hi Patrick,&lt;br /&gt;&lt;br /&gt;For example, i have about 10 records in excel sheet, then i want to insert in the 5th record, is it possible?&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;&lt;br /&gt;AML</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/8852367323608075418'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/8852367323608075418'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html?showComment=1334630881713#c8852367323608075418' title=''/><author><name>AML</name><uri>http://www.blogger.com/profile/06022128121080932928</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-4712171932867476067' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/4712171932867476067' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-226225606'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='17 April, 2012 04:48'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-5044449112457507001</id><published>2012-04-10T08:52:50.246+02:00</published><updated>2012-04-10T08:52:50.246+02:00</updated><title type='text'>Hi Sir Patrik,

Thanks for replying.

What I mean ...</title><content type='html'>Hi Sir Patrik,&lt;br /&gt;&lt;br /&gt;Thanks for replying.&lt;br /&gt;&lt;br /&gt;What I mean is that, the excel sheet has already values, I just want to insert an empty row/rows to add data in the middle. please help me... thanks. God Bless....&lt;br /&gt;&lt;br /&gt;Regrads,&lt;br /&gt;&lt;br /&gt;AML</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/5044449112457507001'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/5044449112457507001'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html?showComment=1334040770246#c5044449112457507001' title=''/><author><name>AML</name><uri>http://www.blogger.com/profile/06022128121080932928</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-4712171932867476067' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/4712171932867476067' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-226225606'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='10 April, 2012 08:52'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-3974340726711819244</id><published>2012-04-07T15:11:02.692+02:00</published><updated>2012-04-07T15:11:02.692+02:00</updated><title type='text'>Nice video.Thanks for providing this link.This int...</title><content type='html'>Nice video.Thanks for providing this link.This interview covers every aspect of this project.This make easy for us to learn more about Dynamics AX.Now i am able to identify the reason for the successful /failure ERP implementation.&lt;br /&gt;&lt;a href="http://www.panayainc.com/" rel="nofollow"&gt;oracle ebs&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/7101889224790554278/comments/default/3974340726711819244'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/7101889224790554278/comments/default/3974340726711819244'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2011/02/microsoft-dynamics-ax-2012can.html?showComment=1333804262692#c3974340726711819244' title=''/><author><name>Alan Daug</name><uri>http://www.blogger.com/profile/13336846200329937650</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2011/02/microsoft-dynamics-ax-2012can.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-7101889224790554278' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/7101889224790554278' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1455176897'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='07 April, 2012 15:11'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-6036845170905501541</id><published>2012-04-06T14:22:01.382+02:00</published><updated>2012-04-06T14:22:01.382+02:00</updated><title type='text'>I like this post. it&amp;#39;s really great.http://ran...</title><content type='html'>I like this post. it&amp;#39;s really great.http://rankroots.com/</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1310403830055069330/comments/default/6036845170905501541'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1310403830055069330/comments/default/6036845170905501541'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2009/04/add-url-to-description-of-sharepoint.html?showComment=1333714921382#c6036845170905501541' title=''/><author><name>rankroots</name><uri>http://rankroots.com/</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2009/04/add-url-to-description-of-sharepoint.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-1310403830055069330' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/1310403830055069330' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-659751725'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='06 April, 2012 14:22'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-6628018663077015821</id><published>2012-04-04T22:39:56.067+02:00</published><updated>2012-04-04T22:39:56.067+02:00</updated><title type='text'>Hi AML,

In fact you specify the row and column co...</title><content type='html'>Hi AML,&lt;br /&gt;&lt;br /&gt;In fact you specify the row and column coordinates with code &lt;i&gt;sysExcelWorksheetBackOrder.cells().item(i,j)&lt;/i&gt;.&lt;br /&gt;i is then the number of the row in the worksheet, j the number of the column.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/6628018663077015821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/6628018663077015821'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html?showComment=1333571996067#c6628018663077015821' title=''/><author><name>Patrik Luca</name><uri>http://www.blogger.com/profile/12241736960596376811</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='13363711819564113423'/><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_YLb3OfoefzA/SqIiYJwZjDI/AAAAAAAABBY/NqJn_yrX7wg/S220/2009-08-28+augustus+2009+002.JPG'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-4712171932867476067' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/4712171932867476067' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-58284730'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='04 April, 2012 22:39'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-4467354404267215542</id><published>2012-04-04T04:24:22.222+02:00</published><updated>2012-04-04T04:24:22.222+02:00</updated><title type='text'>Hi,

Do you have any idea how to insert row/rows u...</title><content type='html'>Hi,&lt;br /&gt;&lt;br /&gt;Do you have any idea how to insert row/rows using x++ code?&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;&lt;br /&gt;AML</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/4467354404267215542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/4467354404267215542'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html?showComment=1333506262222#c4467354404267215542' title=''/><author><name>AML</name><uri>http://www.blogger.com/profile/06022128121080932928</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-4712171932867476067' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/4712171932867476067' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-226225606'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='04 April, 2012 04:24'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-5653419720336363213</id><published>2012-04-03T18:17:37.703+02:00</published><updated>2012-04-03T18:17:37.703+02:00</updated><title type='text'>perfect</title><content type='html'>perfect</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/8249087586362689335/comments/default/5653419720336363213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/8249087586362689335/comments/default/5653419720336363213'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2011/10/print-ranges-on-generated-design-of.html?showComment=1333469857703#c5653419720336363213' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2011/10/print-ranges-on-generated-design-of.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-8249087586362689335' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/8249087586362689335' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-783270576'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='03 April, 2012 18:17'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-2148071508947916840</id><published>2012-03-28T13:30:10.674+02:00</published><updated>2012-03-28T13:30:10.674+02:00</updated><title type='text'>thanks</title><content type='html'>thanks</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/7101889224790554278/comments/default/2148071508947916840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/7101889224790554278/comments/default/2148071508947916840'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2011/02/microsoft-dynamics-ax-2012can.html?showComment=1332934210674#c2148071508947916840' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2011/02/microsoft-dynamics-ax-2012can.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-7101889224790554278' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/7101889224790554278' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-866191951'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='28 March, 2012 13:30'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-2250012171718899763</id><published>2012-03-28T07:15:27.385+02:00</published><updated>2012-03-28T07:15:27.385+02:00</updated><title type='text'>I cant use it. There are error message:

&lt;i&gt;Method...</title><content type='html'>I cant use it. There are error message:&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Method &amp;#39;add&amp;#39; in COM object of class &amp;#39;Sheets&amp;#39; returned error code 0x800A03EC () which means: Add method of Sheets class failed.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Can you explain to me?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/2250012171718899763'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4712171932867476067/comments/default/2250012171718899763'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html?showComment=1332911727385#c2250012171718899763' title=''/><author><name>Billy</name><uri>http://www.blogger.com/profile/10540890990152164252</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2010/04/export-to-excel-with-x-code-sequel.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-4712171932867476067' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/4712171932867476067' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1873547971'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='28 March, 2012 07:15'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-7118490767500531088</id><published>2012-03-14T21:29:01.140+01:00</published><updated>2012-03-14T21:29:01.140+01:00</updated><title type='text'>&lt;b&gt;T H A N K   Y O U !&lt;/b&gt;

Christy
Boston, MA 
US...</title><content type='html'>&lt;b&gt;T H A N K   Y O U !&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Christy&lt;br /&gt;Boston, MA &lt;br /&gt;USA</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/7957871919751504917/comments/default/7118490767500531088'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/7957871919751504917/comments/default/7118490767500531088'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2009/01/invalid-look-up-value-durig-upload-of.html?showComment=1331756941140#c7118490767500531088' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2009/01/invalid-look-up-value-durig-upload-of.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-7957871919751504917' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/7957871919751504917' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-2108587550'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='14 March, 2012 21:29'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-1250635243212573559</id><published>2012-03-12T11:39:48.905+01:00</published><updated>2012-03-12T11:39:48.905+01:00</updated><title type='text'>When i drop a field or i use the command insert as...</title><content type='html'>When i drop a field or i use the command insert as value, i don&amp;#39;t view the field in the word document. I only can use the function insert as label. In many cases i receive the message &amp;quot;File contains corrupted data&amp;quot;. Have you an idea?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1698533989469134083/comments/default/1250635243212573559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1698533989469134083/comments/default/1250635243212573559'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2012/01/dynamics-ax-2012-office-add-ins.html?showComment=1331548788905#c1250635243212573559' title=''/><author><name>Edo</name><uri>http://www.blogger.com/profile/15347627953971744778</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2012/01/dynamics-ax-2012-office-add-ins.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-1698533989469134083' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/1698533989469134083' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1799117322'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='12 March, 2012 11:39'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-967874866626991994</id><published>2012-02-25T14:56:01.874+01:00</published><updated>2012-02-25T14:56:01.874+01:00</updated><title type='text'>nice blog.i like it..</title><content type='html'>nice blog.i like it..</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/7171073592943263840/comments/default/967874866626991994'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/7171073592943263840/comments/default/967874866626991994'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2009/04/suppress-overwrite-question-while.html?showComment=1330178161874#c967874866626991994' title=''/><author><name>Java Training</name><uri>http://www.techmentro.com</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2009/04/suppress-overwrite-question-while.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-7171073592943263840' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/7171073592943263840' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-2074982853'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='25 February, 2012 14:56'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-6680925729773924485</id><published>2012-02-24T12:21:40.458+01:00</published><updated>2012-02-24T12:21:40.458+01:00</updated><title type='text'>Hi Patrik,
I am new baby of sharepoint.Your blog i...</title><content type='html'>Hi Patrik,&lt;br /&gt;I am new baby of sharepoint.Your blog is very helpful for me atleast giving me some kind of confidence that I can do programming on sharepoint.&lt;br /&gt;I have created a list. It has 4 fields including Title. Based on the user selection from dropdown list i want to show only revelant field.Your quick help is appreciable.&lt;br /&gt;list field are title field,dropdown (values IP,TX),Fibre,Peering. I want that initally Title and dropdown are in NewForm.aspx page and when user select IP from dropdown Peering field should be shown to user.&lt;br /&gt;Can you please help me? I need it on urgent basis.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1818329500893747380/comments/default/6680925729773924485'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1818329500893747380/comments/default/6680925729773924485'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2008/01/how-to-set-default-values-based-on_20.html?showComment=1330082500458#c6680925729773924485' title=''/><author><name>Ponam</name><uri>http://www.blogger.com/profile/17921208722969601802</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2008/01/how-to-set-default-values-based-on_20.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-1818329500893747380' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/1818329500893747380' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1502002665'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='24 February, 2012 12:21'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-8040602964309308875</id><published>2012-02-23T18:36:36.786+01:00</published><updated>2012-02-23T18:36:36.786+01:00</updated><title type='text'>This very very helpful! Thank you!</title><content type='html'>This very very helpful! Thank you!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/814645071962701220/comments/default/8040602964309308875'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/814645071962701220/comments/default/8040602964309308875'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2011/11/use-worker-in-multiple-legal-entities.html?showComment=1330018596786#c8040602964309308875' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2011/11/use-worker-in-multiple-legal-entities.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-814645071962701220' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/814645071962701220' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1232553617'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='23 February, 2012 18:36'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-3428103828824813458</id><published>2012-02-01T10:43:06.670+01:00</published><updated>2012-02-01T10:43:06.670+01:00</updated><title type='text'>Great thoughts you got there, believe I may possib...</title><content type='html'>Great thoughts you got there, believe I may possibly try just some of it throughout my daily life.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   &lt;br /&gt; &lt;a href="http://www.cprime.com/" rel="nofollow"&gt;Project Management Training&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/6709801617449375824/comments/default/3428103828824813458'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/6709801617449375824/comments/default/3428103828824813458'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2012/01/purchase-orders-in-project-management.html?showComment=1328089386670#c3428103828824813458' title=''/><author><name>Unknown</name><uri>http://www.blogger.com/profile/02883667235696723140</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2012/01/purchase-orders-in-project-management.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-6709801617449375824' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/6709801617449375824' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1051865285'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='01 February, 2012 10:43'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-1825757931620991331</id><published>2012-01-27T05:51:59.006+01:00</published><updated>2012-01-27T05:51:59.006+01:00</updated><title type='text'>I really thank you for the link to technet, this a...</title><content type='html'>I really thank you for the link to technet, this answered every question i was looking for!@bose&lt;br /&gt;&lt;a href="http://sampletemplates.org/purchase-order-letter-template.html" rel="nofollow"&gt;Purchase Order Letter Template&lt;/a&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/6709801617449375824/comments/default/1825757931620991331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/6709801617449375824/comments/default/1825757931620991331'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2012/01/purchase-orders-in-project-management.html?showComment=1327639919006#c1825757931620991331' title=''/><author><name>Bose</name><uri>http://www.blogger.com/profile/09850162650223557313</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2012/01/purchase-orders-in-project-management.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-6709801617449375824' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/6709801617449375824' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-720884669'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='27 January, 2012 05:51'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-3801850169664002952</id><published>2012-01-25T16:48:43.902+01:00</published><updated>2012-01-25T16:48:43.902+01:00</updated><title type='text'>Thanks so much!!  This is exactly what was happeni...</title><content type='html'>Thanks so much!!  This is exactly what was happening to me and your little snipit of code did the trick.  Excellent post.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4964499687798851161/comments/default/3801850169664002952'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/4964499687798851161/comments/default/3801850169664002952'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2008/03/40-application-templates-where-are-site.html?showComment=1327506523902#c3801850169664002952' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2008/03/40-application-templates-where-are-site.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-4964499687798851161' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/4964499687798851161' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1165908091'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='25 January, 2012 16:48'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-559840343361170144</id><published>2012-01-23T14:52:53.659+01:00</published><updated>2012-01-23T14:52:53.659+01:00</updated><title type='text'>i am trying to use this in sharepoint2010 but no s...</title><content type='html'>i am trying to use this in sharepoint2010 but no success. Its not showing any error but does not show anything.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1310403830055069330/comments/default/559840343361170144'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1310403830055069330/comments/default/559840343361170144'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2009/04/add-url-to-description-of-sharepoint.html?showComment=1327326773659#c559840343361170144' title=''/><author><name>Deepali</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2009/04/add-url-to-description-of-sharepoint.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-1310403830055069330' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/1310403830055069330' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-412813152'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='23 January, 2012 14:52'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-5257271089047894034</id><published>2012-01-13T22:47:56.413+01:00</published><updated>2012-01-13T22:47:56.413+01:00</updated><title type='text'>Hey Patrik, that does sounds nice. I can&amp;#39;t wai...</title><content type='html'>Hey Patrik, that does sounds nice. I can&amp;#39;t wait to get my hands on it myself too.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/5977473266527486899/comments/default/5257271089047894034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/5977473266527486899/comments/default/5257271089047894034'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2012/01/intercompany-timesheets.html?showComment=1326491276413#c5257271089047894034' title=''/><author><name>Steven</name><uri>http://www.blogger.com/profile/10300171682627696735</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2012/01/intercompany-timesheets.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-5977473266527486899' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/5977473266527486899' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1798415005'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='13 January, 2012 22:47'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-5707491112240181340</id><published>2012-01-05T11:07:09.740+01:00</published><updated>2012-01-05T11:07:09.740+01:00</updated><title type='text'>Thanks, saved my and my customers time.</title><content type='html'>Thanks, saved my and my customers time.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/8304011098796716121/comments/default/5707491112240181340'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/8304011098796716121/comments/default/5707491112240181340'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2011/08/intercompany-with-direct-delivery-and.html?showComment=1325758029740#c5707491112240181340' title=''/><author><name>Anonymous</name><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img1.blogblog.com/img/blank.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2011/08/intercompany-with-direct-delivery-and.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-8304011098796716121' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/8304011098796716121' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-188374933'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='05 January, 2012 11:07'/></entry><entry><id>tag:blogger.com,1999:blog-5277756027683167030.post-1407103649592128951</id><published>2011-11-28T23:39:51.219+01:00</published><updated>2011-11-28T23:39:51.219+01:00</updated><title type='text'>Thanks Man! It really helped.</title><content type='html'>Thanks Man! It really helped.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1800445430810339013/comments/default/1407103649592128951'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5277756027683167030/1800445430810339013/comments/default/1407103649592128951'/><link rel='alternate' type='text/html' href='http://patrikluca.blogspot.com/2009/02/sharepoint-not-reachable-through.html?showComment=1322519991219#c1407103649592128951' title=''/><author><name>Vedang Purohit</name><uri>http://www.blogger.com/profile/08943740382060843919</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='http://2.bp.blogspot.com/_-yN71DxytUw/TIUCnwgb1HI/AAAAAAAAMb4/CsTjwaWZuxw/S220/IMG_6692.JPG'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://patrikluca.blogspot.com/2009/02/sharepoint-not-reachable-through.html' ref='tag:blogger.com,1999:blog-5277756027683167030.post-1800445430810339013' source='http://www.blogger.com/feeds/5277756027683167030/posts/default/1800445430810339013' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1247912890'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.displayTime' value='28 November, 2011 23:39'/></entry></feed>
