Board Gaming

Games we own. These are all available for game night with the North Tahoe Tabletop Board Game Meetup group....

Art Projects

I have worked on various art projects over the years. This is a collection of some of those projects....

Programming Projects

I have worked on various personal and professional computer programming projects over the years. This is a collection of...
Sculpture and Art

Ball Lift for RBS

I’m building a new RBS. The first thing I am working on is a new design for an atypical lift mechanism. I want to lift the ball on the end of a lever, but not use a gate mechanism to pick up the ball. This lift mechanism will…

Continue reading
Computers & Programming

Visual Bug in ScrollViewer XAML

The Windows Store ScrollViewer XAML has a bug. It causes a visual error on the screen when the ScrollViewer has no scroll bars. I discovered this because I have a main page in my app that uses the Visual Studio provided framework for a tiled app. The main…

Continue reading
Computers & Programming

Move WinRT Popup When OSK Appears

I have a Windows Store app written in C# that has some popups. These are Popup objects that work like modal dialog boxes. Mine are displayed as a band across the middle of the screen. The standard built-in on-screen keyboard (OSK) handling does not alter the position of…

Continue reading
Computers & Programming

OnNavigatedTo Too Soon To Add Grid Children

In the process of porting my Windows Phone code to Windows 8 (Store App), I came across this interesting problem. FrameworkElement FieldView = Field.getView( true ); ContentPanel.Children.Add( FieldView ); Panel theParent = VisualTreeHelper.GetParent(FieldView) as Panel; FrameworkElement theotherparent = (FrameworkElement)FieldView.Parent; When I call this code in the OnNavigatedTo event…

Continue reading
Computers & Programming

Alpha Color Mixer

I just finished writing a small Windows Store app. It is a color mixing program that stands out because it includes an Alpha channel control. I downloaded someone else’s color mixer and was sadly disappointed. Their user interface had multiple preview boxes, and changing a setting in one…

Continue reading