fatma78

Stories kicked by fatma78

Enabling Frame Rate Counters for HTML Applications in Windows 8(michaelcrump.net)

submitted by mbcrumpmbcrump(1034) 7 months, 28 days ago

Introduction Just the other day I blogged about “Enabling Frame Rate Counter for XAML Applications in Windows 8”. At the very end of that post, I reminded everyone that that method does not work for HTML / JS Metro Applications. But, we are in luck as Mathias Jourdain provided sample code for accomplishing this in HTML / JS in his Build talk. The only problem was that he didn’t describe how to hook this into a new application to actually use. That is going to be the focus of today’s blog post. Let’s get started Unlike XAML Applications, this must be done using code. So, click on “Visual Studio 11” to begin. read more...

1 comment |category: |Views: 13

tags: another

Red-Gate Find the Bugs Game(www.red-gate.com)

submitted by bsenoffbsenoff(1583) 8 months, 7 days ago

Our friends at Red-Gate give you a short break with this spot the difference game. read more...

3 comments |category: |Views: 148

tags: another

Synchronisation and Aggregation(www.blackwasp.co.uk)

submitted by rcashrcash(4149) 8 months, 24 days ago

This is the fifth part of the Parallel Programming in .NET tutorial. In continuation of parallel loops, this article looks at synchronisation problems of aggregation and how to overcome them with locking and local state values. read more...

1 comment |category: |Views: 24

tags: another

Foreign key vs. Independent associations in Entity Framework 4(www.ladislavmrnka.com)

submitted by LadislavMrnkaLadislavMrnka(65) 8 months, 25 days ago

Independent and Foreign key associations are two ways to model relationships in Entity framework 4. This article describes differences between them. read more...

4 comments |category: |Views: 57

tags: another

Supporting multiple submit buttons on an ASP.NET MVC view(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 6 months ago

A while ago, I was asked for advice on how to support multiple submit buttons in an ASP.NET MVC application, preferably without using any JavaScript. The idea was that a form could contain more than one submit button issuing a form post to a different controller action. The above situation can be solved in many ways, one a bit cleaner than the other. For example, one could post the form back to one action method and determine which method should be called from that action method. Good solution, however: not standardized within a project and just not that maintainable… A better solution in this case was to create an ActionNameSelectorAttribute. read more...

add a comment |category: |Views: 836

tags: another

Beyond Hello World: PostSharp with Gibraltar Software and SmartInspect(postsharp.org)

submitted by gfraiteurgfraiteur(988) 2 years, 6 months ago

Tracing has long been the "Hello, world" sample of Aspect-Oriented Programming .Yet, some advanced tools are available to .NET developers. Two of them deserve a special attention since their vendor provides aspects that can be directly used with PostSharp: Gibraltar and SmartInspect. read more...

add a comment |category: |Views: 162

tags: another

ASP.NET MVC 2 Beta Default Parameter Values(dotnetcurry.com)

submitted by malcolmsmalcolms(1156) 2 years, 6 months ago

The following article talks about ASP.NET MVC 2 Beta and the new DefaultValue attribute read more...

add a comment |category: |Views: 11

tags: another

Deploying A Web Application with Git and FTP(blog.wekeroad.com)

submitted by wiredonewiredone(917) 2 years, 6 months ago

ASP.NET Web Deployment is, shall we say, problematic at times – at least for a hosted scenario where you can’t do dumps from a build server and you don’t have access to IIS (which means you can’t use WebDeploy). What you’re about to read isn’t specific to the Microsoft platform at all and works with any development tool. And NO, you don’t need a single thing installed on the server (save FTP) for it to work. read more...

add a comment |category: |Views: 23

tags: another

Kanban Distilled(kanbandistilled.com)

submitted by powerrushpowerrush(3873) 2 years, 6 months ago

A very quick but helpful description of the Kanban agile software development process. read more...

add a comment |category: |Views: 370

tags: another

Reporting Services 2008 - Querying a Web Service(blog.infotoad.com)

submitted by hesquivelhesquivel(110) 2 years, 8 months ago

Reporting Services 2008 - Using XML Data Source type and Querying a Web Service This article will demo using an XML Data Source type in Reporting Services 2008. We will then consume three different web service methods – simple web service method, parameter based method and a method that returns a dataset. read more...

add a comment |category: |Views: 60

tags: another

SilverBullet #10 System.Windows.Documents.Run(blog.timmykokke.com)

submitted by sorskootsorskoot(195) 2 years, 8 months ago

When showing text to a user it's often necessary to show a few words in Italic or Bold. To do this, use the System.Windows.Documents.Run class. This class provides a small bit of HTML - like features inside a Silverlight TextBlock. But, instead of using HTML tags you have to use the Run class. read more...

add a comment |category: |Views: 12

tags: another

Run you later - Understanding deferred execution in LINQ(msmvps.com)

submitted by JoacimJoacim(255) 2 years, 8 months ago

In this article I’m going to try to explain one of the most misunderstood features of LINQ – deferred execution - and the impact it might have on your code if you don’t fully understand what it means... read more...

add a comment |category: |Views: 12

tags: another

What is the Difference Between <%# j %> and <%= j %>(soliddotnet.com)

submitted by neerajmathurneerajmathur(130) 2 years, 8 months ago

These are the two types constructs to access page-level variables in an ASP.NET web template: data binding syntax * Data binding—the hierarchical mapping of control properties to data container values—is specified by the <%# … %> tags. Code located within a <%# … %> code block is only executed when the DataBindmethod of its parent control container is invoked. code rendering syntax * The <%= … %> code tags output content to the browser. This content could be hard-coded, or it may contain page-level variables. read more...

add a comment |category: |Views: 13

tags: another

Localising WPF Applications Using RESX Files and Standard Data Binding(grumpydev.com)

submitted by Grumpydev2Grumpydev2(144) 2 years, 8 months ago

How to localise a WPF application using standard WPF databinding, including support for dynamically changing locale. Includes a simple example and a more complex PRISM based application. read more...

add a comment |category: |Views: 73

tags: another

WPF WebBrowser - Awesome!!(blogs.msdn.com)

submitted by frank12345frank12345(2809) 2 years, 8 months ago

Just came back from vacation, which was great. Going through the blog posts i missed, I saw the WPF browser app which I thought you should definitely take a look. Its a mix of the Google Chromium project, (a wrapper called Awesomium ) and a WPF. read more...

add a comment |category: |Views: 77

tags: another

Data Object Base - a WPF compatible data class(blog.catenalogic.com)

submitted by TischnoetentoetTischnoetentoet(424) 2 years, 8 months ago

The DataObjectBase class is a class that can be used to quickly implement data objects that must support the following requirements: 1) Fully serializable 2) Support property changed notifications 3) Backwards compatibility 4) Error checking 5) Backup & revert read more...

add a comment |category: |Views: 17

tags: another