Stories recently tagged with 'Expression'

Expression Design: Step By Step Designing my Dragon icon(alfredoalvarez.com)

submitted by avatareavatare(61) 2 years, 7 months ago

Is a step by step tutorial using the expression design tools to create an icon in this case of a dragon. The idea here is to show the power of the expression tools. This same techniques can be used for the design of interfaces read more...

add a comment |category: |Views: 38

tags: another

Inline Regular Expression Options(blogs.msdn.com)

submitted by jemtsjemts(591) 3 years, 4 months ago

Did you know you can specify regular expression option inline inside the regular expression text? You can even have parts of one regular expression have different options! read more...

add a comment |category: |Views: 48

tags: another

Silverlight resources for designers(weblogs.asp.net)

submitted by PluginbabyPluginbaby(1190) 3 years, 6 months ago

When I am training Silverlight I am often asked by designers how to find resources on Silverlight/XAML/Expression, so here is a post for them. read more...

add a comment |category: |Views: 19

tags: another

Linq to Financial Markets : New Optimizing/Parsing Provider(blog.domaindotnet.com)

submitted by dcarrdcarr(790) 3 years, 9 months ago

We just finished the final iteration for this and went gold. Although this post has more marketing then I would normally post here, I at least wanted to let fellow Linq fanatics that our 'semi-secret' project with a few companies you might know has at least for now reached a milestone. And who could announce a new product without Silverlight (grin).. No seriously we love it. WPF was not all that compelling and XAML didn't look like much fun until we got our killer app in Silverlight. We even wrote a Linq version of the 'scribbler' code the deep zoom team posted if anyone would like it. Anyway, lots of good technical material will follow. We learned a lot and continue to learn a lot from dissecting the Linq to NHibernate project. What makes this work so fun is it demands optimization across different vendor web services. We do a kind of 'query optimizer' to decide how to fan out requests where we know the general characteristics of say 'asset classes' as data series vs. say a large list of equities. read more...

1 comment |category: |Views: 47

tags: another

Introducing Microsoft Expression Web(en.csharp-online.net)

submitted by worldworld(520) 3 years, 9 months ago

Your journey through Expression Web begins here with an introduction to the product. Specifically, you will do the following: Become familiar with the Expression Web interface, Learn about the many options available within the menu bar, Understand the role of Task Panes, Use and customize toolbars, Learn to recognize and use the Development window, the tag selector, the development area, the tabbed file chooser, and the Design, Split, and Code views. read more...

1 comment |category: |Views: 11

tags: another

IntelliSense for Expression Blend(blogs.telerik.com)

submitted by ligazligaz(255) 3 years, 9 months ago

An add-in for Expression Blend 2.5 that adds IntelliSense for editing of XAML files. read more...

add a comment |category: |Views: 171

tags: another

An Update to Deep Zoom Composer(blogs.msdn.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years ago

Ever since we released Deep Zoom Composer during MIX, there has been a ton of great feedback you have all sent us on what you liked and what you would like to see improved in future versions. To give you a sneak peek at where we are currently, we're releasing an updated version of Deep Zoom Composer for you all to play with: read more...

add a comment |category: |Views: 13

tags: another

ScottGu: First Look at Using Expression Blend with Silverlight 2(weblogs.asp.net)

submitted by JemmJemm(9604) 4 years, 2 months ago

In this first set of Silverlight tutorials I didn't use a visual design tool to build the UI, and instead focused on showing the underlying XAML UI markup (which I think helps to explain the core programming concepts better). Now that we've finished covering the basics - let's explore some of the tools we can use to be even more productive. read more...

1 comment |category: |Views: 12

tags: another

Microsoft Gives Students Technical Software at No Charge(microsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 3 months ago

DreamSpark offers millions of students access to professional-grade software developer and designer tools. read more...

add a comment |category: |Views: 4

tags: another

SQL 2005 Server Side Paging using CTE (Common Table Expression)(softscenario.blogspot.com)

submitted by animaonlineanimaonline(275) 4 years, 3 months ago

When a application want to show the result from an SQL-query as a paged view, i.e. showing ten or fifteen result on first page, then have a "next" function to show the next page of results. To minimize traffic over the network, it is best practice to do the paging on the SQL-server, so that only the results you want to show is sendt to the application. With SQL Server 2005 this is quite easy using the new CTE capabilities and the new ROW_NUMBER() function. (using the AdventureWorks example database for SQL-2005 http://codeplex.com/) Consider the following T-SQL to select out all employees from Person.Contact: SELECT [FirstName] ,[MiddleName] ,[LastName] ,[EmailAddress] FROM [Person].[Contact] This will result in 19972 rows returned, and the paging logic has to be done on the client application. not good.. so first we implement the ROW_NUMBER() function like this: SELECT ROW_NUMBER() OVER (Order by [Person].[Contact].[LastName]) AS RowID, [FirstName] ,[MiddleName] ,[LastName] ,[EmailAddress] FROM [Person].[Contact] This will create a unique RowID for each row in the result. Now we need to wrap the result in a CTE using just the WITH [ctename] AS () statement: WITH AllEmployees AS (SELECT ROW_NUMBER() OVER (Order by [Person].[Contact].[LastName]) AS RowID, [FirstName] ,[MiddleName] ,[LastName] ,[EmailAddress] FROM [Person].[Contact]) Now we have all the Employees in a in-memory table called AllEmployees, and we can select from this table as any other table, with all the common clauses. Simplest term: SELECT [FirstName] ,[MiddleName] ,[LastName] ,[EmailAddress] FROM AllEmployees Then, to use this for a Server-side paging solution, the simplest way we use the RowID to establish what rows to return, either by using DECLARE [varname] or by putting the whole code into a Parameterized StoredProcedure like this: CREATE PROC GetPagedEmployees (@NumbersOnPage INT=25,@PageNumb INT = 1) AS BEGIN WITH AllEmployees AS (SELECT ROW_NUMBER() OVER (Order by [Person].[Contact].[LastName]) AS RowID, [FirstName],[MiddleName],[LastName],[EmailAddress] FROM [Person].[Contact]) SELECT [FirstName],[MiddleName],[LastName],[EmailAddress] FROM AllEmployees WHERE RowID BETWEEN ((@PageNumb - 1) * @NumbersOnPage) + 1 AND @PageNumb * NumbersOnPage ORDER BY RowID END The parameter for this procedure is used for the paging and when executed it will return a result based on how many results per page, and what page read more...

add a comment |category: |Views: 27

tags: another

How To Use Microsoft Expression Blend to Modify a Control (dev102.blogspot.com)

submitted by razamitrazamit(4566) 4 years, 5 months ago

Say you absolutely have to change the Button of a Combobox to a circle instead of an arrow - you just have to!!!! Here comes Microsoft Expression Blend to the rescue read more...

add a comment |category: |Views: 12

tags: another

Expression Studio on MSDN today!(weblogs.asp.net)

submitted by PluginbabyPluginbaby(1190) 5 years ago

Expression Studio is available for Premium subscribers to MSDN Visual Studio Team Suite! read more...

add a comment |category: |Views: 1

tags: another

Microsoft Expression Blend 2 Free Trial (May Preview)(microsoft.com)

submitted by crpietschmanncrpietschmann(11.3k) 5 years ago

We are pleased to present our very first preview of Microsoft® Expression Blend™ 2. The Expression Blend 2 May Preview allows you to create Microsoft® Silverlight™-based applications. Additionally, you can export content from Microsoft® Expression® Design in a format that can be used in Silverlight-based applications that you create in Expression Blend 2 May Preview. You may also find Microsoft® Expression® Media Encoder Preview to be helpful when working with video, Silverlight, and Expression Blend 2 May Preview. Learn more about Silverlight and its community today. read more...

add a comment |category: |Views: 50

tags: another

LINQ To Flickr(spellcoder.com)

submitted by bashmohandesbashmohandes(3000) 5 years, 1 month ago

I had some free time at last, so I implemented a LINQ extension to Flickr, so you can query for photos by tags, creation date, user id or title, the implementation was really easy because I didn't have to use the Flickr API's directly as I found a good open source library for this called FlickrNet which I used as my infrastructure. So this is a sample of a query read more...

1 comment |category: |Views: 15

tags: another

Expression Blend available on MSDN(blogs.msdn.com)

submitted by frank12345frank12345(2809) 5 years, 1 month ago

Expression Blend available on MSDN read more...

add a comment |category: |Views: 3

tags: another

Microsoft Expression Web Ships(evanhoff.com)

submitted by ehoffehoff(980) 5 years, 5 months ago

Expression Web is the successor to FrontPage and has a lot of features that were sorely missing: standards validation, strong css support, asp.net support, xml and xslt. While FrontPage was designed for the casual user, Expression Web was designed with the professional in mind. read more...

add a comment |category: |Views: 0

tags: another