SQL Server monitoring made easy "Keeping an eye on our many SQL Server instances is much easier with SQL Response." Mike Lile.Download a free trial of SQL Response now.
Nearly everyone starts learning anything new by beginning with something simple and adding incremental knowledge. One of the biggest challenges with Windows Azure and SQL Azure is that the simple beginning seems a bit more elusive. The "Hello World" application in the new world of cloud computing, while not overly complex in concept, requires a good measure of preparation and configuration.
The following content is designed to aid you in getting started with Windows Azure and SQL Azure in the spirit...Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.
Security bulletin MS10-036 is designed to fix an "important" vulnerability in Office XP, Office 2003 and Office 2007....Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.
Contoso dispose d'une application mobile et d'un site Web qui renvoient des informations d'utilisation. Une sonde (en JS depuis les pages HTML, en Objective-C sur iOS, en Java depuis Android, en C# depuis Windows Phone, en C# ou en JS depuis Windows 8+) envoie via HTTP POST ces informations d'usage en JSON à l'adresse http(s)://webtracker.contoso.com/t/. Le but de ce tutoriel est de montrer comment on peut mettre en ?uvre la réception de ces informations de sonde de façon à ce que cela puisse monter...
Vous pouvez, dans cette discussion, apporter vos remarques et commentaires sur l'article : Utiliser des images dans un planning
Aperçu :
[IMG]http://jeannot45.developpez.com/articles/access/prepaplanning/images/PrepaPlanning.jpg[/IMG]
Citation:
Souvent nous rencontrons sur le forum des questions concernant l'implantation d'im...
Learn how to deliver dynamic content by building a meaningful Business Intelligence Application, utilizing only what is available on the client's desktop, when a Data Warehouse BI Application, SQL Server and SSIS/SSRS aren't an option.
Does anybody knows of a good application to get it done quickly and efficiently ?
I bought Word Cleaner but the results are merely sufficient and I need go over all the generated html files to clean tons of useless injected tags like
<strongH</strong<strongell</strong<strongo </strong<emWor</em<emld</em
Most of the articles displayed on a website I manage are based on documents written on MS Word by people how has little idea of what are margins for or ordered/unordered lists, foot/end notes etc and I cannot make them use something else.
Does anyone has a tip to help me handle those pages more efficiently than going over them to correct and apply my CSS style ?
NB: Just for the record, using "Save as HTML DOC" in Word is faaar worst than Word cleaner
This article presents some of the changes in Visual Studio 2010 for Visual C++, focusing on new the build system (MSBuild), multi-targeting, IntelliSense and browsing experience.
<b>ZDNet:</b> "The continuing conflict between Google and China, which may be a proxy for deeper conflicts over economics and values, could easily impact open source."
Sortie du SP1 de la suite Office 2010
Office 2010 prend un coup de jeune, Micrososft diffuse depuis hier le SP1 de la suite Office 2010.
Ce Service Pack comprend deux catégories principales de correctifs :
1 - Des correctifs précédents non publiés qui ont été conçus spécialement pour ce Service Pack. En plus des correctifs généraux du produit, ces correctifs incluent des améliorations de la stabilité, des performances et de la sécurité.
2 - Et toutes les mises à jour publiques parues jusqu'en juin 2011 et toutes les mises à jour cumulatives parues jusqu'en avril 2011.
On notera par exemple dans OneNote la fonction d'archivage rapide, qui permet d'enregistrer votre section locale des notes non ...
Once you have set up Office Communication Server 2007 R2 to provide IM within the rganisation, the next stage is to provide full telephony by setting up the OCS Mediation Server and the OCS Edge Server to connect ‘outside’ the organization, and escpecially to a SIP trunk provider of Internet phone services.
I've been running at a fast pace for the past few days, so I'm going to add a few posts here to catch up. Day 3 of the DevDays event in the Netherlands was a success. I delivered a session on "Open XML Solution Building With Word and Excel Services". Huge thanks to Zeyad Rajabi for pulling together some of the server-side demos I showed. Among the 10 or so demos I showed I showed people how to connect to a datasource and start pumping data into a document. For example, what about connecting to a...Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.
Come hear how to protect Silverlight applications from common threats, including securing your application from intruders, eavesdroppers, and users as well as protecting your code, your data, and your servers from attacks. Also, hear about the key security vectors that must be considered when using Silverlight, such as securing applications that often live outside firewalls....Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.
SmartGlass won't be available to consumers until the fall, and if the reviews of the feature's capability are any indication, it's going to feel like a very long wait. SmartGlass lets you switch from watching something on your TV to watching it on your tablet or smartphone, and vice versa. But that's only the beginning. SmartGlass also lets developers turn smartphones and tablets into Xbox 360 controllers. Thus, if you're playing a sports-based game with your friends, you can enter your strategic plays into your smartphone, so he can't tell what your team is about to do. Or, with a baseball ga...
Office 2010 may be making its commercial debut on June 15th, but the software giant is releasing its free Web-based productivity suite to the public ahead of the launch.
>>> start_date = date(1983, 11, 23)
>>> start_date.replace(month=start_date.month+1)
datetime.date(1983, 12, 23)
This works until the month is <=11, as soon as I do
>>> start_date = date(1983, 12, 23)
>>> start_date.replace(month=start_date.month+1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: month must be in 1..12
How can I keep adding months which increments the year when new month is added to December?