hexagon logo

Excel VBA .add BASIC_SCRIPT modifiers

Hello

I am trying to use excel vba to add a script to the end of all the programs in a directory. I am stuck on the DmisCommands.Add(BASIC_SCRIPT, True).

Is there a modifier to specify the function/ and a modifier to add ARGs? And if possible where can I look up this information?

Set DmisCommand = DmisCommands.Add(BASIC_SCRIPT, True)
DmisCommand.Marked = True
DmisCommand.ID = "CS998"
retval = DmisCommand.PutText("C:\PC-DMIS\MKDIR.BAS", FILE_NAME, 1)
Parents
  • Hmm. Interesting. However, it doesn't seem to work when I import the cls file from the VBA editor. Am I doing something wrong? I want to add a custom collection class that will be a wrapper of the built-in collection class. I understand that if you do not attach attribute modifiers, the Item property will not be the default property, and you will lose the ability For Each/Next in the collection. I started to deal with this when I started to read more one of the interesting sources of information related to this.
Reply
  • Hmm. Interesting. However, it doesn't seem to work when I import the cls file from the VBA editor. Am I doing something wrong? I want to add a custom collection class that will be a wrapper of the built-in collection class. I understand that if you do not attach attribute modifiers, the Item property will not be the default property, and you will lose the ability For Each/Next in the collection. I started to deal with this when I started to read more one of the interesting sources of information related to this.
Children
No Data