User elorg - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:12:00Z http://stackoverflow.com/feeds/user/58383 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1000264/moss-2007-displaying-data-from-sql-server-database/1028740#1028740 0 Answer by elorg for MOSS 2007: Displaying data from SQL Server Database elorg 2009-06-22T18:33:03Z 2009-06-22T18:33:03Z <p>As Nat said - if all that is needed is to display some data from a database on a page - the DVWP is a great solution. Just open your page in SharePoint Designer, add the database connection, and drop the web part on your page. You can use any of the several pre-formatted layouts, or design/tweak your own so the data is displayed as you need.</p> <p>Relatively straightforward, lots of HowTos online, and far faster/easier to setup than something like BDC.</p> http://stackoverflow.com/questions/934943/moss-and-the-business-data-catalog-any-good-documentation/1028706#1028706 3 Answer by elorg for MOSS and the Business Data Catalog - any good documentation? elorg 2009-06-22T18:23:38Z 2009-06-22T18:23:38Z <p>This has a great overview on the BDC, some examples on what it can do, and how to configure it:</p> <p><a href="http://sharepointmagazine.net/technical/administration/everything-you-need-to-know-about-bdc-part-1-of-8" rel="nofollow">http://sharepointmagazine.net/technical/administration/everything-you-need-to-know-about-bdc-part-1-of-8</a></p> <p>It's a really great starting place that will help you get better footing when proceeding on to the more technical sites &amp; how-tos. It's the best "starter" resource I've found yet.</p> http://stackoverflow.com/questions/961748/how-to-get-the-url-for-a-sharepoint-discussion-board-entry/966507#966507 0 Answer by elorg for How to get the URL for a SharePoint Discussion Board entry? elorg 2009-06-08T19:23:35Z 2009-06-08T19:23:35Z <p>Are you asking how to find the URL for an individual discussion in a discussion board? Or an individual reply to a discussion?</p> http://stackoverflow.com/questions/805005/how-to-rename-a-list-in-sharepoint/848164#848164 0 Answer by elorg for How to rename a list in Sharepoint elorg 2009-05-11T13:45:04Z 2009-05-11T13:45:04Z <p>Once you create a list or doc library, the url cannot be changed using the web interface - you're stuck with it unless you modify it using something like Powershell or SharePoint Designer.</p> <p>I highly recommend making it a habit to initially create the lists/libraries with a shortened/clean url, then immediately renaming the lists/libraries to its "nice" name for everyone to read clearly.</p> http://stackoverflow.com/questions/826999/transfer-list-items-with-attachments-from-sharepoint-2003-to-an-existing-list-in/848075#848075 0 Answer by elorg for Transfer List items with Attachments from SharePoint 2003 to an existing list in SharePoint 2007 elorg 2009-05-11T13:20:12Z 2009-05-11T13:20:12Z <p>Have you tried saving the list ("with content") as a template, save that file to the 2007 portal templates, then create a new list using that "custom" template? That won't work if the attachments and items total more than 10MB, and I'm not 100% sure that that'll work for 2003 > 2007. It should take &lt; 10 minutes, so it's worth a try if you haven't already.</p> http://stackoverflow.com/questions/738405/add-a-hyperlink-item-type-to-a-list-using-powershell-in-sharepoint/744344#744344 1 Answer by elorg for Add a "Hyperlink" item type to a list using PowerShell in Sharepoint elorg 2009-04-13T15:56:31Z 2009-04-13T15:56:31Z <p>Thanks James! That was very close and I'm thinking would work if I was specifying a single item?</p> <p>Here's my full solution (with some extra bits): </p> <pre><code>$enumsite = new-object microsoft.sharepoint.spsite($SubWebUrl) foreach ($url in $enumsite.allwebs) { $NewItem = $MyList.Items.Add() $NewItem["My Hyperlink Column"] = "$($url.url), $(url.title)" $NewItem.Update() } $enumsite.Dispose() </code></pre> <p>Perhaps this will help someone else out in the future.</p> http://stackoverflow.com/questions/738405/add-a-hyperlink-item-type-to-a-list-using-powershell-in-sharepoint 1 Add a "Hyperlink" item type to a list using PowerShell in Sharepoint elorg 2009-04-10T18:14:52Z 2009-04-13T15:56:31Z <p>I've been a SharePoint admin for a while, and now have been tasked with a bit more of a developer role - which I'm still very much learning. Most things I've been able to figure out on my own or through Google, but this one has me stumped.</p> <p>For one particular task I need to use PowerShell to script adding items to a list. Normally - not a difficult task. These steps are all over the web. However, I have yet to find anywhere that will tell you how to add a "Hyperlink" type of item to a list.</p> <p>I can add one using the following code:</p> <pre><code>$NewItem = $MyList.Items.Add() $NewItem["My Hyperlink Column"] = $($url.url) $NewItem.Update() </code></pre> <p>But I want to set the name/title of the link as well and that's what stumps me. I don't want to have to create a separate column in the list and populate that with the link name, and use code similar to above to populate the url/link.</p> http://stackoverflow.com/questions/705997/filter-a-data-view-web-part-by-last-3-days 1 Filter a Data View Web Part by "last 3 days" elorg 2009-04-01T15:12:05Z 2009-04-02T03:18:54Z <p>We have a custom list that has a column called "Connection Date" and need to display the most recent list items (relative to this "Connection Date" column) in various places across the portal. the Data View Web Part appears to be the best solution, but I'm having difficulty finding the right method &amp; syntax to filter by date.</p> <p>I can create a parameter and filter by a value for another column. I can filter by a specific date. I can't seem to figure out how to say "Show me all list items where 'Connection Date' is in the range of [Today] and [Today]-3".</p> <p>Is this possible? Does anyone know how to do this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/491004/sharepoint-moss-deleting-other-peoples-un-checked-in-items-from-a-list/493104#493104 0 Answer by elorg for SharePoint/MOSS - Deleting other people's un-checked-in items from a list elorg 2009-01-29T19:48:40Z 2009-01-29T19:48:40Z <p>Quick &amp; easy non-SharePoint solution: If it's an <em>ex</em>-coworker is there any possibility of asking for temporary use of his account with a new password so that you can login to the portal and check it back in or discard the check-in?</p> http://stackoverflow.com/questions/471351/what-is-good-for-sharepoint-beginner-user-tutorials/473970#473970 1 Answer by elorg for What is good for SharePoint beginner user tutorials? elorg 2009-01-23T18:32:46Z 2009-01-23T18:32:46Z <p>There are a handful of podcasts out there - but you need to sift through them to find the ones that are discussing the topics at the level that you're interested in (end-user vs. developer vs. administrator, etc.)</p> <p>Since SharePoint is part of the Office family, don't forget to check out the Office resource sites like this one: <a href="http://office.microsoft.com/en-us/training/default.aspx" rel="nofollow">http://office.microsoft.com/en-us/training/default.aspx</a></p> <p>That's great from more of an end-user perspective. More the "How to add documents to Document Libraries" types of instructions rather than "How to create a new SharePoint Site Collection."</p> <p>I haven't been there in a while, but I spent a fair amount of time poking around that site for ideas on my team's "SharePoint Tip of the Week" docs I send out (and by "send out" I mean post to our portal's Document Center and send everyone links to view as they have time). I find something simple like "how to add your team's SharePoint calendar to Outlook" and type up the step-by-step instructions with screenshots. I try to keep it 1-2 pages depending on the content. I also setup a Discussion Board with a thread for each Tip, a summary, a link to the Tip, etc. so people can add comments and questions.</p> <p>One last thing - check this place out: <a href="http://www.customguide.com/quick_references.htm" rel="nofollow">http://www.customguide.com/quick_references.htm</a></p> <p>They have "Quick References" for a LOT of applications/platforms. A great little resource to hand out to people if you just upgraded to Office 2007 or similar situation. Just be aware that they'll follow-up with you trying to sell you their training.</p> http://stackoverflow.com/questions/250992/sharepoint-should-i-use-lists-or-a-database/251801#251801 Comment by elorg on SharePoint: should I use lists or a database? elorg 2009-06-23T13:51:26Z 2009-06-23T13:51:26Z I agree with the reasons for using a database, but not necessarily the reasons for using SharePoint lists. Using BDC (if you have MOSS) many of those can be accomplished if your data is stored in an external database and accessed in SharePoint on its own or when in conjunction with a list.