Showing results for Development Archives - Page 5 of 7 - Visual Studio Setup

Sep 12, 2005
0
0

Blog Customizations, Part 2

Heath Stewart
Heath Stewart

As mentioned earlier, I wanted to persist your preferences for whether certain collapsible panels were in the collapsed or expanded state. With a simple ECMA-compliant wrapper class around and a few minor changes to the class, state for unique panels can be remembered. The cookie wrapper class is pretty straight forward: To initialize the , an ...

DevelopmentPersonalScript
Sep 12, 2005
0
0

Blog Customizations

Heath Stewart
Heath Stewart

In my seemingly never-ending quest to provide a simple, compact, yet stylish design for this blog I have recently made a customization based on what Josh Ledgard did sometime back to make collapsible panels, though I wanted something more easily reusable. I whipped together an ECMAScript — that is, ECMA-compliant JScript and JavaScript &...

DevelopmentPersonalScript
Aug 30, 2005
0
0

Handling GAC and NGEN Operations after Reboot

Heath Stewart
Heath Stewart

Some people have noticed a general slow-down after restarting their computers after installing a .NET Framework 1.0 or 1.1, or a Visual Studio .NET 2002 or 2003 patch. This is due to a change in how post-reboot operations are handled that are sometimes necessary after installing a patch.Windows Installer automatically schedules files for ...

InstallationDevelopment
Aug 16, 2005
0
0

Deploying Crystal Reports with your Managed Application

Heath Stewart
Heath Stewart

A common problem I see in various developer forums is trying to build an installation package with the Crystal Reports merge modules or running an application with Crystal Reports on another machine is that the registration code is often forgotten. You may see an error like the following on another machine where Crystal Reports has not been ...

InstallationDevelopment
Jul 31, 2005
0
0

Compact Your VHD Files

Heath Stewart
Heath Stewart

Many times it's necessary to debug solutions on other machines so that you don't corrupt your developer machine, because of different platform requirements, or to attach a debugger without changing the state of the machine. Testing Windows Installer patches is no different. We test on daily target builds using daily upgrade builds. Installing daily...

InstallationDevelopment
Jul 21, 2005
0
0

Deciphering an HRESULT

Heath Stewart
Heath Stewart

Aaron Stebner recently blogged about ways to find out the cause of 1935 Windows Installer errors and I wanted to provide a little more background on what an defines. An in the 32-bit world and beyond is defined as a , or a signed 32-bit integer. It is defined in, among other places, winerror.h in the Platform SDK. It defines the severity of an ...

Development
Jun 30, 2005
0
0

Latest Runtime Loaded when Hosting Managed Controls in IE

Heath Stewart
Heath Stewart

I previously mentioned how I worked on a project that deploys managed applications via the Internet or an intranet. Some of my initial research was into hosting managed controls in Internet Explorer. The .NET Framework 1.0 originally granted no permissions to the Internet_Zone code group so we had to deploy a small setup that used a custom class ...

InstallationDevelopment
Jun 6, 2005
0
0

Avoid Deadlocks in your Script Host when Tearing down JScript

Heath Stewart
Heath Stewart

A couple teams recently reported an issue where their script host hung due to deadlocks. Since jscript.dll was in the call stack for the hung thread it didn't take long for the bug to wind up in our lap, since CPX also sustains Windows Script. The problem was that as one thread was exiting and was passed to the callback in jscript.dll, the ...

DevelopmentScript
May 30, 2005
0
0

Shell Extensions for .NET Assemblies, Version 1.3.1976

Heath Stewart
Heath Stewart

Today I released version 1.3.1976 of my Shell Extensions for .NET Assemblies. This version adds support for Windows Me and fixes a few bugs to provide column handlers and overlay icons for Windows Me, Windows 2000, and newer.Among the fixes was a crashing bug that occurred because of an access violation exception when sorting by the public key ...

DevelopmentPersonal
May 18, 2005
0
0

Unsupported Flag Really is Unsupported for NT4 Services

Heath Stewart
Heath Stewart

We are going through test passes on some new functionality for our patch build system and ran into a bug in a service I wrote to handle post-reboot commands without requiring an interactive login. The documentation for the SERVICE_STATUS structure for NT Services (a.k.a. Windows Services) states that the SERVICE_ACCEPT_STOP (0x40) is not ...

Development