<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Checkboxes to turn on/off tabs in ArcPad Questions</title>
    <link>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651526#M4673</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Wonderful, I was on the right track with what I was doing.&amp;nbsp; Thank you so much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jan 2011 12:59:54 GMT</pubDate>
    <dc:creator>AmenAbdou</dc:creator>
    <dc:date>2011-01-25T12:59:54Z</dc:date>
    <item>
      <title>Checkboxes to turn on/off tabs</title>
      <link>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651521#M4668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey everyone,&amp;nbsp; I am creating an ArcPad mobile application to collect information on catch basins.&amp;nbsp; The city engineer informed me that he also wants to collect the pipe directions connected to the catch basins.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My idea is, instead of having one tab for each of the cardinal and intermediary directions, to have eight checkboxes listing the directions (N, S, E, W, NE, NW, SE, SW) and the user picks which directions the pipes are traveling then the application only loads those tabs to enter the pipe information.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone created or come across a script to do this or does anyone have any ideas on how to do this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jan 2011 12:52:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651521#M4668</guid>
      <dc:creator>AmenAbdou</dc:creator>
      <dc:date>2011-01-18T12:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Checkboxes to turn on/off tabs</title>
      <link>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651522#M4669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Outside of using an extension, there currently isn't any way to selectively load tabs like you're saying. You could however disable the controls on those tabs, but then you're still stuck with having to go through all 8 tabs. You might try something weird like altering the .Caption for each page after the checkboxes are clicked so that some page tabs appear small and blank, while the ones you want the users to fill out (ie-thier checkbox was checked) have names such as "SW Page", etc that would indicate that they are "active" pages. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The other thing you could do is disable page tabs altogether, and have some buttons that switch to/from pages become enabled as they check the checkboxes. This is probably the only way to have the functionality you describe, and wouldn't be all that difficult since the appropriate methods are available. (page object -&amp;gt; Activate)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jan 2011 16:19:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651522#M4669</guid>
      <dc:creator>EricHajek1</dc:creator>
      <dc:date>2011-01-18T16:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: Checkboxes to turn on/off tabs</title>
      <link>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651523#M4670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If all the tabs will contain the same controls I would put all the controls on one page and have a script that sets the controls that belongs to a certain direction visible and the other to not visible. The same control will change the page caption to indicate the cardinal direction.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ex. at the top of your form you have 8 radiobuttons that are always visible indicating the directions and the on_click script for each of these radiobuttons will run another script that will make the correct controls visible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rolf&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jan 2011 10:46:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651523#M4670</guid>
      <dc:creator>RolfBroch</dc:creator>
      <dc:date>2011-01-20T10:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Checkboxes to turn on/off tabs</title>
      <link>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651524#M4671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;If all the tabs will contain the same controls I would put all the controls on one page and have a script that sets the controls that belongs to a certain direction visible and the other to not visible. The same control will change the page caption to indicate the cardinal direction.&lt;BR /&gt;&lt;BR /&gt;Ex. at the top of your form you have 8 radiobuttons that are always visible indicating the directions and the on_click script for each of these radiobuttons will run another script that will make the correct controls visible.&lt;BR /&gt;&lt;BR /&gt;Rolf&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thats a great idea Rolf, I have been trying to impliment that, but I cannot seem to get the onclick funtion right.&amp;nbsp; If I am understanding your idea correctly, the onclick function should change where the input fields are pointing to in the database.&amp;nbsp; Aside from not writing the script correctly, my concern with this is, how do I tell it to write the information to the database.&amp;nbsp; I was thinking if I only used the onclick to remap the fields that the data would be erased without updating the database once they went to input the information on a different pipe.&amp;nbsp; Would that be done on the onkillfocus function?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I attached a SS of what that page of the form looks like at the moment.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2011 13:59:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651524#M4671</guid>
      <dc:creator>AmenAbdou</dc:creator>
      <dc:date>2011-01-24T13:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Checkboxes to turn on/off tabs</title>
      <link>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651525#M4672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, if your editform looks something like this (I only did 4 of your cardinal directions)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;EDITFORM name="CatchBasin" caption="CatchBasin" width="130" height="130" attributespagevisible="false" picturepagevisible="true" symbologypagevisible="true" geographypagevisible="true" required="false"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;PAGE name="page1" caption="Page 1"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;RADIOBUTTON name="rbtN" y="2" width="25" height="12" onclick="Call rbt_OnClick" caption="N" tooltip="" tabstop="true" border="false" value="" field="" alignment="left"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;RADIOBUTTON name="rbtE" x="30" y="2" width="25" height="12" onclick="Call rbt_OnClick" caption="E" tooltip="" tabstop="true" border="false" value="" field="" alignment="left"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;RADIOBUTTON name="rbtS" x="60" y="2" width="25" height="12" onclick="Call rbt_OnClick" caption="S" tooltip="" tabstop="true" border="false" value="" field="" alignment="left"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;RADIOBUTTON name="rbtW" x="90" y="2" width="25" height="12" onclick="Call rbt_OnClick" caption="W" tooltip="" tabstop="true" border="false" value="" field="" alignment="left"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LABEL name="lbl_SizeN" x="2" y="43" width="60" height="12" caption="N_Size" tooltip="" border="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;EDIT name="txt_SizeN" x="64" y="42" width="60" height="12" defaultvalue="" tooltip="" tabstop="true" border="true" field="N_SIZE"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LABEL name="lbl_SizeE" x="2" y="43" width="60" height="12" caption="E_Size" tooltip="" border="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;EDIT name="txt_SizeE" x="64" y="42" width="60" height="12" defaultvalue="" tooltip="" tabstop="true" border="true" field="E_SIZE"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LABEL name="lbl_SizeS" x="2" y="43" width="60" height="12" caption="S_Size" tooltip="" border="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;EDIT name="txt_SizeS" x="64" y="42" width="60" height="12" defaultvalue="" tooltip="" tabstop="true" border="true" field="S_SIZE"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LABEL name="lbl_SizeW" x="2" y="43" width="60" height="12" caption="W_Size" tooltip="" border="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;EDIT name="txt_SizeW" x="64" y="42" width="60" height="12" defaultvalue="" tooltip="" tabstop="true" border="true" field="W_SIZE"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LABEL name="lbl_InvertN" x="2" y="63" width="60" height="12" caption="N_Invert" tooltip="" border="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;EDIT name="txt_InvertN" x="64" y="62" width="60" height="12" defaultvalue="" tooltip="" tabstop="true" border="true" field="N_INVERT"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LABEL name="lbl_InvertE" x="2" y="63" width="60" height="12" caption="E_Invert" tooltip="" border="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;EDIT name="txt_InvertE" x="64" y="62" width="60" height="12" defaultvalue="" tooltip="" tabstop="true" border="true" field="E_INVERT"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LABEL name="lbl_InvertS" x="2" y="63" width="60" height="12" caption="S_Invert" tooltip="" border="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;EDIT name="txt_InvertS" x="64" y="62" width="60" height="12" defaultvalue="" tooltip="" tabstop="true" border="true" field="S_INVERT"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;LABEL name="lbl_InvertW" x="2" y="63" width="60" height="12" caption="W_Invert" tooltip="" border="false"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;EDIT name="txt_InvertW" x="64" y="62" width="60" height="12" defaultvalue="" tooltip="" tabstop="true" border="true" field="W_INVERT"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/PAGE&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/EDITFORM&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and the script you run when clicking a button looks like this&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sub rbt_OnClick()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim rbt&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set rbt = ThisEvent.Object&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim pControl&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; For each pControl in rbt.Parent.Controls&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; If pControl.Type = "LABEL" Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; If Right(pControl.Name, 1) = Right(rbt.Name, 1) Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pControl.Visible = True&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Else&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pControl.Visible = False&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; ElseIF pControl.Type = "EDIT" Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; If Right(pControl.Name, 1) = Right(rbt.Name, 1) Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pControl.Visible = True&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Else&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pControl.Visible = False&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Next&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set pControl = Nothing&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End Sub&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then all you need to do is to click the correct radiobutton, fill in the values (and it will be saved to the correct attribute since the control is already tied to the correct field), click the next radiobutton, fill in etc..&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When you are finished, click ok in the editform and all you information will be saved to the correct attributes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS. I have not tested the code so there might be some errors in it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rolf&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 07:23:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651525#M4672</guid>
      <dc:creator>RolfBroch</dc:creator>
      <dc:date>2011-01-25T07:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Checkboxes to turn on/off tabs</title>
      <link>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651526#M4673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Wonderful, I was on the right track with what I was doing.&amp;nbsp; Thank you so much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 12:59:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651526#M4673</guid>
      <dc:creator>AmenAbdou</dc:creator>
      <dc:date>2011-01-25T12:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Checkboxes to turn on/off tabs</title>
      <link>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651527#M4674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So I implimented the code and it worked like a charm, but I changed the code just a little to shorten it up.&amp;nbsp; I also applied it to the intermediate directions as well so I changed the right command to 2 rather than one.&amp;nbsp; I just had to make sure I went back to the radiobuttons and rename the cardinal directions rbtNO, rbtSO, rbtEA, rbtWE to match up with the control names.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sub rbt_OnClick()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim rbt&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set rbt = ThisEvent.Object&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pControl&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For Each pControl in rbt.Parent.Controls&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; If pControl.Type = "LABEL" Or pControl.Type = "EDIT" Or pControl.Type = "DOMAINFIELD" Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; If Right(pControl.Name, 2) = Right(rbt.Name, 2) Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; pControl.Visible = True&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; Else&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; pControl.Visible = False&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pControl = Nothing&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End Sub&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for all the help, my survey crew loves the new form design.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jan 2011 17:13:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/checkboxes-to-turn-on-off-tabs/m-p/651527#M4674</guid>
      <dc:creator>AmenAbdou</dc:creator>
      <dc:date>2011-01-25T17:13:46Z</dc:date>
    </item>
  </channel>
</rss>

