I’ve used SSRS multiple times in the past and know of at least one instance where I’ll be using it again in the future so I was quite pleased to stumble upon Paul Litwin’s recent article regarding the current state of SSRS.
We’ve all heard that version 3 of a Microsoft product is when that product [...]
Archive for September, 2009
SQL Server Reporting Services Hits its Stride – CODE Magazine
Posted in Uncategorized, tagged 2008, microsoft, reporting, server, services, sql, SSRS on 2009/09/30 | Leave a Comment »
Visual Studio Post-Build Event Command Line
Posted in Uncategorized, tagged command-line, post-build, post-build-event, visual-studio, VS on 2009/09/24 | Leave a Comment »
Just a reminder for myself on how to create a directory and copy a renamed file into it using the post-build event of Visual Studio.
rd /s /q “$(TargetDir)Temp”
md “$(TargetDir)Temp”
copy “$(TargetDir)$(TargetName).exe” “$(TargetDir)Temp”
rename “$(TargetDir)Temp\$(TargetName).exe” “SomeCustomerUsefulName.exe”
copy “$(TargetDir)Temp\SomeCustomerUsefulName.exe” “$(TargetDir)”
rd /s /q “$(TargetDir)Temp”
WebsiteSpark – Free Beer for Developers from Microsoft!
Posted in Uncategorized, tagged microsoft, websitespark, free-as-in-beer, scottgu, web-developer, developer on 2009/09/24 | Leave a Comment »
Microsoft just announced a tasty new program that offers quite a bundle of free software to individual and small development companies. Sure it’s a shameless attempt to get people hooked on Microsoft products but I can’t fault them for it, they’ve got some good stuff and this will give more people access to it. Sweet!
WebsiteSpark [...]
Wireframing & Rapid Prototyping Apps
Posted in Uncategorized, tagged balsamiq, mockup, wireframe, prototype, rapid, UI, rapid-prototyping on 2009/09/22 | Leave a Comment »
Given the need of my “customers” to have something visual I started looking at wireframing and rapid prototyping tools. I wanted to be able to give them a rough sketch to spur discussion and ideas without the sketching method taking too much time and being more trouble than it was worth.
Back in the 1990s, when [...]
Balsamiq Studios – Paper Mockups with Digital Convenience?
Posted in Uncategorized, tagged balsamiq, design, design-mockup, mock, mockup on 2009/09/09 | Leave a Comment »
Heard about this via a software podcast over the weekend, definitely want to try it out.
# Create software mockups in minutes
# Collaborate with your team
# Focus on creating your product
via Balsamiq Studios.
Roll back (Undo) revisions in the repository
Posted in Uncategorized, tagged svn, TortoiseSVN, source-control, revert, revision, repository on 2009/09/04 | Leave a Comment »
Quick pointer to a particular TortoiseSVN feature I wasn’t familiar with for some reason. This enables reverting to a previous revision easily.
The easiest way to revert the changes from a single revision, or from a range of revisions, is to use the revision log dialog. This is also the method to use of you want [...]
Sql Documentation
Posted in Uncategorized, tagged doc-to-help, documentation, documentation-generator, documentation-tool, documentx!, sql, sql-server on 2009/09/03 | Leave a Comment »
The topic of a recent discussion, Doc-To-Help appears to be a documentation authoring tool. It does NOT appear to be a documentation generating tool. For documentation of .NET assemblies Doc-To-Help will take the output of Microsoft’s Sandcastle and add formatting, TOC’s, etc. As a quick reminder… “Sandcastle produces accurate, MSDN style, comprehensive documentation by reflecting [...]
VPS Hosting from HostGator
Posted in Uncategorized, tagged HostGator, hosting, shared-hosting, virtual-private-server, virtualization, VPS, web-hosting on 2009/09/03 | Leave a Comment »
HostGator has been my web host for oh… 5+ years now and I’ve received nothing but excellent and reliable service from them during that time. Apparently they will soon be offering a service I hadn’t considered, Virtual Private Servers. This looks very appealing, both for personal projects and for projects for my employer. Hopefully HostGator’s [...]
Ext JS – Client-side JavaScript Framework
Posted in Uncategorized, tagged AJAX, extJS, framework, javascript, library, RIA, rich-internet-application, web-2.0 on 2009/09/03 | Leave a Comment »
Ext JS is a RIA framework that was highly recommended by my colleagues, and I must admit I was highly impressed by the brief demo they gave. My next question of course is how well it integrates with the .NET web technologies and Visual Studio, answering that will make a big difference in how useful [...]