Load template data

RSS
  • SNAGHTML4def03ef

    EF Code First and Data Scaffolding with the ASP.NET MVC 3 Tools Update

    [Programming, RIA (Rich Internet Apps)] (ScottGu's Blog)

    Earlier this week I blogged about the new ASP.NET MVC 3 Tools Update that we shipped last month. In today’s blog post I’m going to go into more detail about two of the cool new features it brings: Built-in support for EF 4.1 (which includes the new EF “code-first” support) Built-in data scaffolding support within Visual Studio (which enables you to rapidly create data-driven sites) These two features provide a really sweet, and extremely powerful, way to work w ...

    [details] received 282 days ago  published 282 days ago  lang: en 
  • SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on Twitter

    Step-by-Step Using ImplicitDataType in Silverlight 5 Beta

    [RIA (Rich Internet Apps)] (SilverlightShow: Silverlight Community)

    In this blog post, Kunal Chowdhury discusses using ImplicitDataType in Silverlight 5 and gives an example. Source: Kunal's Blog ImplicitDataType is a new feature in Silverlight 5. Using ImplicitDataType, you can declare multiple Data Templates for your control and based on the data type, you can load the proper data template automatically. In this article we will discuss on the same step by step with a good example. Read the complete article to know it in depth.

    [details] received 283 days ago  published 283 days ago  lang: en 
  • Blog Post: WinDbg File Association and Explorer Context Menu

    [Microsoft] (Site Home)

    For a long time now I've had a registry file to make context menu entries for WinDbg. The entries allow you to select the x86 or x64 debugger. Internally at Microsoft, I have another version of the registry file that contains two more context menu entries for the private symbol server. You can see all 4 options I add internally in this screenshot. Note, the registry file assumes WinDBG is installed in c:\debuggers_x86 and c:\debuggers (for the x86 and AMD64 debuggers respectively). FYI ...

    [details] received 283 days ago  published 283 days ago  lang: Unknown 
  • Web Sales / Marketing Manager (SP1289) / Ajel Technologies / Plano, TX

    [Jobs (not Steve)] (Business Insider Jobs)

    Ajel Technologies/Plano, TX Web Sales / Marketing Manager (SP1289) 6-7 Months Contract in Plano, TX 75024 Rate :- $35 - $38/Hr on W2 Requirements :- Minimum 6-24 months of marketing or sales experience – preferably online Previous creative background desired – hobby or professional. Artistry, design, photography, photoshopping, collage, scrapbooking, etc. Data analysis, manipulation, mining, etc.; Business Objects or SQL a plus. Wiki markup language a plus MS-Offic ...

    [details] received 283 days ago  published 284 days ago  lang: en 
  • WPCandy: Introduction to Hooks: a basic WordPress building block

    [WordPress] (WordPress Planet)

    WordPress hooks are arguably the basis of WordPress development, forming a large part of the core functionality and used by almost every plugin and theme available to date. The concept of hooks can also be somewhat daunting for users who are starting out with developing for WordPress. Today, we’ll jump in and find out a bit more about just what exactly WordPress hooks are and how they can help you on your way to WordPress rock stardom.What exactly *are* WordPress hooks anyways?WordPress ho ...

    [details] received 284 days ago  published 284 days ago  lang: en 
  • s all, folks!</div>' . "\n"; } // End IF Statement return $content; } // End wpcandy_filterhook_signoff() ?>

    The above code adds a new div tag to the end of the content of our blog post, only when on a single blog post screen.

    A filter hook is like using the str_replace() function in PHP. You give it some data, manipulate, replace or reformat the data and return the new content out at the end.

    … and now, for a few commonly asked questions… answered.

    Are custom hooks available only to the theme or plugins I’ve got activated?

    Custom hooks and filters that are added by a theme or plugin, only apply if that theme or plugin is active. There are many hooks, however, that are global (get_header, wp_head and wp_footer are three examples). If you’d like to switch themes regularly and maintain the functions you’ve hooked onto these, or other, global hooks or filters, I’d recommend writing them into a plugin.

    Themes and plugins are able to specify custom filters and actions. We’ll get more into this in part two.

    Where can I learn more about action and filter hooks?

    My favourite resource is, without a doubt, the WordPress Codex. While there are many tutorials available online regarding filter and action hook applications, the best understanding comes, as they say, when heard from the horse’s mouth. The Codex provides useful examples, as well as up to date and informative explanations, which aid in gathering an overall understanding of the Plugin API (the API that handles action and filter hooks).

    Right. Now that we’ve answered a few questions, lets show some practical examples that can be used right off the bat with any WordPress theme.

    Add “time ago” time display at the end of each post.

    <?php
            add_filter( 'the_content', 'wpcandy_time_ago' );
    
            function wpcandy_time_ago ( $content ) {
    
                    $content .= "\n" . __( 'Posted ', 'wpcandy' ) . human_time_diff( get_the_time('U'), current_time('timestamp') ) . __( ' ago', 'wpcandy' );
    
                    return $content;
    
            } // End wpcandy_time_ago()
    ?>
    

    Use WordPress conditional tags to detect the user’s web browser and add a class with it’s name to the body tag.

    <?php
    add_filter('body_class','browser_body_class');
    function browser_body_class($classes) {
            global $is_lynx, $is_gecko, $is_IE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone;
    
            if($is_lynx) $classes[] = 'lynx';
            elseif($is_gecko) $classes[] = 'gecko';
            elseif($is_opera) $classes[] = 'opera';
            elseif($is_NS4) $classes[] = 'ns4';
            elseif($is_safari) $classes[] = 'safari';
            elseif($is_chrome) $classes[] = 'chrome';
            elseif($is_IE) $classes[] = 'ie';
            else $classes[] = 'unknown';
    
            if($is_iphone) $classes[] = 'iphone';
            return $classes;
    }
    ?>
    

    Remove the WordPress 3.1 Admin Bar.

    <?php add_filter( 'show_admin_bar', '__return_false' ); ?>
    

    What about Twenty Ten?

    With the introduction of Twenty Ten as the WordPress default theme, the theme received a large amount of documentation in the theme files, with several custom hooks or pluggable functions created specifically for it. Lets take a look at how we can use these hooks to enhance Twenty Ten.

    The main custom hook in the TwentyTen theme serves a relatively simple purpose: adding content to the credits area in the footer. This is done by hooking on to the new “twentyten_credits” action hook. Here’s an example:

    <?php
            add_action( 'twentyten_credits', 'wpcandy_credits' );
    
            function wpcandy_credits () {
    
                    $html = '';
    
                    $html .= 'Proudly brought to you by <a href="http://wpcandy.com/">WPCandy</a>.' . "\n";
    
                    echo $html;
    
            } // End wpcandy_credits()
    ?>
    

    The above function adds a simple line of credit text to the footer area in the Twenty Ten theme. In part two, we’ll discuss pluggable functions, which can be used in the Twenty Ten theme in particular to enhance and customise the output above and below the post content in the theme.

    Coming in part two:

    Creating your own hooks & filters and a brief introduction to pluggable functions; the hook’s lil’ sister. Please share your experiences with using WordPress action and filter hooks in the comments below.

  • The Business of WordPress Theme Design

    How to Create Presentation Slides with HTML and CSS

    [Web Design] (Nettuts+)

    Advertise here As I sifted through the various pieces of software that are designed for creating presentation slides, it occurred to me: why learn yet another program, when I can instead use the tools that I’m already familiar with? With a bit of fiddling, we can easily create beautiful presentations with HTML and CSS. I’ll show you how today! One Slide from Our Final Product 0 – Directory Structure Before we get started, let’s go ahead and create o ...

    [details] received 284 days ago  published 284 days ago  lang: en 
  • Roadmap

    SproutCore 1.5 Released

    [Ajax, RIA (Rich Internet Apps)] (SproutCore Blog)

    We’re excited to announce the final release of SproutCore 1.5. It’s been almost four months since 1.4.5 shipped, and we have lots of exciting new stuff for you. Changes Template View SproutCore 1.5 offers a brand-new way to define your view layer. If you have an existing application, SC.TemplateView makes it easy to integrate Handlebars-flavored HTML into your view hierarchy. If you’re starting a brand new application, you can design your entire application using just HTML, CSS, and the po ...

    [details] received 297 days ago  published 297 days ago  lang: en 
  • Blog Post: Silverlight 4 Firestarter Series #1: How to migrate a Visual Basic Windows Form Application to Silverlight

    [RIA (Rich Internet Apps)] (Site Home)

    In this walkthrough, I will demonstrate how to convert an existing Windows Forms application that consumes data from a Windows Communication Foundation (WCF) service to Silverlight. Also in the process of conversion we will ensure that the existing functionality is preserved. Here are some topics that we will cover: How to use the Visual Studio 2010 Silverlight Designer XAML and Silverlight control concepts How WCF services can be integrated into Silverlight applications Silverlight dat ...

    [details] received 300 days ago  published 300 days ago  lang: Unknown 
  • Mantracourt's Strain Gauge Indicator Proves a Major Success

    [Military] (Military Embedded Systems)

    Mantracourt, a leading manufacturer of industrial measurement technologies, is celebrating the success of its portable strain gauge display for use as a strain gauge indicator or load cell indicator, (PSD). Developed for a range of industrial customer applications, the PSD is now used by thousands of engineers and technicians around the world. Enabled for automatic sensor calibration and having a waterproof enclosure, a long battery life and with a sister handheld for RS232 output, the PSD strai ...

    [details] received 303 days ago  published 304 days ago  lang: en 
  • image

    OWB 11gR2 – XML

    [Corporate Blogs] (Blogs.oracle.com Recent Posts (English-language only))

    An XML post I did a while back was on Leveraging XDB, which illustrated how to leverage the XML SQL capabilities of the Oracle database. A couple years on, this post could as well have been titled Leveraging ODI, since here I’ll show how with a new XML platform defined, you can leverage the ODI XML JDBC driver and build code template mappings to extract and integrate XML in the same manner as ODI. First up copy the snpsxmlo.jar file from ODI 10g into the OWB owb/lib/ext directory and also on ...

    [details] received 304 days ago  published 304 days ago  lang: en 
  • 12 Cloosing the schema

    Blog Post: Migrating Access Jet Databases to SQL Azure

    [SharePoint] (Site Home)

    In this blog, I’ll describe how to use SSMA for Access to convert your Jet database for your Microsoft Access solution to SQL Azure. This blog builds on Access to SQL Server Migration: How to Use SSMA using the Access Northwind 2007 template. The blog also assumes that you have a SQL Azure account setup and that you have configured firewall access for your system as described in the blog post Migrating from MySQL to SQL Azure Using SSMA. Creating a Schema on SQL Azure If you are using a tri ...

    [details] received 305 days ago  published 305 days ago  lang: Unknown 
  • Blog Post: April 2011 - Technical Rollup Mail - Platforms

    [Data Centre] (Site Home)

    The TRM blog can be found here http://blogs.technet.com/trm/ Platforms News Windows Internet Explorer 9 Released to Web You can now download Internet Explorer 9. Check out the latest features for IT professionals, and get guidance to help you pilot and deploy this enterprise-ready browser in your organization with the Springboard Series for Internet Explorer 9. http://windows.microsoft.com/en-US/internet-explorer/products/ie/home http://technet.microsoft.com/en-us/ie/default Visual Stud ...

    [details] received 317 days ago  published 317 days ago  lang: Unknown 
  • Object-Oriented Programming in PHP

    Top 15+ Best Practices for Writing Super Readable Code

    [Web Design] (Nettuts+)

    Twice a month, we revisit some of our readers’ favorite posts from throughout the history of Nettuts+. Code readability is a universal subject in the world of computer programming. It’s one of the first things we learn as developers. This article will detail the fifteen most important best practices when writing readable code. 1 - Commenting & Documentation IDE’s (Integrated Development Environment) have come a long way in the past few years. This made commenting your code ...

    [details] received 319 days ago  published 319 days ago  lang: en 
  • Blog Post: How do I get the title of a dialog from a dialog resource?

    [SAP] (Site Home)

    A customer submitted the following question: We are developing automated tests for our application. Among other things, our application uses property sheets, which means that the name of the tab is stored as the title of the dialog template resource. Since we want our automated tests to run on all language versions of our application, we don't want to hard-code the tab names in our automated test. I have not been able to find any information on how to programmatically extract the dialog titles ...

    [details] received 319 days ago  published 319 days ago  lang: Unknown 
  • Blog Post: Using SCVMM 2012, NetApp SMI-S provider, and Visio to visualize storage

    [Enterprise] (Site Home)

    Hello everyone, So the VMM team finally announced BETA at MMS in March. One request we heard from you during the event is the need to visualize storage. VMM 2012 goes a long way to integrate storage automation into VMM using SMI-S based providers. Through these providers, VMM gets a lot of great data. You can use this data to visualize your storage environment. Below is one example of how I modified an existing NetApp PowerShell script that generates a Visio diagram with aggregate, volume, an ...

    [details] received 319 days ago  published 319 days ago  lang: Unknown 
  • New Articles Published for week ending 3/26/11

    [Virtualization] (VMware)

    New Articles Published for week ending 3/26/11 VMware ESX High Availability fails to configure with error: HA agent on xxxxxx in cluster xxxxx in xxxxxxx has an error: error while running health check script (1021173) Date Published: 3/25/2011 How to set up sudo with active directory accounts (1027766) Date Published: 3/21/2011 When using NetXen 1G NX3031 or multiple 10G NX2031 devices, ESX hosts fail to boot with the error: Out of interrupt vectors err ...

    [details] received 321 days ago  published 321 days ago  lang: en 
  • Java Training expandable through Micro SD slot up to 32GB. EDGE and GPRS technology

    [Africa] (Afrigator)

    Java Training expandable through Micro SD slot up to 32GB. EDGE and GPRS technology Java Training expandable through Micro SD slot up to 32GB. EDGE and GPRS technology Free Online Articles Directory Why Submit Articles? Top Authors Top Articles FAQ AB Answers Publish Article 0 &#038;&#038; $.browser.msie ) { var ie_ ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • image

    Blog Post: Building Windows Azure Service Part3: Table Storage

    [RIA (Rich Internet Apps)] (Site Home)

    This post shows how to create a project that contains the classes which enables the GuestBook application to store guest entries in the Windows Azure Table Storage. The Table Storage service offers semi-structured storage in the form of tables that contain collections of entities. Entities have a primary key and a set of properties, where a property is a (name, typed-value) pair. The Table Storage service primary key has the following two properties: PartitionKey and RowKey keys that uniq ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • Microapps and the Art of Widget Maintenance

    [Guardian] (Blogposts | guardian.co.uk)

    The rather strange practice of killing your own servers by pointing Guardian traffic at them, and how not to let that happen otherwise known as what I learnt about caching in a very short space of timeA few weeks ago we rolled out a small update to the website, with luck you didn't notice. Up there is the screenshot, I've added a subtle label to help too!The bit the arrow's pointing to I'll call the Widget for simplicity's sake. It looks pretty much the same as the last one but now with the add ...

    [details] received 1 year ago  published 1 year ago  lang: en-gb 
  • Windows Server 2008 R2 File System Technologies

    [Windows] (Computing Tech)

    Windows Server 2008 R2 provides many services that can be leveraged to deploy a highly reliable, manageable, and fault-tolerant file system infrastructure. Windows Volume and Partition Formats When a new disk is added to a Windows Server 2008 R2 system, it must be configured by choosing what type of disk, type of volume, and volume format type will be used. To introduce some of the file system services available in Windows Server 2008 R2, you must understand a disk’s volume partition f ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • Blog Post: Why does ContentManager.Load or TitleContainer.OpenStream say file not found?

    [Business Intelligence] (Site Home)

    The simple answer is that the file you are trying to load must not actually exist in the location you are trying to load it from! And yet people sometimes get stuck on this error, unable to open their file and with no idea how to figure out why this is failing. I suspect this is a side effect of the Content Pipeline being so automated in XNA. When the usual experience is to just drop an image into Visual Studio, then ContentManager.Load it into your game, there is no need to learn the details o ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • Blog Post: Handling SQL Azure Connections issues using Entity Framework 4.0

    [Geography] (Site Home)

    The underlying platform within SQL Azure consists of many instances of SQL Server, each of which is managed by the SQL Azure fabric. The SQL Azure fabric is a distributed computing system composed of tightly integrated networks, servers, and storage. It enables automatic failover, load balancing, and automatic replication between physical servers. Troubleshooting Connection-loss Errors Connection-loss is not uncommon when databases encounter resource shortages. A unique feature of SQL Azure i ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • HTML5 Video Player of Firefox

    Create ASP.NET Server Controls from Scratch

    [Web Design] (Nettuts+)

    In this tutorial, you will learn how to build an ASP.NET server control by creating a HTML5 video player control. Along the way, we’ll review the fundamental process of server control development from scratch. Introduction ASP.NET comes with its own set of server-side controls, so why create our own? By creating our own controls, we can then build powerful, reusable visual components for our Web application’s user interface. This tutorial will introduce you to the process of ASP.NE ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • Oracle Support Master Note for Streams Downstream Capture - 10g and 11g [Video] (Doc ID 1264598.1)

    [Corporate Blogs] (Blogs.oracle.com Recent Posts (English-language only))

    Master Note for Streams Downstream Capture - 10g and 11g [Video] (Doc ID 1264598.1) Copyright (c) 2008, Oracle Corporation. All Rights Reserved. In this Document Purpose Scope and Application Master Note for Streams Downstream Capture - 10g and 11g [Video] Downstream Capture Transport Considerations in Downstream Capture Instantiation - Implications for Primary Database Recommended Parameter Settings TroubleShooting Performance Issues Ongoing Streams Rela ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • Must Have Tools for Hackers

    [Africa] (Afrigator)

    Hi guys, am here again with another gbam. This tools are selected from varieties of tools around the web. They are what i call the "must have" tools for tech geeks. These collection has been with me for some time now so i've decided to share it with you guys. In case you're knew to hacking, you can see my previous post on the most important basic hacking skills you must acquire and you can also read my prevous post on 1000 Hacking Tutorial. If you have any question you can use the comment box be ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • sachin.png

    Setup of ODI 11g Agents for High Availability

    [IT, Enterprise] (Blogs.oracle.com Recent Posts (all languages))

    Thanks to Sachin Thatte for contributing this article! Introduction Oracle recently introduced the latest release of Oracle Data Integrator (ODI) Enterprise Edition 11g the summer of 2010. With this offering, Oracle raised the bar on performance, scalability and highly availability for data movement and transformation solution. With the unique E-LT (Extract, Load and Transform) approach, the total cost of ownership for ODI is a fraction of its competition. In this article we will show how to t ...

    [details] received 1 year ago  published 1 year ago  lang: all 
  • Apply the DRY Principle to Build Websites With ExpressionEngine 2

    [Web Design] (Nettuts+)

    ExpressionEngine 2 is a wonderful CMS and arguably the most designer-friendly one out there, used by many well-known names like A List Apart, Andy Clarke and Veerle Pieters. Ironically, however, its default configuration is poorly suited for use in a professional web development workflow, which usually involves multiple sites, servers, and developers. This tutorial will show you how to customize ExpressionEngine 2 so you can hit the ground running with a rock solid yet flexible starting point t ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • moz-screenshot-17.jpg.jpeg

    Translate report data export from RUEI into HTML for import into OpenOffice Calc Spreadsheets

    [Corporate Blogs] (Blogs.oracle.com Recent Posts (English-language only))

    A common question of users is, How to import the data from the automated data export of Real User Experience Insight (RUEI) into tools for archiving, dashboarding or combination with other sets of data. XML is well-suited for such a translation via the companion Extensible Stylesheet Language Transformations (XSLT). Basically XSLT utilizes XSL, a template on what to read from your input XML data file and where to place it into the target document. The target document can be anything you like, i ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • VSO Image Resizer 4.0.2.5

    [Africa] (Afrigator)

    VSO Image resizer is a free tool that organizes your photos by shrinking their resolution or moving them within your hard drive. It is the perfect tool for those who store their digital pictures and images on their PC and who want to resize, compress, convert, create copies, import or organize photos. VSO Image resizer is integrated into the Windows explorer shell, right click on your pictures and start working on your pictures!Using this free resize image software, you can create e-mail friendl ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • EditProjectFile

    WCF RIA Services Part 9 - Structuring Your Application

    [RIA (Rich Internet Apps)] (SilverlightShow: Silverlight Community)

    This article is Part 9 of the series WCF RIA Services: Getting Started with WCF RIA Services Querying Data Through WCF RIA Services Updating Data Through WCF RIA Services WCF RIA Services and MVVM Metadata Classes and Shared Code in WCF RIA Services Validating Data with WCF RIA Services Authenticating and Authorizing Calls in WCF RIA Services Debugging and Testing WCF RIA Services Applications Structuring WCF RIA Services Applications Exposing A ...

    [details] received 1 year ago  published 1 year ago  lang: da 
  • links for 2010-11-19

    [Corporate Blogs] (Blogs.oracle.com Recent Posts (English-language only))

    EAI in the Oracle MDM Foundation Layer David Butler  identifies the Enterprise Application Integration (EAI) components in the MDM. "These are the Oracle Fusion Middleware (FMW) technologies used to support MDM Applications. These include application integration services, business process orchestration services, business rules engine, event-driven architecture, web services management, and user identity management." (tags: oracle otn eai entarch mdm) ...

    [details] received 1 year ago  published 1 year ago  lang: ca 
  • SharePoint 2010 Cookbook: 4 Methods to Migrate a Single List to SharePoint 2010 from 2007

    [SharePoint] (Bamboo Nation)

    Challenge: I recently needed to move a list from SharePoint 2007 to SharePoint 2010. I wanted the destination list to have the exact content as the source list including structure, list items, and attached files. Since SharePoint does not have an STSADM.EXE command line tool to accomplish this, it needs to be done manually. What are our options? Solution: After doing some research, I discovered that there are a few ways to accomplish this task. You can migrate a single list from SharePoint ...

    [details] received 1 year ago  published 1 year ago  lang: en-US 
  • Blog Post: Always Enable Disk-Based Caching in SharePoint Server 2010

    [RIA (Rich Internet Apps)] (Site Home)

    In March, 2009, I wrote a post that explains why I always recommend enabling disk-based caching in Microsoft Office SharePoint Server (MOSS) 2007. This morning a Microsoft PFE (Premier Field Engineer) reached out to me after he came across my blog post while investigating some issues at a customer site. He said that he was at some "government agency" but that's all he would say -- and probably all I want to know ;-) Anyway, he mentioned that his 10-minute SQL Server Profiler trace showed somet ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • Clue App Test on SEOmoz

    Launching a New Website: 18 Steps to Successful Metrics & Marketing

    [Power150, SEO (Search Engine Optimization)] (SEOmoz Daily SEO Blog)

    Posted by randfishThe process of launching a new website is, for many entrepreneurs, bloggers and business owners, an uncertain and scary prospect. This is often due to both unanswered questions and incomplete knowledge of which questions to ask. In this post, I'll give my best recommendations for launching a new site from a marketing and metrics setup perspective. This won't just help with SEO, but on traffic generation, accessibility, and your ability to measure and improve everything about yo ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • SP2010 AJAX part 3– using jQuery AJAX with a HTTP handler

    [SharePoint] (Chris O'Brien)

    Boiling jQuery down to the essentials (technique) Using the JavaScript Client OM + jQuery to work with lists (technique) Using jQuery AJAX with a HTTP handler (technique) – this article Returning JSON from a HTTP handler (technique) Enable Intellisense for Client OM and jQuery (tip) Debugging jQuery/JavaScript (tip) Useful tools when building AJAX applications (tip) Transitioning existing applications to jQuery/AJAX So far we’ve looked at jQuery for page manipu ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • Blog Post: Getting Started with Visual Studio 2010 Ultimate - Load and Performance Testing

    [Ecommerce] (Site Home)

    If you are new to Visual Studio 2010 Ultimate Load Testing - this article is for you. This gives you a quick overview and shows you how you can get started. Getting Visual Studio 2010 There are a couple of ways you can get access to Visual Studio 2010 to try it out. Option 1: Download a trial Download a trial version for Visual Studio 2010 Ultimate Trial from http://www.microsoft.com/visualstudio/en-us/download . The other versions will not work for you, so select the Web Installer or th ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • image017

    Blog Post: Deploying a VSTO Excel 2007 add-in to All Users (Visual Studio 2008 SP1)

    [Geography] (Site Home)

    _____________________________________________ !!!! [PERFORM THIS STEP FIRST] !!!! To be able to deploy an Add-in to all users (without manually installation for each user account on a machine) you must download and install http://support.microsoft.com/kb/976811 (A 2007 Office system application does not load an add-in that is developed by using VSTO); To enable the hotfix package, follow these steps: Go to Start menu; Type regedit, and then press ENTER. Locate and then click the f ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • Database-Backed Refreshable Beans with Groovy and Spring 3

    [Programming] (No Fluff Just Stuff)

    In 2009 I published a two-part series of articles on IBM developerWorks entitled Groovier Spring. The articles showed how Spring supports implementing beans in Groovy whose behavior can be changed at runtime via the "refreshable beans" feature. This feature essentially detects when a Spring bean backed by a Groovy script has changed, recompiles it, and replaces the old bean with the new one. This feature is pretty powerful in certain scenarios, for example in PDF generation; mail or any kind of ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • Part-time data entry person needed (Bensenville)

    [Jobs, Jobs (not Steve)] (craigslist | all jobs in chicago)

    We are looking for a part-time data entry person who is familiar with Word and Excel. This person will need to copy and paste information into a coding template at the correct spot. Each template will have different sections, which require different information. High accuracy required. Work load varies, ranging from 8 - 24 hours per week. Work hours are 9:00 - 5:30 during weekdays. Requirements: - Very detail oriented - Accurate - Able to work with flexible work schedule - ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • Blog Post: WP7 Code: Managing Application State

    [SAP] (Site Home)

    Visual Studio and the Windows Phone Developer Tools make building software for the Windows Phone similar to building desktop or browser applications. However, beyond these similarities crafting a phone application differs fundamentally from building an application aimed at a device with a keyboard, large screen, running on AC power, and with reliable network connectivity (to name just a few differences). Mobile device users are less likely to tolerate applications that demand too much of their a ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • Blog Post: Hello, Lync!

    [SharePoint] (Site Home)

    Getting started with Lync controls is actually quite easy. In this post, we will explore the basic steps required to create a sample application using Lync controls, and then we will run a simple “Hello, Lync” application which shows a presence indicator with photo. Creating your first Lync Controls project We’ll use the WPF application libraries in this sample. 1. To begin, you must first install and sign in to Microsoft Lync. All Lync controls require a running instance o ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • Consuming web services with the Dojo Toolkit

    [Java] (java.blogs Recent Entries)

    rajneesh's posterous This article is about consuming web services—both simple services and RESTful web services— using the Dojo Toolkit. To get the most out of this article, you need to have the following installed and configured on your system: A text editor or integrated development environment (IDE) (This article uses the Eclipse JavaScript IDE.) A web server Dojo Toolkit overview As the focus on building better Rich Internet Applications (RIAs) increases, JavaScript fr ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • How to Create a Safari Extension from Scratch

    [Web Design] (Nettuts+)

    Safari 5, the latest version of Apple’s web browser, introduces extensions. Safari extensions are small add-ons that you can use to expand Safari’s capabilities, built using simple HTML, CSS and JavaScript. In this tutorial, you will learn the basics of extension development by creating a simple extension using Safari 5′s Extension Builder. Introduction In this tutorial we will build a simple extension that adds a button to the main Safari toolbar, and opens up Nettuts+ in a ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • Blog Post: Silverlight for Windows Phone 7: ListBox Scroll Performance

    [SharePoint] (Site Home)

    Having a basic list scoll is a key scenario for many applications. The Silverlight Windows Phone 7 list box control makes it easy to bind data and get the performance benefits of UI container virtualization. However, in order to get these free performance benefits you need to be careful about how you use it. Here are some tips on how to tweek your list box scroll performance. Simplify ListBox Item Listbox's VirtualizingStackPanel (VSP), calculates the height of items currently in the view an ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • Blog Post: Integrating Prism v4 Region Navigation with Silverlight Frame Navigation

    [Microsoft Office] (Site Home)

    Introduction This article covers integrating Prism v4 Region Navigation with Silverlight 4 Frame Navigation. Integration is not directly supported by the Prism v4 Library. The included download provides the required classes to integrate the two navigation API's. The below image pictures the demo application; notice the user friendly, deep link unmapped Uri in the address bar. The right ListBox lists an Item view was opened and subsequently navigated away from. This included application dem ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • Getting Started with jQuery Templates and SharePoint 2010

    [SharePoint] (Jan Tielens' Bloggings)

    Yesterday evening Scott Guthrie announced that Microsoft’s contributions to the jQuery Javascript library were accepted as Official jQuery plugins. One of those contributions is the jQuery Template plugin that allows you to do (up to a certain level) something like data binding similar to the approach we know from Silverlight. The idea is to create a template (think HTML snippet with elements bound to data properties) and data bind that template with an array of objects. You can find the API d ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • jquery

    Javascript Libraries and ASP.NET: A Guide to jQuery, AJAX and Microsoft

    [Programming] (Articles, Opinions & Lab - MIX Online)

    When Microsoft announced they would begin providing official support for jQuery, few of us realized how profoundly that announcement would eventually impact client-side development on the ASP.NET platform. Since that announcement, using jQuery with ASP.NET has moved from the obscure, to a central role in ASP.NET MVC’s client-side story, and now to the point of potentially superseding ASP.NET AJAX itself. The journey hasn’t been all smooth. With Microsoft’s move toward jQuery, the ASP.NET ...

    [details] received 1 year ago  published 1 year ago  lang: en 
  • image

    Blog Post: Pivoting ASP.NET event log error messages

    [Microsoft Office] (Site Home)

    Unless you’ve been hiding under the proverbial rock, you’ve probably seen the recent Pivot hoopla. If you’re not familiar with it, it’s a way to visualize a large amount of data in a nice filterable format. The nice thing about it is that it’s really easy to put together a pivot collection and there are a ton of tools available for just this purpose. Just do a search on CodePlex for Pivot and you’ll get about 40’ish good results for tools you can use to create a Pivot Coll ...

    [details] received 1 year ago  published 1 year ago  lang: Unknown 
  • something like crystal report or active reports for php?

    [IT] (DaniWeb IT Discussion Community)

    hi, i looking for a design report like crystal report or active reports but for php the objective is creat a report using mysql data and save the template and load that report in a pdf file for print or save any one know something like that? i already use classes like class.ezpdf.php but i ...

    [details] received 1 year ago  published 1 year ago  lang: en-US 
  • VooSky Business & Portfolio- 8 in 1 WordpressTheme (Business)

    [WordPress] (ThemeForest new items)

    VooSky Theme VooSky comes with awesome featured post slider, Two home page layouts, 8 colors, fully working contact form, Advance theme /post and page option panels, portfolio page(multi page or single page) , Dropdown navigation with infinite dropdown levels and many other MAIN FEATURES Easy to Customize. 8 colors styles to choose with default color style. Two home page Layouts. Advance theme option panel. Page setting panel. Post settin ...

    [details] received 1 year ago  published 1 year ago  lang: en-US