P
paul.schrum
Access 2002
Can someone help me fix this problem?
In a form module I have a
Private Sub addReplacementKey(key_chain_id As Long, unique_id As Long)
The compiler does not seem to realize that the sub has two parameters.
When I call the sub (from code behind a button) as
addReplacementKey (key_chain_id, unique_id)
the compiler colors it red. When I call the function as
addReplacementKey (key_chain_id)
it compiles okay. Not only do I not understand why it is doing this,
but, more importantly, what should I do about it?
- Paul Schrum
Can someone help me fix this problem?
In a form module I have a
Private Sub addReplacementKey(key_chain_id As Long, unique_id As Long)
The compiler does not seem to realize that the sub has two parameters.
When I call the sub (from code behind a button) as
addReplacementKey (key_chain_id, unique_id)
the compiler colors it red. When I call the function as
addReplacementKey (key_chain_id)
it compiles okay. Not only do I not understand why it is doing this,
but, more importantly, what should I do about it?
- Paul Schrum