[AccessD] Open Multiple Instances of a Form and passing a parameter

Kenneth Ismert kismert at gmail.com
Tue Aug 7 10:53:50 CDT 2012


>
> Rocky Smolin
> I parse multiple arguments in a single string using the Split statement -
> works a treat.
>

Until:
* One of your arguments contains the delimiter character, then your split
is off
  - Solution: write code to quote the delimiter in your arguments. Write
your own custom split
* You have to pass Nulls
  - Solution: parse your argument, write 'Null' if null, and the proper
type-formatted string if not.
* You need unordered arguments, or you have to add, remove, and update
argument values
  - Solution: write code to store arguments in Name=Value pairs, write
parsing code to restore values

I have written all of that code, and my conclusion is it is JUST BETTER to
pass the typed arguments directly into the form.


More information about the AccessD mailing list