I searche the internet but could not find a solution to my problem: I am passing a set of parameters to a Sub where some of them are optional, i.e. I am leaving the position blank. In order to make the code readable and to know later on what I have left out I would like to state a comment there. I just could not find out any means on how to do that.
Here is an example:
MyBase.New( _
pLfAIDLief, _
pLfABezeichnung, _
pLfAEkNtto, _
pLfAMngEinhID, _
pBestellEinheit, _
, _ ' PackEinheit
pBarcode, _
, _
pLfAAvailable _
)
The parameter PackEinheit is optional and is left blank but later on I would like to know that there was this particular parameter left out. The sytax I used creates an error, no matter whether i place the comment left or right of the line continuation underscore.
Any ideas?