Problem Solved!!
I set up a Temporary Table that holds the "Value" that I want the DEFAULT VALUE to be set too (see code below):Private Sub Command68_Click()
' Define Variables
Dim stTemp As String
Dim TempTable As String
Dim TempField As String
Dim dbs As DAO.Database
Dim rsVideos As DAO.Recordset
' Set Temporary Variable Names
TempTable = "Temp_TBL"
TempField = "TempField"
' Delete Current Temporary Table
DoCmd.DeleteObject acTable, TempTable
' Create New Temporary Table
Set dbs = CurrentDb
Set tbl = dbs.CreateTableDef(TempTable)
Set fld = tbl.CreateField(TempField, dbText, 255)
tbl.Fields.Append fld
dbs.TableDefs.Append tbl
dbs.TableDefs.Refresh
' Set Field Value
Set dbs = CurrentDb
Set rsVideos = dbs.OpenRecordset(TempTable)
rsVideos.AddNew
rsVideos(TempField).Value = "Test Component 4"
rsVideos.Update
' Open Form for Test Component 4 Only
DoCmd.OpenForm "3_TEST_FRM", , , "Component_Name = 'Test Component 4'"
End Sub
I then used DLOOKUP in the DEFAULT VALUE field to pull the information. It may not be the most elegant solution, but it does work.
Thank you for all of the help!
swicklund