We are converting an Access based App to .Net with little or no VB knowledge . The following is an access connection string we use extensively to link to forms based on a field value on main form. Can anybody kindly provide the equivalent. I presume you use response.redirect but am unsure of syntax ...TIA Silvertri
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmCtlMainRequestAssistance"
stLinkCriteria = "[IncidentName]=" & Me![IncidentName]
DoCmd.OpenForm stDocName, , , stLinkCriteria
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmCtlMainRequestAssistance"
stLinkCriteria = "[IncidentName]=" & Me![IncidentName]
DoCmd.OpenForm stDocName, , , stLinkCriteria