Browse by Tags

Tagged Content List
  • Wiki Page: SQL Server: Transaction Log is Full

    Table of Contents Overview Recovery Model Additional Resources Reference See Also Overview If the transaction log is full, users cannot update the databases and you cannot fully restore the database in the event of a system failure. You must clear the transaction log either by performing a...
  • Wiki Page: SharePoint 2010: How to Change a Lookup Hyperlink to Open in the Same Window

    If you create a lookup column in a SharePoint list, the link on the DataView will open the linked item in a modal popup. This page explains how to open it in a new page. This article comes from this forum thread. Table of Contents Actions Required to Resolve the "How-To" Prerequisites...
  • Wiki Page: Baumstrukturen mit LINQ abfragen (de-DE)

    Dieser Artikel ist die deutsche Übersetzung meines zuerst auf Englisch erschienen Artikels How to Query Trees Using LINQ . (Gerichtete) Bäume gehören zu den häufigsten Datenstrukturen in der Informatik. Wie sie mit LINQ genutzt werden, ist aber weniger offensichtlich. Dieser Artikel definiert...
  • Wiki Page: How to Query Trees Using LINQ

    A (directed) tree is one of the most common data types. But how do you use trees in LINQ? This article introduces a generic LINQ-Extension which solves the problem, gives an example and discusses alternatives. Table of Contents Motivation Solution Usage Example Contradictions and alternatives...
  • Wiki Page: Wiki: How to Get a New Language Started or Expanded on TechNet Wiki

    The TechNet Wiki is open to authors in almost any language. Getting started can be as simple as clicking the "Post an article" link on this page. Some languages have already established a solid community of authors, some are just emerging. This article provides a roadmap on how to start or...
  • Wiki Page: SharePoint 2010: Common Problems When Creating a New “Send To” Connection

    Table of Contents Introduction Problem 1: The Content Organizer Feature has not been activated Problem 2: Supplying the correct URL Problem 3: The “Records Center Web Service Submitters For” Group Problem 4: Windows Loop Back Security Check Introduction SharePoint 2010 introduced the ability...
  • Wiki Page: SharePoint 2010: Reverse Engineering SharePoint WSP Packages

    Table of Contents Reverse Engineering SharePoint WSP Packages Introduction Audience Getting Started Delving Deeper Reverse Engineering SharePoint WSP Packages Disclaimer : Please note that this article is scoped to internally developed WSP Packages only. The terms and conditions that you accept...
  • Wiki Page: SharePoint 2010: Get "Modified" and "Modified By" Information from a View in a List or Library

    The "Modified", " Modified By ", " Created by ", " Created " cannot be accessed directly via the SPView object because this simply doesn't store that kind of information. To request this information the SPFile object needs to be used instead. "Created...
  • Wiki Page: SharePoint 2010: Best Practices - Removing SharePoint from Servers

    This page discusses how to remove SharePoint from servers in the farm: 1. Log in to each of the SharePoint servers in the farm 2. Run the SharePoint Configuration Wizard on each of the Web Front End servers and unjoin them from the farm. Provided no Web Apps were built outside of SharePoint's...
  • Wiki Page: Custom Calculations for Invoice & Returns Using a PowerPivot DAX Formula

    This is from the thread in the SQL Server PowerPivot for Excel forum. Table of Contents Problem Description Solution Step 1 Step 2 Step 3 Conclusion Problem Description Here's the sample data: STATUS WEEK SALES CUSTOMER INVOICE W01 $150...
  • Wiki Page: An Example of Using Write-Progress in a Long Running SharePoint PowerShell Script

    Ever written a really cool PowerShell script that performs lots of actions, or iterates over hundreds or thousands of items? Wouldn't it be nice to see the status of the script as it's running to get an indication of what it's doing and how long it has to go? You could use Write-Host to...
  • Wiki Page: Active Directory: How to Block USB Devices (dsforum2wiki)

    Table of Contents References Other Languages If you want to prevent users from using USB devices, you can follow the steps in either of these articles: 1. Manually modify the registry key which is described in the KB article at http://support.microsoft.com/kb/823732 If the client computers...
  • Wiki Page: SharePoint: Uploading (and Resizing) Images to a SharePoint Picture Library via a Webpart

    Getting a file to upload to SharePoint is very easy; essentially it involves adding an asp:FileUpload control to your webpart and adding a button to click on (to upload the selected file!). In this example we're going to create a visual webpart that allows a user to upload an image to SharePoint...
  • Wiki Page: SQL Server: No Fragmentation in HEAP from INSERT / UPDATE

    A HEAP won't be "fragmented" in two cases: - only INSERTS may occur - UPDATES will occur in the attributes with fixed data length (e.g. char ) The following example demonstrates the above mentioned situations: First a simple HEAP will be created: 01. USE tempdb; ...
  • Wiki Page: Small Basic: IDE Colors

    These are text colors and the background color used in Small Basic IDE (Integrated Development Environment). #7777FF for Keywords #800000 for Operators and “the dot between Object and Properties/Events/Operations” #000000 for Variables, Subroutines, Labels and "the brackets...
  • Wiki Page: SharePoint 2010: What Happens Internally When a Web Application is Created

    Table of Contents Web Site Site Collection This is very basic question mostly come across, whenever we create a Web Application from SharePoint Central Administration , what happens exactly behind the scene. This article addresses two basic questions: What exactly happens internally...
  • Wiki Page: SharePoint 2013: Best Practices - Checking SharePoint list field NULL value in code

    As a general practice, we tend to check that a SharePoint list column/field isn't null before we try to set/get it (normally just a few fields), but in case you are working on an application where you have a lot of fields to check. You can break your code into a separate class so that you can can...
  • Wiki Page: MOD Function in MDX

    MDX has variety of functions to support the user needs. MDX lacks the function to find the modulo operation. But we can achieve the modulo operation by using the calculated member. Formula: number1-(Int(number1/number2)*2) Sample code is below: with member number1 as 5 member number2...
  • Wiki Page: Small Basic: How to Make a Turtle Maze Game

    Table of Contents Overview 1. Creating a maze 1.1 How to create a maze? 2. Creating AI which solves the maze 2.1 How to solve the maze? 2.2 What are needed for Silverlight environment? 3. Creating UI for another turtle 3.1 Create another turtle 3.2 How to control turtle 3.3 How to save score 3.4 Turtle...
  • Wiki Page: SharePoint: Integrate Skype and Facebook Features

    See the following sections for information about how to integrate Skype and Facebook features into your SharePoint site. Table of Contents Skype Facebook Source Other Languages SharePoint 2010 also includes many social features: http://www.orbitone.com/en/blog/archive/2010/05/04/sharepoint...
  • Wiki Page: Retrieving the Screen Resolution for Windows Phone 8 Emulator

    The Windows Phone 8 supports 3 different screen resolutions like WVGA,WXGA,720P . If you are a developer and wants to retrieve the screen resolution dynamically , you can use the ScaleFactor property defined in App.Current.Host.Content.ScaleFactor. E.g. : string data = App.Current.Host...
  • Wiki Page: Adding Links in SSRS Reports

    The Request Is it possible to have a field which contains a link to the build results? The Solution Yes. Links can be done in 2 ways (that I know of) in SSRS. The most common is to set the Action property of a control (textbox, image, etc.). If you right-click the control and open its...
  • Wiki Page: Using the KeywordQuery class to search SharePoint content

    You can use the KeywordQuery class to search SharePoint content using a search query string formatted in the same way you would if you used the Search Center user interface. This makes it really easy to structure (and test) search queries for use in your applications. In this example, I have a...
  • Wiki Page: MSDN/TechNet Forums: Known Issues

    Table of Contents My Forums and Forums Home Thread Moderation Threads Displayed on Main Forum Pages Marking & Proposing Answers Displayed Profile Information Forum Layout NNTP bridge users Please leave known issues below. We'll clean them up, add more info, and categorize them as we go....
  • Wiki Page: Forum OP Tips: How to Ask a Question Efficiently in a TechNet/MSDN Forum

    This article is written for Forum Original Posters (OPs). Online problem solving can be relatively time consuming because it may demand several messages back and forth to fully understand the symptom and background, especially at the very beginning. Here are a few suggestions that help you get the...
Page 2 of 5 (106 items) 12345
Can't find it? Write it!