Saturday, May 2, 2009

Word Finder - Silverlight Application

I just added a BLOG to the Word Finder Application.

I'll be upload posting questions I receive from developers and users.

The first Question I answered was, "How to create a timer"

If you want to see how I solved this problem using silver,
please visit http://www.streamlinetech.net/worldclocks.web and click on the "BLOG" link.

Jason Barahona Web Site

The Jason Barahona Web is coming along.

We just uploaded 60+ new images; Jason Barahona was a photographer at a fashion show. There are many great pictures to look at.

www.jasonbarahona.com
Look for the link "People" then at the bottom, look for "The Fashion Show"

Look forward to your comments

Thursday, April 9, 2009

Silverlight Entry - Word Finder

Today I submitted by first silverlight application to the SilverLight.net web site.

This site has a Showcase portal where SilverLight application are present...

I wonder if my application will be accepted?

Jason Barahona - Photographer from Ecuador

I just started building the jasonBarahona.com web site. This web site will expose the photographs taken by Jason Barahona.

Jason is an amazing photographer. Today, 9th of April 2009, he is heading into the jungle in Ecuador to take pictures of some native people. He will live there for four days and take pictures of everything.

Make sure you visit his web site after the 19th of April.

Tuesday, April 7, 2009

SilverLight Demo - Word Finder Game

With all the buzz about SilverLight, I decided to write my first app.

Translator Word Finder

The goal of this game is to find words.

You have to know the translations between the two languages (english and spanish). Great way to learn a second language. I'll be adding a few more sections to test your knowledge.

If you have some "english-to-spanish" words list; please send them to me. If they are appropriate, it will add them to the game.



Check out my first attempt:
http://www.streamlinetech.net/worldclocks.web/

Monday, March 23, 2009

LINQ ... first look

Problem: array of integers, select values less then 30, sort descending

Solution:
Compile for .Net 3.5


// Make sure you include
using System.Linq;



// declare array of integers and populate
int[] nums = { 17, 31, 10, 11, 7, 39, 41, 3 };


// use LINQ to build results
var lowNums = (from n in nums
where n < 30
orderby n descending
select n);

Tuesday, February 24, 2009

Visual Studios 2008 - DataGridView Center Heading

Problem: Want to center the text in the header of a DataGridView.

Answer:

this.dataGridView1.ColumnHeadersDefaultCellStyle.Alignment =
DataGridViewContentAlignment.BottomCenter;

Visual Studios 2008 - DataGridView Column Width

Problem: How to set the column width of a DataGridView in C#

Answer:

Say you want to change the third column's width to 80

int index = 3;
this.dataGridView1.Columns[index].Width = 80;

Tuesday, January 20, 2009

Excel - Turn off AutoCalculation with VBA Code

Public Function TurnOffAutoCalc()
Application.Calculation = xlManual
End Function

Public Function TurnOnAutoCalc()
Application.Calculation = xlAutomatic
End Function