User Toni Frankola - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:26:03Z http://stackoverflow.com/feeds/user/15626 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1849708/how-to-add-a-new-webpart-in-a-specific-group-after-it-is-deployed/1850376#1850376 0 Answer by Toni Frankola for How to add a new WebPart in a specific Group after it is deployed Toni Frankola 2009-12-04T23:34:08Z 2009-12-04T23:34:08Z <p>You need to update your web part manifest file and add the following:</p> <pre><code>&lt;Property Name=”Group” Value=”Custom” /&gt; </code></pre> <p>Follow the instructions <a href="http://claytonj.wordpress.com/2009/01/08/how-to-add-a-webpart-into-a-special-group-other-than-miscellaneous/" rel="nofollow">here</a> for details.</p> http://stackoverflow.com/questions/1665425/how-to-upload-multiple-infopath-forms-in-single-document-library-in-sharepoint/1666236#1666236 0 Answer by Toni Frankola for how to upload multiple infopath forms in single document library in sharepoint? Toni Frankola 2009-11-03T09:32:21Z 2009-11-03T09:32:21Z <p>The only way to do it would be to rename the each form and use unique name. Uploading the form with same name would result in overwriting the existing one.</p> <p>In case you are submitting form directly from InfoPath then you need to change your Main Submit method. It allows you to define a name form will get as submitted. Combine it with something unique e.g. today() or something similar.</p> http://stackoverflow.com/questions/1653745/hyperlinks-are-not-working-in-excel-sheet-in-sharepoint/1655174#1655174 0 Answer by Toni Frankola for Hyperlinks are not working in excel sheet in sharepoint Toni Frankola 2009-10-31T18:25:26Z 2009-10-31T18:25:26Z <p>If you are talking about Excel Web Access (displaying your Excel as a web page) AFAIK it does not support (it does not render) links.</p> http://stackoverflow.com/questions/1654144/how-to-filter-list-using-caml-query-from-a-custom-search-field/1655170#1655170 0 Answer by Toni Frankola for How to filter list using CAML query from a custom search field? Toni Frankola 2009-10-31T18:24:05Z 2009-10-31T18:24:05Z <p>I recently posted two articles (<a href="http://www.sharepointusecases.com/index.php/2009/08/use-case-phonebook-search-no-code-required/" rel="nofollow">part 1</a> | <a href="http://www.sharepointusecases.com/index.php/2009/10/search-as-you-type-for-links-list/" rel="nofollow">part 2</a>) with very similar solution done with JavaScript. It allows you to do "search as you type" over a single list.</p> <p>It is not exactly the thing you are looking for but it might help.</p> http://stackoverflow.com/questions/1603666/will-visual-studio-2010-support-sharepoint-2007-development/1604105#1604105 1 Answer by Toni Frankola for Will Visual Studio 2010 support Sharepoint 2007 development? Toni Frankola 2009-10-21T22:52:25Z 2009-10-22T15:21:33Z <p>As far as I remember the session here at SharePoint Las Vegas conference, the new and cool Visual Studio 2010 stuff will only be available for SharePoint 2010... sorry...</p> <p>You will probably still be able to do some hacks and move stuff from new VS to old SharePoint, but new features are not backward compatible.</p> http://stackoverflow.com/questions/1509374/calculated-column-formula/1509534#1509534 1 Answer by Toni Frankola for Calculated Column formula Toni Frankola 2009-10-02T13:34:14Z 2009-10-02T13:34:14Z <p>Try something like this:</p> <pre><code>=IF(SourceColumn="Major",3,IF(SourceColumn="Moderate",2,1)) </code></pre> http://stackoverflow.com/questions/1478916/sharepoint-content-type-deleting-columns-from-the-parent/1482181#1482181 3 Answer by Toni Frankola for SharePoint content type : deleting columns from the parent Toni Frankola 2009-09-26T21:05:26Z 2009-09-26T21:05:26Z <p>Use this syntax in your content type definition:</p> <pre><code>&lt;FieldRefs&gt; &lt;RemoveFieldRef ID="{fa564e0f-0c70-4ab9-b863-0177e6ddd247}" Name ="Title" /&gt; &lt;/FieldRefs&gt; </code></pre> <p>You must find proper ID for each filed you want to remove.</p> http://stackoverflow.com/questions/1464314/sftp-with-sharepoint-when-live-over-the-internet/1464731#1464731 6 Answer by Toni Frankola for SFTP with SharePoint when live over the internet Toni Frankola 2009-09-23T08:34:15Z 2009-09-23T11:11:21Z <p>Well SharePoint does not use FTP at all. It's files are being stored directly to database so there is no need for FTP. </p> <p>By default it uses HTTP/HTTPS for file upload/download from web and WebDAV in case you are using multiple upload / explorer view.</p> <p>In case you want to protect your files I would advise publishing your site via HTTPS only.</p> http://stackoverflow.com/questions/1019809/need-technology-recommendation-suggestion/1417452#1417452 0 Answer by Toni Frankola for Need technology recommendation/suggestion Toni Frankola 2009-09-13T10:53:17Z 2009-09-13T11:15:19Z <p>If you are on Microsoft stack I would definitely recommend SharePoint for this scenario. As it seems to be very simple you can go with Windows SharePoint Services edition because it is free and it has everything you need.</p> <p>You are right when you say that ShartePoint workflow are bit limited. IMHO the best way to overcome that limitation is to purchase <a href="http://www.nintex.com/en-US/Products/Pages/Workflow2007.aspx" rel="nofollow">Nintex workflow</a> to create your workflows. It is cost effective solution that can help you design workflows you need. You can find workflow samples inside the product (as workflow templates) and on the web site.</p> http://stackoverflow.com/questions/1322095/sharepoint-how-can-i-clean-it-up-without-reinstalling/1322136#1322136 1 Answer by Toni Frankola for SharePoint: How can I clean it up, without reinstalling? Toni Frankola 2009-08-24T12:38:56Z 2009-08-24T12:38:56Z <ol> <li>If you are created custom columns on Document Library level you just need to delete Document Library</li> <li>In case you created custom columns at site collection level you should delete your site collection and create a new one. New site collection will not be affected unless you made some non-supported customizations to "12 hive".</li> </ol> <p>In both cases you can solve the problem without reinstallation.</p> <p>Hope it helps,</p> http://stackoverflow.com/questions/1220787/site-title-in-sharepoint/1221051#1221051 2 Answer by Toni Frankola for Site title in sharepoint Toni Frankola 2009-08-03T07:25:59Z 2009-08-03T07:25:59Z <p>Use the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.aspx" rel="nofollow">SPWeb class</a> to retrieve <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.title.aspx" rel="nofollow">title property</a>.</p> <p>Sample code:</p> <pre><code>SPWeb oWebsite = SPContext.Current.Site.OpenWeb("Website_URL"); string siteTitle = oWebSite.Title; </code></pre> <p>Resources:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb%5Fproperties.aspx" rel="nofollow">SPWeb Properties</a></li> </ul> http://stackoverflow.com/questions/1213037/infopath-saveas-in-sharepoint-overwriting/1213098#1213098 2 Answer by Toni Frankola for Infopath saveas in sharepoint overwriting Toni Frankola 2009-07-31T15:11:16Z 2009-07-31T15:11:16Z <p>Well you need to add something else, a dynamic and unique value as part of your form name. This can be done without custom code, from InfoPath Interface.</p> <p>Configure new submit option and use a formula to generate form name. In my case I am using the following: </p> <pre><code>concat(YourFieldValue; now()) </code></pre> <p>It will concatenate value from your field and current date-time. In case you have some other unique values on your for like username add these to the concatenate function as well.</p> <p><img src="http://www.sharepointusecases.com/wp-content/uploads/2009/07/infopath%5Fsubmit.png" alt="alt text" /></p> http://stackoverflow.com/questions/1192718/calculate-number-of-keywords-in-xslt 0 Calculate number of keywords in XSLT Toni Frankola 2009-07-28T08:37:22Z 2009-07-28T10:36:01Z <p>Let's say I have the following XML structure:</p> <pre><code>&lt;entry&gt; &lt;countries&gt;USA, Australia, Canada&lt;/countries&gt; &lt;/entry&gt; &lt;entry&gt; &lt;countries&gt;USA, Australia&lt;/countries&gt; &lt;/entry&gt; &lt;entry&gt; &lt;countries&gt;Australia, Belgium&lt;/countries&gt; &lt;/entry&gt; &lt;entry&gt; &lt;countries&gt;Croatia&lt;/countries&gt; &lt;/entry&gt; </code></pre> <p>I would like to count number of instances for each country appears in these entries. I can only use client side XSLT (no custom server code allowed). The end results needs to look like this:</p> <pre> Country | Count -----------|-------- Australia | 3 USA | 2 Belgium | 1 Canada | 1 Croatia | 1 </pre> <p>As Mike pointed-out this XML structure could be improved, however it is produced by 3rd party system and I cannot change it.</p> <p>Is it possible to achieve this XSLT and if so how?</p> http://stackoverflow.com/questions/1185186/question-web-part/1185622#1185622 6 Answer by Toni Frankola for Question web part Toni Frankola 2009-07-26T21:37:18Z 2009-07-27T13:20:53Z <p>Well, there is a <a href="http://office.microsoft.com/en-us/sharepointtechnology/HA102085781033.aspx" rel="nofollow">built-in feature, called Survey</a>, that does exactly what you described.</p> <p>Depending on your needs you could still use Survey web part but create your own custom logic to fill or display survey results.</p> <p>The third option might for filling surveys might be Infopath. Check <a href="http://blogs.msdn.com/infopath/archive/2007/01/24/survey-creator.aspx" rel="nofollow">this article</a> for ideas. Please note: Special licensing applies to Infopath and Infopath Forms Services and you might not have this licensed. It is a bit complicated and it is out of scope for this question.</p> http://stackoverflow.com/questions/1184879/setting-up-a-sandbox-dev-environment-for-sharepoint/1187615#1187615 0 Answer by Toni Frankola for Setting up a sandbox dev environment for Sharepoint Toni Frankola 2009-07-27T11:15:00Z 2009-07-27T11:15:00Z <p>I would just like to add the following to other great answers:</p> <ul> <li>Use Windows 2008 Hyper-V as your host operating system. In my case it had much better performance than Vista on same machine</li> <li>In case you plan to develop for SharePoint+CRM there is <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=dd939ed9-87a5-4c13-b212-a922cc02b469&amp;displaylang=en" rel="nofollow">MS prepared virtual machine</a> with both. Unfortunately it is available on to MBS partners. <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=67f93dcb-ada8-4db5-a47b-df17e14b2c74&amp;displaylang=en" rel="nofollow">SharePoint only machine</a> is publicly available. Both machines will expire after 30 days, but just apply your product key and you will prolong it's life for additional year. </li> </ul> http://stackoverflow.com/questions/1183564/how-do-i-set-the-date-to-be-displayed-in-a-sharepoint-calendar/1184342#1184342 0 Answer by Toni Frankola for How do I set the date to be displayed in a sharepoint calendar Toni Frankola 2009-07-26T11:29:36Z 2009-07-26T11:29:36Z <p>Calendar view always shows current week/month and there are no OOTB way to change that. I would recommend displaying your events in All events view. It is not as fancy as calendar view but I think I would be great for your scenario. Use your browser to add Calendar web part to home page of your site, edit properties of that web part and change web part view from "Calendar" to "All events".</p> <p><img src="http://www.sharepointusecases.com/wp-content/uploads/2009/07/calendar-view.png" alt="Calendar as All Events view on a Team Site" /></p> <p><hr /></p> <p>If you still need to display everything in a calendar, fire-up Visual Studio and create your own. The problem with default web part is it's CAML query. It can only accepts static time range values e.g. Current Month. In order to achieve what you want you will have to create dynamic CAML query to retrieve what you need. Take a look <a href="http://www.codeproject.com/KB/sharepoint/Custom%5FCalendar%5FWeb%5FPart.aspx" rel="nofollow">at this article</a> for ideas.</p> http://stackoverflow.com/questions/1172050/sharepoint-how-to-agregate-announcements-from-sub-sites-onto-main-site/1172847#1172847 3 Answer by Toni Frankola for Sharepoint - How to agregate Announcements from sub-sites onto main site Toni Frankola 2009-07-23T16:09:11Z 2009-07-23T16:09:11Z <p>In case you have MOSS, you should use Content Query Web Part here is the <a href="http://office.microsoft.com/en-us/sharepointdesigner/HA101741341033.aspx" rel="nofollow">way to do it</a>. </p> <p>You can achieve the same by <a href="http://office.microsoft.com/en-us/sharepointdesigner/HA100991441033.aspx" rel="nofollow">using Data View Web Part</a>.</p> <p>The third option is to create a custom code to do that, but since you mentioned that you are new to SharePoint I would advise against since that might be a bit complicated and it cannot be compared to the strength of built-in web parts.</p> <p>The thing you should consider here is security. If a UserA from DeptA does not have permission to read Announcements from SiteB then the thing you are building does not make much sense because information from SiteB will not be visible to this user. </p> http://stackoverflow.com/questions/1078061/add-asp-net-pages-into-sharepoint/1078170#1078170 2 Answer by Toni Frankola for Add asp.net pages into sharepoint Toni Frankola 2009-07-03T07:25:04Z 2009-07-06T07:37:59Z <p>Your question is not clear, but if you want to customize look'n'feel of SharePoint page you should use <a href="http://office.microsoft.com/en-us/sharepointdesigner/FX100487631033.aspx?ofcresset=1" rel="nofollow">SharePoint Designer</a>.</p> <p>In case you want to create some additional functionality from scratch the easiest way is to <a href="http://msdn.microsoft.com/en-us/library/ms452873.aspx" rel="nofollow">create a custom web part</a> and then <a href="http://office.microsoft.com/en-us/sharepointserver/HA011605831033.aspx" rel="nofollow">add it to a SharePoint page</a>.</p> http://stackoverflow.com/questions/1073563/backup-restore-timer-job-wss-3-0/1074799#1074799 1 Answer by Toni Frankola for Backup & Restore Timer job WSS 3.0 Toni Frankola 2009-07-02T14:40:59Z 2009-07-02T14:40:59Z <p>The only way to automate this is via STSADM backup commands. I found this <a href="http://www.networkworld.com/community/node/18202" rel="nofollow">SharePoint Site Backup Script</a> by Michael Noel to be very helpful for exactly the same problem. </p> http://stackoverflow.com/questions/1042771/is-it-possible-to-create-a-link-to-a-folder-in-a-sharepoint-document-library/1043102#1043102 1 Answer by Toni Frankola for Is it possible to create a 'link to a folder' in a SharePoint document library? Toni Frankola 2009-06-25T10:21:00Z 2009-06-25T13:38:48Z <p>The simplest way is to use the following pattern:</p> <pre><code>http://[server]/[site]/[ListName]/[Folder]/[SubFolder] </code></pre> <p>To place a shortcut to a document library:</p> <ol> <li>Upload it as *.url file. However, by default, this file type is not allowed. </li> <li>Go to you Document Library settings > Advanced Settings > Allow management of content types. Add the "Link to document" content type to a document library and paste the link</li> </ol> http://stackoverflow.com/questions/1010086/workflow-and-infopath/1012388#1012388 2 Answer by Toni Frankola for Workflow and Infopath Toni Frankola 2009-06-18T12:32:44Z 2009-06-18T13:18:34Z <p><strong>Authoring InfoPath forms</strong></p> <p>If a person needs to create a new Infopath form or needs to change the layout of the existing form one needs to use InfoPath client. </p> <p>The form layout and data structure is saved as XML so one might try to edit it but I would recommend you not to mess with it.</p> <p><strong>Filling forms</strong></p> <p>In order to fill the forms there are two scenarios:</p> <ol> <li>User fills a form via web browser (InfoPath client is not required)</li> <li>User fills a form via InfoPath client</li> </ol> <p>The first option does sound interesting but limitations do apply:</p> <ul> <li>You must purchase MOSS Enterprise license (for difference between SharePoint editions check this: <a href="http://www.sharepointusecases.com/index.php/2007/08/which-sharepoint-edition-is-right-for-you" rel="nofollow">overview</a> or <a href="http://office.microsoft.com/en-us/sharepointserver/FX101758881033.aspx#5" rel="nofollow">details here</a>). There is an option to purchase a dedicated Forms Server.</li> <li>Infopath as web form does not support all the features as the Infopath client form</li> <li>Although web forms sound very appealing, my experience taught me that most important features are not available in the web edition. <a href="http://office.microsoft.com/en-us/infopath/HA102040851033.aspx" rel="nofollow">Check here for detailed list</a>.</li> </ul> <p><strong>Default workflow forms</strong></p> <p>Your original question is not clear, but if you are talking about editing default workflow forms like Approval workflow form (which is InfoPath) there is no easy way to do it.</p> http://stackoverflow.com/questions/1006516/how-to-customize-dispform-aspx-in-sharepoint-list/1006686#1006686 1 Answer by Toni Frankola for How to customize Dispform.aspx in Sharepoint List Toni Frankola 2009-06-17T12:27:29Z 2009-06-17T12:27:29Z <p>Your approach is okey, couple of things to check:</p> <p>1) Each Data View Web Part has the DataFields tag, it looks like this: </p> <pre><code>&lt;DataFields&gt;@URL,URL;@Comments,Notes;@Color,Color;@Image,Image;&lt;/DataFields&gt; </code></pre> <p>and it contains the names of your fields. Make sure your new field is displayed in this list.</p> <p>2) Also there is difference between internal field name and field name. In the example above <strong>Comments</strong> is internal name but name is <strong>Notes</strong>. So to display Notes field correctly you should use:</p> <pre><code>&lt;xsl:value-of select="@Comments"/&gt; </code></pre> <p>3) Make sure you are trying to output this value in the right place of XSLT template. The easiest way to find the place is to look for existing fields and just add the new one along these.</p> <p>Hope it helps...</p> http://stackoverflow.com/questions/967333/accessing-list-data-from-a-different-site-in-sharepoint-designer-workflow/967405#967405 2 Answer by Toni Frankola for Accessing list data from a different site in Sharepoint Designer workflow Toni Frankola 2009-06-08T22:46:13Z 2009-06-09T14:38:28Z <p>You cannot do that with OOTB activities. However you can build a <a href="http://msdn.microsoft.com/en-us/library/bb629922.aspx" rel="nofollow">custom SharePoint designer activity</a> to do the task you need. We usually create just a call web service activity and then we call a SharePoint we service we need.</p> <p>Take a look at this <a href="http://www.codeplex.com/SPDActivities" rel="nofollow">CodePlex project</a> for some custom SharePoint Designer activities.</p> http://stackoverflow.com/questions/705920/cannot-update-document-property-on-itemadded-event-when-using-vista 2 Cannot update document property on ItemAdded event when using Vista Toni Frankola 2009-04-01T14:56:19Z 2009-06-04T18:42:28Z <p>We are trying to create a custom event handler that would fire on ItemAdded event. The event handler then updates the document with a unique ID value to a column in this document library. </p> <p>Our solution works fine, except when a user on Vista is trying to save a new document from Office 2007. In this scenario the document is stored to document library but Unique ID column is empty, and there is no exception.</p> <p>Vista Users can upload document(s) to library without a problem. Everything else works fine on XP and Win2k3 operating systems.</p> <p>Has anyone seen something similar, and what might be the problem here? To demonstrate the problem we are using DateTime.Now as unique ID. </p> <pre><code> using Microsoft.SharePoint; public class TestReciever : SPItemEventReceiver { public override void ItemAdded(Microsoft.SharePoint.SPItemEventProperties properties) { try { DisableEventFiring(); properties.ListItem("UniqueID Column") = DateTime.Now.ToString(); properties.ListItem.SystemUpdate(); EnableEventFiring(); } catch (Exception ex) { // handle exception } } } </code></pre> <p>Thanks, Toni</p> http://stackoverflow.com/questions/886289/asp-to-sharepoint-development-what-should-i-be-aware-of-career/887951#887951 2 Answer by Toni Frankola for ASP to sharepoint development. What should I be aware of? [Career] Toni Frankola 2009-05-20T13:37:25Z 2009-06-02T12:01:21Z <p>I was on the same path as you. I started as ASP and then moved to ASP.NET and finally SharePoint programming. I would say that someone with 2831 (on May 20th 2009) points at stackoverflow does not have to worry about ASP.NET. Programming for SharePoint is programming ASP.NET, you only need to learn some additional concepts and stuff.</p> <p>The best way to get started is to create some pure ASP.NET applications to learn the concepts. There is a conceptual change between ASP and ASP.NET so you should forget the old way and learn .NET object oriented programming. If you will be working for an experienced team ask for a mentor to help you learn.</p> <p>You should forget ASP it is an obsolete technology.</p> <p>There are some people that hate SharePoint development but I think you need to stay open minded about it, it is the fastest growing Microsoft product and it will remain strong as corporate application platform.</p> <p>Check <a href="http://stackoverflow.com/questions/785229/how-is-skill-building-for-sharepoint-different-from-asp-net/">this question</a> for more details on how to learn the stuff.</p> http://stackoverflow.com/questions/932630/moving-sharepoint-moss-2007-sites/934038#934038 1 Answer by Toni Frankola for Moving SharePoint (MOSS 2007) Sites Toni Frankola 2009-06-01T08:51:48Z 2009-06-01T08:51:48Z <p>You approach is the right one. However if you are using MOSS you should use use <strong>Manage Content and structure</strong> feature instead of exporting sites. This feature allows you to move your sites and restructure your collection. <a href="http://office.microsoft.com/en-us/sharepointserver/HA101317231033.aspx#5" rel="nofollow">Learn more...</a></p> <p>If you created your site collection as pure collaboration site you will have to activate SharePoint standard Publishing features on the top level site to enable this option.</p> <p>Please note: This feature is not available in WSS.</p> http://stackoverflow.com/questions/889951/sharing-common-data-on-sharepoint/895167#895167 0 Answer by Toni Frankola for sharing common data on sharepoint Toni Frankola 2009-05-21T21:07:37Z 2009-05-21T21:07:37Z <p>Few facts</p> <ul> <li>Setting permissions and folders do not have anything with Access 2007.</li> <li>You cannot use folders on custom lists only with Document Libraries and Form libraries</li> </ul> <p>In your scenario the best option is to have custom, item level permissions for each project:</p> <ol> <li>to do it manually check <a href="http://office.microsoft.com/en-us/sharepointserver/HA100215641033.aspx#10" rel="nofollow">this</a></li> <li>to do it automatically you should create a workflow with SharePoint Designer. Here is an activity <a href="http://spdactivities.codeplex.com/Wiki/View.aspx?title=Grant%20Permission%20on%20Item" rel="nofollow">to do that</a>.</li> </ol> <p>In case you have just a few projects do it manually otherwise configure a workflow to do that.</p> http://stackoverflow.com/questions/888818/which-are-the-best-forums-about-sharepoint-2007/890354#890354 0 Answer by Toni Frankola for Which are the best forums about Sharepoint 2007? Toni Frankola 2009-05-20T21:28:15Z 2009-05-20T21:28:15Z <p>If you are looking for end user / general questions take a look <a href="http://www.endusersharepoint.com/STP/" rel="nofollow">End User SharePoint</a>.</p> http://stackoverflow.com/questions/705920/cannot-update-document-property-on-itemadded-event-when-using-vista/852580#852580 1 Answer by Toni Frankola for Cannot update document property on ItemAdded event when using Vista Toni Frankola 2009-05-12T12:45:31Z 2009-05-12T12:45:31Z <p>At the end we contacted Microsoft and they provided us with the following workaround solution. The key here is to delay item update in a separate thread.</p> <pre><code>private Guid listID; private Guid itemID; private Guid siteID; public override void ItemAdded(Microsoft.SharePoint.SPItemEventProperties properties) { DisableEventFiring(); item = properties.ListItem; listID = properties.ListId; itemID = properties.ListItem.UniqueId; siteID = properties.SiteId; Threading.Thread setDocumentInternalIDThread = new Threading.Thread(SetInternalID); setDocumentInternalIDThread.Start(); EnableEventFiring(); } private void SetInternalID() { try { Threading.Thread.Sleep(10000); using (SPSite site = new SPSite(siteID)) { using (SPWeb web = site.OpenWeb()) { SPList list = web.Lists(listID); SPListItem item = list.Items(itemID); item(Common.CustomID) = Common.GetAlphaPrefix() + Common.GetDocNumber(); item.SystemUpdate(); } } } catch (Exception ex) { Log(ex.Message); } } </code></pre> http://stackoverflow.com/questions/785229/how-is-skill-building-for-sharepoint-different-from-asp-net/785306#785306 2 Answer by Toni Frankola for How is skill building for Sharepoint different from ASP.NET? Toni Frankola 2009-04-24T10:22:53Z 2009-04-24T10:22:53Z <p>If you already know ASP.NET than you are ready for SharePoint development. Get familiar with its SDK and other <a href="http://msdn.microsoft.com/en-us/sharepoint/default.aspx" rel="nofollow">development concepts</a>. SharePoint Dev Wiki might also <a href="http://sharepointdevwiki.com/display/public/Welcome" rel="nofollow">be a good start</a>.</p> <p>A must have for new developers is to learn SharePoint from end user perspective. I am using <a href="http://rads.stackoverflow.com/amzn/click/1590598296" rel="nofollow">this book</a> to train the new guys. If you do not understand these concepts it might be hard to start coding.</p> http://stackoverflow.com/questions/1509374/calculated-column-formula/1509534#1509534 Comment by Toni Frankola on Calculated Column formula Toni Frankola 2009-10-02T18:58:03Z 2009-10-02T18:58:03Z Start with this one: <a href="http://office.microsoft.com/en-us/sharepointdesigner/HA101191111033.aspx" rel="nofollow">office.microsoft.com/en-us/sharepointdesigner/&hellip;</a> http://stackoverflow.com/questions/1509374/calculated-column-formula/1509534#1509534 Comment by Toni Frankola on Calculated Column formula Toni Frankola 2009-10-02T17:14:10Z 2009-10-02T17:14:10Z Sure. You can create a simple numeric column and then customize EditItem.aspx with SharePoint Designer. It is pure HTML, just add simple drop down... it requires some skill if you haven't tried that already. http://stackoverflow.com/questions/1307009/sharepoint-is-it-possible-to-intercept-modify-documents-before-theyre-returned Comment by Toni Frankola on SharePoint: is it possible to intercept/modify documents before they're returned to the client? Toni Frankola 2009-08-20T15:37:12Z 2009-08-20T15:37:12Z What's your use case here? What are you trying to accomplish? Can you give some examples? http://stackoverflow.com/questions/1295104/sharepoint-approval/1295301#1295301 Comment by Toni Frankola on SharePoint Approval Toni Frankola 2009-08-18T18:16:48Z 2009-08-18T18:16:48Z What exactly does this code do? http://stackoverflow.com/questions/1213037/infopath-saveas-in-sharepoint-overwriting/1213098#1213098 Comment by Toni Frankola on Infopath saveas in sharepoint overwriting Toni Frankola 2009-08-03T09:15:07Z 2009-08-03T09:15:07Z In such case I would recommend submitting your form via custom web service. http://stackoverflow.com/questions/1192718/calculate-number-of-keywords-in-xslt/1192759#1192759 Comment by Toni Frankola on Calculate number of keywords in XSLT Toni Frankola 2009-07-28T09:06:58Z 2009-07-28T09:06:58Z I know, and I agree, but this output is produced by 3rd party system and I cannot change that. http://stackoverflow.com/questions/1185186/question-web-part/1185622#1185622 Comment by Toni Frankola on Question web part Toni Frankola 2009-07-27T13:15:48Z 2009-07-27T13:15:48Z @Brian: +1, I will be adding your answer to my post and make it a commmunity wiki. http://stackoverflow.com/questions/1185186/question-web-part/1185622#1185622 Comment by Toni Frankola on Question web part Toni Frankola 2009-07-27T07:48:24Z 2009-07-27T07:48:24Z Well depending on your needs you could still use Survey web part but create your own custom logic to fill or display survery results. http://stackoverflow.com/questions/1183071/what-is-the-most-important-feature-of-sharepoint-2010 Comment by Toni Frankola on What is the most important feature of SharePoint 2010 Toni Frankola 2009-07-25T21:15:34Z 2009-07-25T21:15:34Z Except those short videos everything else is under NDA :(. So it is to early to discuss the most important feature. http://stackoverflow.com/questions/1172825/how-do-i-implement-user-theme-switching-in-sharepoint Comment by Toni Frankola on How do I implement user theme switching in SharePoint? Toni Frankola 2009-07-23T16:14:44Z 2009-07-23T16:14:44Z AFAIK themes are site-based not user-based. Maybe you could use some wild JQuery stuff to replace CSS and stuff on fly but I would advise against because SharePoint does not support that. http://stackoverflow.com/questions/1105720/sharepoint-file-upload Comment by Toni Frankola on sharepoint file upload Toni Frankola 2009-07-09T20:27:34Z 2009-07-09T20:27:34Z IMHO you should not add such a huge file in SharePoint... What's inside? http://stackoverflow.com/questions/1078061/add-asp-net-pages-into-sharepoint/1078170#1078170 Comment by Toni Frankola on Add asp.net pages into sharepoint Toni Frankola 2009-07-03T08:35:31Z 2009-07-03T08:35:31Z IMHO (and real experience) for newbie SharePoint developers WebParts+GAC is much better approach. When they learn how to master these they are ready to move on... A smart guy can deploy just a few web parts and (s)he is ready to move on to features and solutions... my 2 cents. http://stackoverflow.com/questions/1078061/add-asp-net-pages-into-sharepoint/1078170#1078170 Comment by Toni Frankola on Add asp.net pages into sharepoint Toni Frankola 2009-07-03T07:37:43Z 2009-07-03T07:37:43Z Yep, I could not agree more... but features are not something I would recommend for a novice user. http://stackoverflow.com/questions/250992/sharepoint-should-i-use-lists-or-a-database/251801#251801 Comment by Toni Frankola on SharePoint: should I use lists or a database? Toni Frankola 2009-06-23T20:40:31Z 2009-06-23T20:40:31Z Unfortunatley BDC is only available with MOSS Enteprise, and most people use just WSS. http://stackoverflow.com/questions/1006516/how-to-customize-dispform-aspx-in-sharepoint-list/1006686#1006686 Comment by Toni Frankola on How to customize Dispform.aspx in Sharepoint List Toni Frankola 2009-06-17T17:57:16Z 2009-06-17T17:57:16Z @Andy: Me too... but I do not mind additional points. @Ethan: Can you start from scratch and delete your web part... you are doing everything as you should but you are probably missing something simple.