I started a blog for my cell phone. It has a qwerty keyboard and camera and I seem to often encounter mildly entertaining hilarity. The internets must know about this.
Peep justin-berke.blogspot.com.
1 month ago
A collection of the nerdiest things I happen to learn about
I created new blog called Unnecessary Modeling. For now I'm using the graph builder at GraphJam for my templates, but they're not showing up as well as they could, so I might switch over to Google Docs soon.
NOTE: I'm experiencing an error when I distribute ArcMap projects using this method. I am fairly sure this is because I have Visual Basic (Studio) 6 installed on my main development workstation, and I'm attempting to call a control from Visual Basic Studio (VB6). Calling that control without VB6 installed separately will cause the application to fail when distributed to other machines. I am currently looking for a VBA solution to this, but the code will indeed work well in VB6. - Updated 10/29/2009 |
Component/Property Command Button Command Button Text Box Text Box | Name cmdOpen cmdSaveAs txtOpen txtSaveAs |
Private Sub cmdOpen_Click()
'Show the Open dialog
CommonDialog1.ShowOpen
'Show the selected file to open
txtOpen.Text = CommonDialog1.FileName
End Sub
_____________________________________
Private Sub cmdSaveAs_Click()
'Show the Save As dialog
CommonDialog1.ShowSave
'Show the Save As filename
txtSaveAs.Text = CommonDialog1.FileName
End Sub