Sure. Just "Find" to the item and read the properties you
need into your vb form.

Connect to the folder and use the .Find method to return the item.
Something like...
Code:
'INITIALIZE OUTLOOK CONNECTION
Set oApp = New Outlook.Application
Set oNS = oApp.GetNamespace("MAPI")
Set oTaskBox = oNS.GetDefaultFolder(olFolderTasks)
Set oItems = oTaskBox.Items
    
oItems.Find = "[Subject] = 'Test'"

txtSubject = oItems.Subject
txtCreatedDate = oItems.CreatedDate