Interesting programming ideas, solutions, and logic that I have used to solve problems or have come across throughout my career.
About Me
- William Andrus
- 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).
Monday, October 15, 2007
HL7 Schema Generation Tool
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
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
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 }