<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DevX.com Forums</title>
		<link>http://forums.devx.com/</link>
		<description>DevX discussion forum for questions and answers on technical topics for developers.</description>
		<language>en</language>
		<lastBuildDate>Wed, 19 Jun 2013 09:46:27 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.devx.com/images/misc/rss.png</url>
			<title>DevX.com Forums</title>
			<link>http://forums.devx.com/</link>
		</image>
		<item>
			<title>Need sequence for this logic in oracle</title>
			<link>http://forums.devx.com/showthread.php?185267-Need-sequence-for-this-logic-in-oracle&amp;goto=newpost</link>
			<pubDate>Tue, 18 Jun 2013 06:10:15 GMT</pubDate>
			<description>Hi,

 
table

-------

 
id                    code

145623          xyz001

178956          sbh002

165895          sbi003

 
As per this logic,for  every new entity of id a new autogenerated code will be  generated.

This xyz code should be fetched using select query using id. And 001,002 is autogenerated code

ex: select b_code into table.code from cmp where c_id =145623;

 
Could you please help me..</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
 <br />
table<br />
<br />
-------<br />
<br />
 <br />
id                    code<br />
<br />
145623          xyz001<br />
<br />
178956          sbh002<br />
<br />
165895          sbi003<br />
<br />
 <br />
As per this logic,for  every new entity of id a new autogenerated code will be  generated.<br />
<br />
This xyz code should be fetched using select query using id. And 001,002 is autogenerated code<br />
<br />
ex: select b_code into table.code from cmp where c_id =145623;<br />
<br />
 <br />
Could you please help me..</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?106-Database">Database</category>
			<dc:creator>mysailesh</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185267-Need-sequence-for-this-logic-in-oracle</guid>
		</item>
		<item>
			<title>Where did the mistake happen?</title>
			<link>http://forums.devx.com/showthread.php?185265-Where-did-the-mistake-happen&amp;goto=newpost</link>
			<pubDate>Thu, 13 Jun 2013 03:08:01 GMT</pubDate>
			<description><![CDATA[Hi,I write the following code:
'MyStruct.vb
Module MyStruct
    Structure Student
        Public num As Integer
        Public name As String
        Public mark As Integer
    End Structure
   Public StuInfo() As Student New Student(-1) {}
End Module
But " Public StuInfo() As Student New Student(-1) {}" isn't passed by compiler. I don't know where is the error. Thanks a lot.]]></description>
			<content:encoded><![CDATA[<div>Hi,I write the following code:<br />
'MyStruct.vb<br />
Module MyStruct<br />
    Structure Student<br />
        Public num As Integer<br />
        Public name As String<br />
        Public mark As Integer<br />
    End Structure<br />
   Public StuInfo() As Student New Student(-1) {}<br />
End Module<br />
But &quot; Public StuInfo() As Student New Student(-1) {}&quot; isn't passed by compiler. I don't know where is the error. Thanks a lot.</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?120-.NET">.NET</category>
			<dc:creator>liangchu</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185265-Where-did-the-mistake-happen</guid>
		</item>
		<item>
			<title>WPF Binding 2 ComboBox SelectedValue to 1 ODS 2 MethodParameters</title>
			<link>http://forums.devx.com/showthread.php?185263-WPF-Binding-2-ComboBox-SelectedValue-to-1-ODS-2-MethodParameters&amp;goto=newpost</link>
			<pubDate>Tue, 11 Jun 2013 00:01:00 GMT</pubDate>
			<description><![CDATA[Hello,

I have a situation where i have 3 ObjectDataProviders the first two works, the game ObjectDataProvider (ODP) populates the cboAllGames ComboBox, when game is selected, then the GameYears uses Id from selected game, it's ODP receives the selected gameid and populate the comboBox successfully. Now the third one i can't figure out how to grab the selected game id from the cboAllGames ComboBox SelectedValue, and the selected years from the cboGameYears ComboBox Selectedvalue? So the ObjectDataProvider can retrieve data from the Object to populate the DatGrid?

1. Is Bound to cboAllGames ComboBox, need the selected Game's Id.


Code:
---------
<!-- Is Bound to cboAllGames ComboBox, need the selected Game's Id. -->
        <ObjectDataProvider x:Key="odpListGames"
            ObjectType="{x:Type lgbll:ListGame}"/>
        <!-- define the method which is invoked to obtain our data -->
        <ObjectDataProvider x:Key="AllGames"
          ObjectInstance="{StaticResource odpListGames}"
          MethodName="GetAllGames"/>
---------
2. Is Bound to cboGameYears ComboBox, need the selected years


Code:
---------
<!-- Is Bound to cboGameYears, need the selected year. -->
        <ObjectDataProvider x:Key="odpGameYears"
            ObjectType="{x:Type lglibutl:DBOperations}"/>
        <!-- define the method which is invoked to obtain our data -->
        <ObjectDataProvider x:Key="GameYears"
          ObjectInstance="{StaticResource odpGameYears}"
          MethodName="GetListHistoryYears">
            <ObjectDataProvider.MethodParameters>
                <sys:Int32>2013</sys:Int32>
            </ObjectDataProvider.MethodParameters>
        </ObjectDataProvider>
---------
3. Used to populate a gridview need the game id, and the selected year.


Code:
---------
<!-- create an instance of our DataProvider class -->
        <ObjectDataProvider x:Key="odpListNumberHistory"
            ObjectType="{x:Type lgbll:ListNumberHistory}"/>
        <!-- define the method which is invoked to obtain our data -->
        <ObjectDataProvider x:Key="AllNumberHistoryByGame"
          ObjectInstance="{StaticResource odpListNumberHistory}"
          MethodName="GetAllByGameYear">
            <ObjectDataProvider.MethodParameters>
                <sys:Int32>0</sys:Int32>
                <sys:Int32>2013</sys:Int32>
            </ObjectDataProvider.MethodParameters>
        </ObjectDataProvider>
<WrapPanel Margin="0,0,0,5">
                <TextBlock Width="100" Text="Select a Game:" HorizontalAlignment="Left"/>
                <ComboBox x:Name="cboAllGames" Width="200" HorizontalAlignment="Left" ItemsSource="{Binding Source={StaticResource ResourceKey=AllGames}}"
                  DisplayMemberPath="ToLabelDesc" SelectedValuePath="Id">
                    <ComboBox.SelectedValue>
                        <Binding Source="{StaticResource GameYears}"
                            Path="MethodParameters[0]"
                            BindsDirectlyToSource="True"
                            UpdateSourceTrigger="PropertyChanged"/>
                    </ComboBox.SelectedValue>
                </ComboBox>
            </WrapPanel>
            <WrapPanel Margin="0,0,0,5">
                <TextBlock Width="100" Text="Select Year:" HorizontalAlignment="Left"/>
                <ComboBox x:Name="cboGameYears" Width="200" HorizontalAlignment="Left" ItemsSource="{Binding Source={StaticResource ResourceKey=GameYears}}"
                  DisplayMemberPath="DisplayMember" SelectedValuePath="ValueMember">
                    <ComboBox.SelectedValue>
                        <Binding Source="{StaticResource AllNumberHistoryByGame}"
                            Path="MethodParameters[1]"
                            BindsDirectlyToSource="True"/>
                    </ComboBox.SelectedValue>
                    <ComboBox.SelectedItem>
                        <Binding Source="{StaticResource AllNumberHistoryByGame}"
                            Path="MethodParameters[0]"
                            BindsDirectlyToSource="True"
                            UpdateSourceTrigger="PropertyChanged"/>
                    </ComboBox.SelectedItem>
                </ComboBox>
            </WrapPanel>
---------
]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I have a situation where i have 3 ObjectDataProviders the first two works, the game ObjectDataProvider (ODP) populates the cboAllGames ComboBox, when game is selected, then the GameYears uses Id from selected game, it's ODP receives the selected gameid and populate the comboBox successfully. Now the third one i can't figure out how to grab the selected game id from the cboAllGames ComboBox SelectedValue, and the selected years from the cboGameYears ComboBox Selectedvalue? So the ObjectDataProvider can retrieve data from the Object to populate the DatGrid?<br />
<br />
1. Is Bound to cboAllGames ComboBox, need the selected Game's Id.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;!-- Is Bound to cboAllGames ComboBox, need the selected Game's Id. --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;ObjectDataProvider x:Key=&quot;odpListGames&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ObjectType=&quot;{x:Type lgbll:ListGame}&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- define the method which is invoked to obtain our data --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;ObjectDataProvider x:Key=&quot;AllGames&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ObjectInstance=&quot;{StaticResource odpListGames}&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MethodName=&quot;GetAllGames&quot;/&gt;</code><hr />
</div> 2. Is Bound to cboGameYears ComboBox, need the selected years<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;!-- Is Bound to cboGameYears, need the selected year. --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;ObjectDataProvider x:Key=&quot;odpGameYears&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ObjectType=&quot;{x:Type lglibutl:DBOperations}&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- define the method which is invoked to obtain our data --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;ObjectDataProvider x:Key=&quot;GameYears&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ObjectInstance=&quot;{StaticResource odpGameYears}&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MethodName=&quot;GetListHistoryYears&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ObjectDataProvider.MethodParameters&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;sys:Int32&gt;2013&lt;/sys:Int32&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ObjectDataProvider.MethodParameters&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/ObjectDataProvider&gt;</code><hr />
</div> 3. Used to populate a gridview need the game id, and the selected year.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;!-- create an instance of our DataProvider class --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;ObjectDataProvider x:Key=&quot;odpListNumberHistory&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ObjectType=&quot;{x:Type lgbll:ListNumberHistory}&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;!-- define the method which is invoked to obtain our data --&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;ObjectDataProvider x:Key=&quot;AllNumberHistoryByGame&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ObjectInstance=&quot;{StaticResource odpListNumberHistory}&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MethodName=&quot;GetAllByGameYear&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ObjectDataProvider.MethodParameters&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;sys:Int32&gt;0&lt;/sys:Int32&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;sys:Int32&gt;2013&lt;/sys:Int32&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ObjectDataProvider.MethodParameters&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/ObjectDataProvider&gt;<br />
&lt;WrapPanel Margin=&quot;0,0,0,5&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;TextBlock Width=&quot;100&quot; Text=&quot;Select a Game:&quot; HorizontalAlignment=&quot;Left&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ComboBox x:Name=&quot;cboAllGames&quot; Width=&quot;200&quot; HorizontalAlignment=&quot;Left&quot; ItemsSource=&quot;{Binding Source={StaticResource ResourceKey=AllGames}}&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DisplayMemberPath=&quot;ToLabelDesc&quot; SelectedValuePath=&quot;Id&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ComboBox.SelectedValue&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Binding Source=&quot;{StaticResource GameYears}&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Path=&quot;MethodParameters[0]&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BindsDirectlyToSource=&quot;True&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UpdateSourceTrigger=&quot;PropertyChanged&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ComboBox.SelectedValue&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ComboBox&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/WrapPanel&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;WrapPanel Margin=&quot;0,0,0,5&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;TextBlock Width=&quot;100&quot; Text=&quot;Select Year:&quot; HorizontalAlignment=&quot;Left&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ComboBox x:Name=&quot;cboGameYears&quot; Width=&quot;200&quot; HorizontalAlignment=&quot;Left&quot; ItemsSource=&quot;{Binding Source={StaticResource ResourceKey=GameYears}}&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; DisplayMemberPath=&quot;DisplayMember&quot; SelectedValuePath=&quot;ValueMember&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ComboBox.SelectedValue&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Binding Source=&quot;{StaticResource AllNumberHistoryByGame}&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Path=&quot;MethodParameters[1]&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BindsDirectlyToSource=&quot;True&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ComboBox.SelectedValue&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ComboBox.SelectedItem&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Binding Source=&quot;{StaticResource AllNumberHistoryByGame}&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Path=&quot;MethodParameters[0]&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; BindsDirectlyToSource=&quot;True&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; UpdateSourceTrigger=&quot;PropertyChanged&quot;/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ComboBox.SelectedItem&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ComboBox&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/WrapPanel&gt;</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?113-XML">XML</category>
			<dc:creator>lew26</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185263-WPF-Binding-2-ComboBox-SelectedValue-to-1-ODS-2-MethodParameters</guid>
		</item>
		<item>
			<title>Passing Arrays of Strings</title>
			<link>http://forums.devx.com/showthread.php?185257-Passing-Arrays-of-Strings&amp;goto=newpost</link>
			<pubDate>Fri, 07 Jun 2013 14:28:23 GMT</pubDate>
			<description><![CDATA[I am trying to write a function that will return the list of family members given the family name. 

I want to pass the family name as an input (char array) and I want to return two arrays of strings that will return family member “roles” and their names. For example, if I pass the argument “McCoys” it will return something like:
familyMemberRoles = {‘Dad’, ‘Mom’, ‘Son’, ‘Daughter’};
familyMemberNames = {‘John’, ‘Jane’, ‘James’, ‘Jill’};

Let’s say I will have a main function and a function ‘getFamilyMembers’. There is some data structure that the function getFamilyMembers will access to get the info for me. So something like this:

Code:
---------
void getFamilyMemberNames (const char *familyName, char ** familyMemberRoles, char ** familyMemberNames)
{
	// Get the data here to populate familyMemberRoles, and familyMemberNames
}

int main ()
{

char *familyMemberRoles[];
char *familyMemberNames[];

getFamilyMembers(“McCoys”, familyMemberRoles, familyMemberNames )

// Do something with the info received

return 0;
}
---------
Here are my questions:

1. How do I initialize the arrays familyMemberRoles and familyMemberNames in the main function if I don’t know what their size will be? For example, some family can have more than 2 children so how would I initialize this and pass it to a function? And how do I “resize” the arrays in the function getFamilyMembers?
2. Am I passing the variables familyMemberRoles, and familyMemberNames by reference correctly or do I do this differently?
3. What is the best way of checking if the family is not found and the two arrays familyMemberRoles, and familyMemberNames are NULL?


Sorry, these might be very fundamental questions but I am new to C++. I would appreciate any help!

Alisha]]></description>
			<content:encoded><![CDATA[<div>I am trying to write a function that will return the list of family members given the family name. <br />
<br />
I want to pass the family name as an input (char array) and I want to return two arrays of strings that will return family member “roles” and their names. For example, if I pass the argument “McCoys” it will return something like:<br />
familyMemberRoles = {‘Dad’, ‘Mom’, ‘Son’, ‘Daughter’};<br />
familyMemberNames = {‘John’, ‘Jane’, ‘James’, ‘Jill’};<br />
<br />
Let’s say I will have a main function and a function ‘getFamilyMembers’. There is some data structure that the function getFamilyMembers will access to get the info for me. So something like this:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">void getFamilyMemberNames (const char *familyName, char ** familyMemberRoles, char ** familyMemberNames)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; // Get the data here to populate familyMemberRoles, and familyMemberNames<br />
}<br />
<br />
int main ()<br />
{<br />
<br />
char *familyMemberRoles[];<br />
char *familyMemberNames[];<br />
<br />
getFamilyMembers(“McCoys”, familyMemberRoles, familyMemberNames )<br />
<br />
// Do something with the info received<br />
<br />
return 0;<br />
}</code><hr />
</div> Here are my questions:<br />
<ol class="decimal"><li>How do I initialize the arrays familyMemberRoles and familyMemberNames in the main function if I don’t know what their size will be? For example, some family can have more than 2 children so how would I initialize this and pass it to a function? And how do I “resize” the arrays in the function getFamilyMembers?</li>
<li>Am I passing the variables familyMemberRoles, and familyMemberNames by reference correctly or do I do this differently?</li>
<li>What is the best way of checking if the family is not found and the two arrays familyMemberRoles, and familyMemberNames are NULL?</li>
</ol><br />
Sorry, these might be very fundamental questions but I am new to C++. I would appreciate any help!<br />
<br />
Alisha</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?110-C">C++</category>
			<dc:creator>ay.a1234</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185257-Passing-Arrays-of-Strings</guid>
		</item>
		<item>
			<title>Hello Everyone</title>
			<link>http://forums.devx.com/showthread.php?185255-Hello-Everyone&amp;goto=newpost</link>
			<pubDate>Fri, 07 Jun 2013 12:25:40 GMT</pubDate>
			<description>Hi friends, i am new user in this forum and i am here to share my knowledge and views.</description>
			<content:encoded><![CDATA[<div>Hi friends, i am new user in this forum and i am here to share my knowledge and views.</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?148-The-Lounge">The Lounge</category>
			<dc:creator>jacobpitt</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185255-Hello-Everyone</guid>
		</item>
		<item>
			<title>Getting xml child name via PHP/DOM</title>
			<link>http://forums.devx.com/showthread.php?185253-Getting-xml-child-name-via-PHP-DOM&amp;goto=newpost</link>
			<pubDate>Thu, 06 Jun 2013 15:25:01 GMT</pubDate>
			<description><![CDATA[<doc>
          <y>
            <list_type>1</list_type>
            <libel> lible 1</libel>
       
          </y>
          <x>
            <list_type>6</list_type>
            <libel> lible 2</libel>
           
          </x>
          <y>
            <list_type>3</list_type>
            <libel> lible 3</libel>
     
          </y>
 </doc>

hi all,
this is an extract of my big xml file. <doc> is not the root of the document, its one of the root's childs, and also it's not the first child. the question here: 
how i can get the name of each child of the node <doc>?
how i can also get all the value of each child?

thanks]]></description>
			<content:encoded><![CDATA[<div>&lt;doc&gt;<br />
          &lt;y&gt;<br />
            &lt;list_type&gt;1&lt;/list_type&gt;<br />
            &lt;libel&gt; lible 1&lt;/libel&gt;<br />
       <br />
          &lt;/y&gt;<br />
          &lt;x&gt;<br />
            &lt;list_type&gt;6&lt;/list_type&gt;<br />
            &lt;libel&gt; lible 2&lt;/libel&gt;<br />
           <br />
          &lt;/x&gt;<br />
          &lt;y&gt;<br />
            &lt;list_type&gt;3&lt;/list_type&gt;<br />
            &lt;libel&gt; lible 3&lt;/libel&gt;<br />
     <br />
          &lt;/y&gt;<br />
 &lt;/doc&gt;<br />
<br />
hi all,<br />
this is an extract of my big xml file. &lt;doc&gt; is not the root of the document, its one of the root's childs, and also it's not the first child. the question here: <br />
how i can get the name of each child of the node &lt;doc&gt;?<br />
how i can also get all the value of each child?<br />
<br />
thanks</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?113-XML">XML</category>
			<dc:creator>joe1</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185253-Getting-xml-child-name-via-PHP-DOM</guid>
		</item>
		<item>
			<title>webrowser status help</title>
			<link>http://forums.devx.com/showthread.php?185251-webrowser-status-help&amp;goto=newpost</link>
			<pubDate>Mon, 03 Jun 2013 18:01:46 GMT</pubDate>
			<description>hi i need to know how to get webbrowser status to textbox1 thanks in advanced:)
i need tutorial or some source codesource code (http://yah-underworld.com) please  thank you.</description>
			<content:encoded><![CDATA[<div>hi i need to know how to get webbrowser status to textbox1 thanks in advanced:)<br />
i need tutorial or some source code<a rel="nofollow" href="http://yah-underworld.com" target="_blank"><font color="#FAEBD7">source code</font></a> please  thank you.</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?120-.NET">.NET</category>
			<dc:creator>hanna21</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185251-webrowser-status-help</guid>
		</item>
		<item>
			<title>How many test form is open ?</title>
			<link>http://forums.devx.com/showthread.php?185249-How-many-test-form-is-open&amp;goto=newpost</link>
			<pubDate>Fri, 31 May 2013 02:43:32 GMT</pubDate>
			<description>I suppose there are many programs of the form, I can determine how much the order form is opened and the name of the form is not open? Who can share me with example, thanks</description>
			<content:encoded><![CDATA[<div>I suppose there are many programs of the form, I can determine how much the order form is opened and the name of the form is not open? Who can share me with example, thanks</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?105-VB-Classic">VB Classic</category>
			<dc:creator>dong</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185249-How-many-test-form-is-open</guid>
		</item>
		<item>
			<title>Visual Basic</title>
			<link>http://forums.devx.com/showthread.php?185247-Visual-Basic&amp;goto=newpost</link>
			<pubDate>Thu, 23 May 2013 00:42:50 GMT</pubDate>
			<description><![CDATA[I need someone's help, I created a work book in Excel, I have two tabs Inventory control and count sheet. I want to link some information on the Inventory control sheet to the count sheet. How would I do that using VB.]]></description>
			<content:encoded><![CDATA[<div>I need someone's help, I created a work book in Excel, I have two tabs Inventory control and count sheet. I want to link some information on the Inventory control sheet to the count sheet. How would I do that using VB.</div>

 ]]></content:encoded>
			<category domain="http://forums.devx.com/forumdisplay.php?105-VB-Classic">VB Classic</category>
			<dc:creator>jdean1081</dc:creator>
			<guid isPermaLink="true">http://forums.devx.com/showthread.php?185247-Visual-Basic</guid>
		</item>
	</channel>
</rss>
