Well, I've got this object based on clsAttachment. This class reads from the Attachments table in the database and tracks the links to the files stored on the server. One of the data fields is IsMissing. If the database says the file is there, but it's really not, IsMissing needs to be set to TRUE.
So I created a method called SetAsMissing().
Here's the calling code:
[tt]
Dim oAttachment As New clsAttachment(ID)
[/tt]
This populates the object so everything is there (LinkName, ID, Title, etc). It seems really dumb to add parameters to SetAsMissing(ID As Integer) when I already have the ID. How can I write it as
[tt] oAttachment.SetAsMissing[/tt]
and not
[tt] oAttachment.SetAsMissing(ID)[/tt] ?
Thanks.
So I created a method called SetAsMissing().
Here's the calling code:
[tt]
Dim oAttachment As New clsAttachment(ID)
[/tt]
This populates the object so everything is there (LinkName, ID, Title, etc). It seems really dumb to add parameters to SetAsMissing(ID As Integer) when I already have the ID. How can I write it as
[tt] oAttachment.SetAsMissing[/tt]
and not
[tt] oAttachment.SetAsMissing(ID)[/tt] ?
Thanks.