32914560-9e45-4450-b0f7-383a3497c823|0|.0
0cabe9ba-6ef5-41e9-b66d-49eda90d0090|0|.0
dbfc7c2d-4d0f-4278-a397-6f132a956408|0|.0
This was my first video. A little sloppy.
By Chris Hayes, Sept 28, 2009
Here it is. The first video! And I hope to keep them coming. This was an exciting
first step for this project. Comments are always welcome. Suggestions for video topics
are also welcome. Hope you enjoy.
a3a0e213-af35-4e8c-a5c4-66fe6141c491|0|.0
I created this video for work but it contained some real basic database development strategy that I thought would be helpful.
e6e8afe9-65a8-4131-9fa2-9e1dcd31a9b3|0|.0
Private Sub cmdFileDialog_Click()
' Requires reference to Microsoft Office 11.0 Object Library.
Dim fDialog As Office.FileDialog
Dim varFile As Variant
' Clear listbox contents.
Me.FileList.RowSource = ""
' Set up the File Dialog.
Set fDialog = Application.FileDialog(msoFileDialogFilePicker)
With fDialog
' Allow user to make multiple selections in dialog box
.AllowMultiSelect = True
' Set the title of the dialog box.
.Title = "Please select one or more files"
' Clear out the current filters, and add our own.
.Filters.Clear
.Filters.Add "Access Databases", "*.MDB"
.Filters.Add "Access Projects", "*.ADP"
.Filters.Add "All Files", "*.*"
' Show the dialog box. If the .Show method returns True, the
' user picked at least one file. If the .Show method returns
' False, the user clicked Cancel.
If .Show = True Then
'Loop through each file selected and add it to our list box.
For Each varFile In .SelectedItems
Me.FileList.AddItem varFile
Next
Else
MsgBox "You clicked Cancel in the file dialog box."
End If
End With
End Sub
810c97d4-676c-4ed4-af67-fc7408cebc1e|0|.0
8ddb1608-df60-48f6-91ed-1c259187b5b7|0|.0
I was intending to upgrade my blog tools with the new Blogengine.net 1.6.1 but any hope of connecting to the old database and retaining any sanity is all but gone. I've decided to start over. I'll try to repost some of my code but really just for personal use. I really don't think anyone reads this but it boosts my ego to have it. My main purpose for having this blog up is for potential employers and clients. If that is you, I encourage you to browse.
b427eda9-9770-4f30-b91b-48404cc2005a|0|.0