Hi Brian,
if I understand your description correctly, the call structure looks like this 
(you left out the parameters, but they're essential!):

Sub GetItemDetails(byVal strList)
...
x = AssembleList()
...
end sub

Function AssembleList()
...
If ChkLocalItem(strItem) = "False" then
...
end if
end function

Function ChkLocalItem(ByVal strItem)
...
end function

correct so far? So the question is, where is "strItem" defined inside the 
function AssembleList ? Does it have a value? 
Kind regards
Thomas

Am 06.07.2011 um 16:23PM schrieb bburgess66:

> I a calling a FUNCTION called 'ChkLocalItem(ByVal strItem)', like:
> If ChkLocalItem(strItem) = "False" Then
> ..
> End If
> 
> Inside of another FUNCTION called 'AssembleList()', which is in turn itself 
> called by a SUB called 'GetItemDetails(ByVal strList)'.
> 
> Got it so far?
> GetItemDetails
> AssembleList
> ChkLocalItem
> 
> The call to 'ChkLocalItem' always fails with:
> "Type Mismatch: '[Undefined]'"
> 
> Thx much in advance for any advice
> 
> -Brian 
> 
> 

-- 
You received this message because you are subscribed to the Google Groups 
"nsb-ce" group.
To post to this group, send email to nsb...@googlegroups.com.
To unsubscribe from this group, send email to 
nsb-ce+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/nsb-ce?hl=en.

Reply via email to