streamer duck..... (i know it says steamer, let me have this)

#interview with the vampire#iwtv#amc tvl#sam reid#jacob anderson




seen from United States

seen from Australia

seen from Malaysia
seen from China

seen from Malaysia
seen from United States
seen from United States
seen from United States
seen from Switzerland

seen from Netherlands

seen from United States
seen from China
seen from United States

seen from Malaysia

seen from Sweden
seen from Germany
seen from Germany

seen from Malaysia
seen from China
seen from Australia
streamer duck..... (i know it says steamer, let me have this)
primary colors
i like this palette too, esp w the vine prompt
oh hot
love the autumny colors
cgrid.stillerstudios.com
Been working on some stuff in the studio for some time.
cGrid.drawGrid() - Version 1
To begin my Visual Basics Final Project I started working on a custom control for the entire drawing grid. The most important part of the drawing grid was the grid itself. I decided that the user should be able to decide how many grid dots should be place on the grid itself. The grid should also be resizable.
The following code snippet is my rough draft of .drawGrid function:
The .drawGrid function accepts the desired width _w, height _h, number of horizontal grid dots _hNodes, and number of vertical grid dots _vNodes. The function utilizes a single group of nested loops to populate the grid with these nodes. The results of my .drawGrid function is shown below:
This is just Version 1 of my .drawGrid function but already I see a hanful of problems and know that it needs some more functionality. Just for quick reference here is the short list:
Grid dots need to reach the left and right side as well as the top and bottom function.
I want grid dots to represent data objects, I just haven't developed them yet!
I don't like using _h for height and _hNodes for horizontal, this is a bad naming convention and I'll have to revise it next time I edit this function.