About Me

My photo
Northglenn, Colorado, United States
I'm primarily a BI Developer on the Microsoft stack. I do sometimes touch upon other Microsoft stacks ( web development, application development, and sql server development).
Showing posts with label tool. Show all posts
Showing posts with label tool. Show all posts

Monday, October 15, 2007

HL7 Schema Generation Tool

"Enables customizing schemas that ship with Microsoft BizTalk Accelerator for HL7"

http://www.microsoft.com/downloads/details.aspx?FamilyID=94877261-1f04-40b7-8c6d-cf92f38d09a3&DisplayLang=en

The tool they use to make HL7(v2.0) into XML.

Pre-req: BizTalk Server 2006 R2 or BizTalk Server 2006

Tuesday, October 09, 2007

WaterMark It

So, I developed another personal window application. This app, WaterMark It, allows the user to take an image (hopefully that they own) and place a watermark on it. The program allows the user to make the watermark text/image with some opacity. The user can, print, save/save as, view thumbnail, etc....

I have also included in installation the source files, just incase you want to make fun of my horrible programming. <^_^>

The source file will be placed in (by default): C:\Program Files\Andrus Development\WaterMarkSetup\Source

http://williamandrus.tripod.com/WaterMarkIt.html

Tuesday, October 02, 2007

Visual Studio 2005 Add-In: Code to HTML

Ok, this is a very cool tool and time saving add-in for visual studio 2005. Just highlight the code you want to copy to html, right click > copy to html. It does the formatting, color scheme, etc..

http://www.jtleigh.com/people/colin/software/CopySourceAsHtml/




1 class WaterMarkToolTip : ToolTip


2 {


3 public WaterMarkToolTip()


4 {


5 this.OwnerDraw = true;


6 this.Draw += new DrawToolTipEventHandler(OnDraw);


7


8 }


9


10 public WaterMarkToolTip(System.ComponentModel.IContainer Cont)


11 {


12 this.OwnerDraw = true;


13 this.Draw += new DrawToolTipEventHandler(OnDraw);


14 }


15


16 private void OnDraw(object sender, DrawToolTipEventArgs e)


17 {


18 DrawToolTipEventArgs newArgs = new DrawToolTipEventArgs(e.Graphics,


19 e.AssociatedWindow, e.AssociatedControl, e.Bounds, e.ToolTipText,


20 this.BackColor, this.ForeColor, new Font("Arial Unicode MS", 8.25f, FontStyle.Bold));


21 newArgs.DrawBackground();


22 newArgs.DrawBorder();


23 newArgs.DrawText(TextFormatFlags.TextBoxControl);


24 }


25


26


27 }