Advertisement
Advertisement
| 08.14.2008 at 09:00AM PDT, ID: 23648601 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: |
' HERE IS THE XML DATA
<?xml version="1.0" ?>
- <docuvault_settings>
- <role_list>
- <role obj_name="Logistics">
<role_type>master_role</role_type>
- <members>
<user domain_name="GFSPROD" account_name="aclippert" permission="000F" />
<user domain_name="GFSPROD" account_name="afarner" permission="000F" />
<user domain_name="GFSPROD" account_name="akincaid" permission="000F" />
<user domain_name="GFSPROD" account_name="akruitho" permission="000F" />
<user domain_name="GFSPROD" account_name="arossow" permission="000F" />
<user domain_name="GFSPROD" account_name="awhitmor" permission="000F" />
' HERE IS THE CODE I AM WORKING ON THATS NOT WORKING.
Dim m_xmld As XmlDocument
Dim m_nodelist As XmlNodeList
Dim m_node As XmlNode
Dim Name As String
Dim Permission As String
m_xmld = New XmlDocument()
m_xmld.Load("C:\Share\GR_Prd_DV1_roles.xml")
m_nodelist = m_xmld.SelectNodes("docuvault_settings/role_list/role")
For Each m_node In m_nodelist
Dim RoleNode As XmlNode = m_node.SelectSingleNode("members/user[@account_name='" & Role_Search_Value_1.Text & "']")
If RoleNode IsNot Nothing Then
Name = m_node.Attributes.GetNamedItem("obj_name").Value
Permission = m_node.Attributes.GetNamedItem("permission").Value
|