Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Read/write MP3 tags
#8
Type t.xxx and look in status bar. (if xxx is a function).

For example, for Artist it is "BSTR Artist() . Property". This function does not have arguments. BSTR is the type of the value that the function returns. The property is not readonly so I can get and set the property.

str s
s=t.Artist ;;get
out s
t.Artist="an artist" ;;set


Another example. "Link(BSTR&FileName)". The function does not return a value but has 1 argument. It must be a BSTR variable.
BSTR b
b="bbbbbb"
t.Link(b)


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)