S
Sherry
I have a very substantial and complex Access application that has been
developed over about 5 years. Currently we are trying to make it work in
Access 2003 with SP3. One of the problems I have encountered is a Reserve
Error 2950 pops up when a user clicks on a button that instantiates a new
form. Previous to SP3 this works perfectly.
Here is the code:
'Module level declarations
Private WithEvents m_frmSales_DetailsOrder As Form_frmSales_DetailsOrder
Private Sub m_frmSales_DetailsOrderItem_LoadOrderDetail(OrdNum As String)
Set m_frmSales_DetailsOrder = New Form_frmSales_DetailsOrder
m_frmSales_DetailsOrder.LoadOrder (OrdNum)
m_frmSales_DetailsOrder.SetFocus
End Sub
Anyone have any idea on how I can get this to work?
We can't move to SP3 until we can get this to work since this methodology is
used throughout this very extensive application.
Thanks,
developed over about 5 years. Currently we are trying to make it work in
Access 2003 with SP3. One of the problems I have encountered is a Reserve
Error 2950 pops up when a user clicks on a button that instantiates a new
form. Previous to SP3 this works perfectly.
Here is the code:
'Module level declarations
Private WithEvents m_frmSales_DetailsOrder As Form_frmSales_DetailsOrder
Private Sub m_frmSales_DetailsOrderItem_LoadOrderDetail(OrdNum As String)
Set m_frmSales_DetailsOrder = New Form_frmSales_DetailsOrder
m_frmSales_DetailsOrder.LoadOrder (OrdNum)
m_frmSales_DetailsOrder.SetFocus
End Sub
Anyone have any idea on how I can get this to work?
We can't move to SP3 until we can get this to work since this methodology is
used throughout this very extensive application.
Thanks,