Hey, folks. Unexpectedly, I find myself in the middle of two very different programming jobs.
Urban Interface Fire Hazard Assessment
I have a small-ish contract (wish they'd pay my two month's owing!!) to do an urban interface fire hazard assessment. I've done the interface walk around the community, assessing all the houses with potential to be affected by a runaway wildfire. And now I am deep into some Visual Basic programming for the code behind an Access database to hold all that data.
The actual database itself, the bit that holds the data, is ready, has been so for ages. But it's the human interface bits, the GUI, that requires the most thought and research. And so I find myself digging around inside "Access Hacks", an excellent reference book, btw, for morsels of code that will give my app just that extra bit of zing my clients are looking for. Here's a small clip of the *pages and pages* of code I'm fiddling with:
Private Sub CommentPg4_Enter()
Dim text_length As Integer
text_length = Len(Me.CommentPg4)
Me.CommentPg4.SelStart = text_length
End Sub
Private Sub Ctl08ChimneyBranchesOver_Enter()
active_control_enter
End Sub
Well, it actually IS fun, in a twisted kinda way, to get this code right.
CSS Home & Professional Website
I'm also working on trying to set up our very own home & professional website, using 1 primary and a couple secondary CSS templates. It's actually much easier than I remembered it to be... working from an existing template makes text edits and colour changes that much simpler. Here's a snippet of the code I'm using for the "global.css" template. I've got quite a few mods to make several specialty css templates for special pages...
#MenuHold {
float: right;
overflow: auto;
width: 220px;
}
I've discovered I really *really* like CSS. Why didn't I discover it earlier?
de nada. I am discovering it now, and having a lot of fun playing with it. When I am ready to upload it all, I'll drop the URL here.
All for now, folks. Thanks for stopping by.
Russ