Blogs1 - 10 of 6,213 recent posts for tag:".net"
11
Feb
2012
Nuget package manager does not update in Visual Studio Ultimate

1 hour ago by Raj Rao

I kept getting notified that there was an update for Nuget, but everytime I tried to install the update, the installation would fail with the following message: The signature on the update version of 'NuGet Package Manager' does not match the signature on the installed version. Therefore, Extension ...

Aggregated Intelligence - blog.aggregatedintelligence.com · Rank: 102,035 · 20 references

A Newton Cradle in Expression Blend

4 hours ago by Anthony Baker

Just a nice quick lab project to demonstrate how to put together a quick Silverlight application mimicking a Newton Cradle. I created the prototype completely in Expression Blend using Animations and Behaviours. Didn’t have to write a single line of code (although of course behind the scenes this is ...

Anthony Baker - blog.anthonybaker.me · Rank: 199,592 · 4 references

beyond keylogger registry

4 hours ago by admin

Name File: beyond keylogger registry Just downloaded: 48370

Anwarul Warez Blog - anwarul-islam.com

Thoughts on Frontend Windows Development

4 hours ago by Anthony Baker

Disclaimer: the statements I’m about to make can be quite polemic, specially for developers working on platforms other than .NET. My intent is not to undermine other technologies or developers. My objective is to establish the need for .NET developers to step up in the frontend interactive applicati ...

Anthony Baker - blog.anthonybaker.me · Rank: 199,592 · 4 references

Converting ASHX to PDF

6 hours ago by Kevin

Here’s a quick little piece of information. If you have a file with the .ashx file extension, just rename it to .pdf and you are good to go! This is especially helpful for downloading documents from a ASP.NET site.

K-FEZ - k-fez.com

How to Register Your Windows Phone // technology

6 hours ago by Anthony Baker

If you have been able to play with Windows Phone and have been learning how to develop Windows Phone applications, you will want to test them on a real device before publishing to the Windows Phone Marketplace to make sure the app will run as expected. In order to publish applications, you will need ...

Anthony Baker - blog.anthonybaker.me · Rank: 199,592 · 4 references

Oracle Delete Record 使用方法

7 hours ago by vectus2001

Oracle Delete Record 使用方法 private void OracleDeleteConnection() { String ConnectionString = "User Id=;Password=; Data Source=; Unicode=True"; OracleConnection conn = new OracleConnection(ConnectionString); conn.Open(); String SQLStatement = "DELETE FROM Test WHERE ...

é... - vectus.wordpress.com

Oracle Insert Record 使用方法

20 hours ago by vectus2001

Oracle Insert Record 使用方法 using System.Data.OracleClient; using System.Data; private void OracleInsertConnection() { String ConnectionString = "User Id=;Password=; Data Source=; Unicode=True"; OracleConnection conn = new OracleConnection(ConnectionString); conn.Ope ...

é... - vectus.wordpress.com

Walking through learning how to use Microsoft Translator via a console app

22 hours ago by Greg Duncan

Visual Studio Gallery - Walkthrough: Microsoft Translator in a C# Console Application "This sample explains how to use the Microsoft Translator API through the Windows Azure Marketplace by creating a sample application which takes an input string and translates it from the detected source language t ...

Greg's Cool [Insert Clever ... - coolthingoftheday.blogspot.com · Rank: 76,254 · 232 references

10
Feb
2012
Automatic Property Testing

23 hours ago by Doug Hennig

Suppose you have a class that looks like this: public class Person : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; protected virtual void OnPropertyChanged( string propertyName) { if (PropertyChanged != null) PropertyChanged( this, new PropertyChangedEventArgs(pr ...

Doug Hennig - doughennig.blogspot.com · 31 references

Previous1234567