Book a Demo

Author Topic: Access/Modify the list of status  (Read 3809 times)

SebastianB

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Access/Modify the list of status
« on: April 09, 2007, 06:05:31 am »
Hi everyone, I've got a couple of questions:

1. Is there a way to access and modify (through visual basic  6 code) the list of status of the repository?? (the one you access through the menu Configuration/General Types/Status Types)

2. The same as the previous question but with the list of types of requirements.

I need to be able to update those lists through my add-in, that i'm programming in vb 6.

Thanks in advance!!

jkorman

  • EA User
  • **
  • Posts: 99
  • Karma: +0/-0
    • View Profile
Re: Access/Modify the list of status
« Reply #1 on: April 09, 2007, 12:28:48 pm »
repository.GetReferenceList("Status");

See Help - Automation and Scripting|...|Repository|Reference

There is a list of the lists that can be returned.

As far as I can tell, you can only get the names, not the descriptions  :(

Jim

SebastianB

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Re: Access/Modify the list of status
« Reply #2 on: April 10, 2007, 04:46:39 am »
thanks Jim!

now... is there a way to add members to this list??
the properties on the type Reference are just:
count
getAt
getLastError
ObjectType
Refresh
Type

i'm getting the feeling that i cannot add or modify items on the list...
is it possible??

SebastianB

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Re: Access/Modify the list of status
« Reply #3 on: April 12, 2007, 06:14:58 am »
is it possible?