Is it possible to dim an object as a evaluation of a string variable.

VB Code:
  1. Friend gobjSalesRecord As SageDataObject100.SalesRecord
  2.  
  3. Public Sub New(ByVal strSDODataObjectName As String)
  4.  
  5.         Dim objSDODataObject As Object
  6.  
  7.         objSDODataObject = strSDODataObjectName
  8.  
  9.         ......
  10.  
  11. End Sub

Where strSDODataObjectName = "gobjSalesRecord"

I want to convert that string name of the object to the actual Object and pass that, ie make objSDODataObject = gobjSalesRecord