I have the following code:
'* Declaration Specifications *
'********************************
Dim nodcat As Node
'Node for Category
Dim nodCatCode As Node 'Node for Category Code
Dim nodCatValue As Node '######## Node for interval value '########
Dim i As Integer 'Working variable
Dim strKey As String 'Unique ID (key) for the node
Dim strPMInterval As String 'Title (name shown on tree)
Dim intPMIntervalValue As Integer '######## Value of interval ########
Dim rstPMS As New ADODB.Recordset
Dim rstINTERVALS As New ADODB.Recordset
Dim rstIntervalValues As New ADODB.Recordset '####### Create new recordset ######
The Dim nodcat as node line causes an error "compile error user defined type not defined. Other apps I have use the same code but work fine. Any thoughts?
Thanx in advance
'* Declaration Specifications *
'********************************
Dim nodcat As Node
'Node for Category
Dim nodCatCode As Node 'Node for Category Code
Dim nodCatValue As Node '######## Node for interval value '########
Dim i As Integer 'Working variable
Dim strKey As String 'Unique ID (key) for the node
Dim strPMInterval As String 'Title (name shown on tree)
Dim intPMIntervalValue As Integer '######## Value of interval ########
Dim rstPMS As New ADODB.Recordset
Dim rstINTERVALS As New ADODB.Recordset
Dim rstIntervalValues As New ADODB.Recordset '####### Create new recordset ######
The Dim nodcat as node line causes an error "compile error user defined type not defined. Other apps I have use the same code but work fine. Any thoughts?
Thanx in advance