<?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: using Arcpad Studio to create form for Arcpad in ArcPad Questions</title>
    <link>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524812#M3800</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi All&lt;BR /&gt;&lt;BR /&gt;I'm new to this and I think I've had enough of it.&amp;nbsp; I have created a combo box using a dbf as a list source, no problems.&amp;nbsp; Wanted to create a second combo box with a Select Case option that will change the shown variables depending on the first combo box.&amp;nbsp; I figured out how to do this in arcmap with vba but I can't figure out which objects' event tab to use in studio.&amp;nbsp; Or should I just use the form event tab to call up a vba but I'm not sure how to do that either.&lt;BR /&gt;&lt;BR /&gt;I'm confused, help please&lt;BR /&gt;&lt;BR /&gt;Rebecca&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When a selection is made in the first combo box, you know its ListIndex value. Perhaps you can use this value to add items to the second combobox when the "On Selection Change" event of the first box is triggered? e.g. if the 3rd value in list 1 is selected, set the source of the list 2 to the third field/column in a particular dfb?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sub cboListOne_OnSelectionChange(ThisEventObject)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'ThisEventObject refers to the first combobox cboListOne&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim myIndex&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Assuming a table with values listed in columns, column headers are Option1, Option2 etc&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; myIndex = "Option" &amp;amp; ThisEventObject.ListIndex &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Dimension the form, page and 2nd combobox control&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim objMainPage, objEditForm, objComboControl&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set objForm = Layer.Forms("EDITFORM")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set objPage = objEditForm.Pages("[Page Name]")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set objComboControl = objPage.Controls("[cboListTwo]")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Clear any existing values in cboListTwo &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; objComboControl.Clear&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Populate the 2nd combobox&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; objComboControl.AddItemsFromTable [path to table with values.dbf],myIndex,myIndex&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End Sub&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 May 2010 13:53:34 GMT</pubDate>
    <dc:creator>Almarde_Ronde</dc:creator>
    <dc:date>2010-05-12T13:53:34Z</dc:date>
    <item>
      <title>using Arcpad Studio to create form for Arcpad</title>
      <link>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524811#M3799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi All&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm new to this and I think I've had enough of it.&amp;nbsp; I have created a combo box using a dbf as a list source, no problems.&amp;nbsp; Wanted to create a second combo box with a Select Case option that will change the shown variables depending on the first combo box.&amp;nbsp; I figured out how to do this in arcmap with vba but I can't figure out which objects' event tab to use in studio.&amp;nbsp; Or should I just use the form event tab to call up a vba but I'm not sure how to do that either.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm confused, help please&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rebecca&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 15:49:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524811#M3799</guid>
      <dc:creator>RebeccaBleney</dc:creator>
      <dc:date>2010-05-10T15:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: using Arcpad Studio to create form for Arcpad</title>
      <link>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524812#M3800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi All&lt;BR /&gt;&lt;BR /&gt;I'm new to this and I think I've had enough of it.&amp;nbsp; I have created a combo box using a dbf as a list source, no problems.&amp;nbsp; Wanted to create a second combo box with a Select Case option that will change the shown variables depending on the first combo box.&amp;nbsp; I figured out how to do this in arcmap with vba but I can't figure out which objects' event tab to use in studio.&amp;nbsp; Or should I just use the form event tab to call up a vba but I'm not sure how to do that either.&lt;BR /&gt;&lt;BR /&gt;I'm confused, help please&lt;BR /&gt;&lt;BR /&gt;Rebecca&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When a selection is made in the first combo box, you know its ListIndex value. Perhaps you can use this value to add items to the second combobox when the "On Selection Change" event of the first box is triggered? e.g. if the 3rd value in list 1 is selected, set the source of the list 2 to the third field/column in a particular dfb?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sub cboListOne_OnSelectionChange(ThisEventObject)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'ThisEventObject refers to the first combobox cboListOne&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim myIndex&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Assuming a table with values listed in columns, column headers are Option1, Option2 etc&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; myIndex = "Option" &amp;amp; ThisEventObject.ListIndex &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Dimension the form, page and 2nd combobox control&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Dim objMainPage, objEditForm, objComboControl&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set objForm = Layer.Forms("EDITFORM")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set objPage = objEditForm.Pages("[Page Name]")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Set objComboControl = objPage.Controls("[cboListTwo]")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Clear any existing values in cboListTwo &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; objComboControl.Clear&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Populate the 2nd combobox&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; objComboControl.AddItemsFromTable [path to table with values.dbf],myIndex,myIndex&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End Sub&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 13:53:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524812#M3800</guid>
      <dc:creator>Almarde_Ronde</dc:creator>
      <dc:date>2010-05-12T13:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: using Arcpad Studio to create form for Arcpad</title>
      <link>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524813#M3801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you for that but because I'm not a programmer of any discription, I'm still slightly confused on the coding.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I achieved what I'm trying to do in VBA I used SELECT CASE to do it, should I be using it in Studio. I haven't had any success with it, but I might not be doing it correctly for Studio.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Or reading your suggestion gave me the idea that perhaps I could set the database that I want in the second combobox and then have the selected value of the first combobox became the field and text values for the second object box.&amp;nbsp; Do you know if that's possible?&amp;nbsp; If I understand what you were showing me, would this be the coding.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;myIndex = "Option" &amp;amp; ThisEventObject.ListIndex&amp;nbsp; {does this give me the selection from the first cbobox named "cbogenesis"}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set objForm = Layer.Forms("Tree")&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {tree is the form they are both on}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set objPage = objEditForm.Pages("[1]")&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {page 1 }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set objComboControl = objPage.Controls("[cbospecies]")&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {"cbospecies" is the second cbobox}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;objlistvaluefield.Clear &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;objlisttestfield.Clear&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set objlistvaluefield = myindex&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set objlisttestfield = myindex&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunately I can't try it until I finish redoing the databases, how I did them orginally made sense to me but made the mobile Unit go at snail pace. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rebecca&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 May 2010 14:46:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524813#M3801</guid>
      <dc:creator>RebeccaBleney</dc:creator>
      <dc:date>2010-05-14T14:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: using Arcpad Studio to create form for Arcpad</title>
      <link>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524814#M3802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok I said I didn't know what I was doing and I proved it from my last comment.&amp;nbsp; To be fair I looked at it after midnight just after I found out I had to redo the databases, which are only excel files converted to dbf.&amp;nbsp; After playing with it for many hours, I no longer get any errors but it still won't work.&amp;nbsp; Can anyone tell me what I'm doing wrong.&amp;nbsp; I put this in the cbogenesis "event on change" .&amp;nbsp; I have tried it in selonchange as well&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set strCboGenesis = Forms(EDITFORM).Pages(page1).controls(cboGenesis)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set objComboControl = Forms(EDITFORM).Pages(page1).controls(cboSpecies)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set ds = "c:\mum\please\dataforarcpad1\species.dbf"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;objComboControl.Clear&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;objComboControl.AddItemsFromTable [ds],strCboGenesis,StrCboGenesis&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 May 2010 01:28:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524814#M3802</guid>
      <dc:creator>RebeccaBleney</dc:creator>
      <dc:date>2010-05-17T01:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: using Arcpad Studio to create form for Arcpad</title>
      <link>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524815#M3803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Ok I said I didn't know what I was doing and I proved it from my last comment.&amp;nbsp; To be fair I looked at it after midnight just after I found out I had to redo the databases, which are only excel files converted to dbf.&amp;nbsp; After playing with it for many hours, I no longer get any errors but it still won't work.&amp;nbsp; Can anyone tell me what I'm doing wrong.&amp;nbsp; I put this in the cbogenesis "event on change" .&amp;nbsp; I have tried it in selonchange as well&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Set strCboGenesis = Forms(EDITFORM).Pages(page1).controls(cboGenesis)&lt;BR /&gt;Set objComboControl = Forms(EDITFORM).Pages(page1).controls(cboSpecies)&lt;BR /&gt;Set ds = "c:\mum\please\dataforarcpad1\species.dbf"&lt;BR /&gt;objComboControl.Clear&lt;BR /&gt;objComboControl.AddItemsFromTable [ds],strCboGenesis,StrCboGenesis&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The AddItemsFromTable method needs a string, i.e. AddItemsFromTable ( TableName, ValueField, TextField [,Expression] ). You are giving the ValueField and TextField in the AddItemsFromTable method a combobox object strCboGenesis instead of a string. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Suppose you have a list of values in a column in your species.dbf and that the column header in the species.dbf is called "Values". You could then say: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;objComboControl.AddItemsFromTable ds,"Values","Values"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can use the value of the cboGenesis combobox to refer to the column header in the species.dbf.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Set strCboGenesis = Forms("EDITFORM").Pages("page1").controls("cboGenesis")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;myHeader = strCboGenesis.Value&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;objComboControl.AddItemsFromTable ds,myHeader,myHeader&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that makes sense?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 11:57:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524815#M3803</guid>
      <dc:creator>Almarde_Ronde</dc:creator>
      <dc:date>2010-05-18T11:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: using Arcpad Studio to create form for Arcpad</title>
      <link>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524816#M3804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you Thank you Thank you&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I went back to the orginal suggestion, set it out one line at a time, stopped trying to SET the path and now it works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you Thank you Thank you&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just out of curiousity, can I make the index value of one field equal to another.&amp;nbsp; Say when the species have been selected I want the common name to appear automatically in another listbox.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so could I repeat the procedure and create&amp;nbsp;&amp;nbsp; DS2&amp;nbsp;&amp;nbsp; = path to the third database&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;cbospecies.vaule = cbocommon.vaule&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;cbospecies.listindex = cbocommon.listindex&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's not going to be that simple is it, I have to create the third database before I can try.&amp;nbsp; again I am doing this at midnight and my first ideas are not always the smartest.&amp;nbsp; Thank you again&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 12:38:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524816#M3804</guid>
      <dc:creator>RebeccaBleney</dc:creator>
      <dc:date>2010-05-19T12:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: using Arcpad Studio to create form for Arcpad</title>
      <link>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524817#M3805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Its me again&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have 3 combo boxes working excatly how I want them to except if the field name has more then 10 letters.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;all databases are excel converted to dbf.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;first combo box reads from first database, the whole field name is seen.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the second and third combo boxes are supposed to get the field names from the first combo box but it only picks up the first 10 letters and therefore doesn't find a match.&amp;nbsp; Works perfectly when less then ten, even got the listindex thing to do what I wanted.&amp;nbsp; The fields were all made orginally as text in arcmap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am assuming I have to make it a string or expand the field size.&amp;nbsp; not having any luck with my attempts.&amp;nbsp; What I've got is&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ds = "c:\mum\please\dataforarcpad1\species.dbf"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;myHeader = objCboGenesis.Value&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;objCboSpecies.Clear&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;objCboSpecies.AddItemsFromTable ds,myHeader,myHeader&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rebecca&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 May 2010 11:56:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524817#M3805</guid>
      <dc:creator>RebeccaBleney</dc:creator>
      <dc:date>2010-05-20T11:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: using Arcpad Studio to create form for Arcpad</title>
      <link>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524818#M3806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;First of all I am not a programmer. I am working on a fire hydrant inspection form that I would like to use with ArcPad. It contains a lot of Yes/No fields. When I do the quick form it automatically adds them in as drop down boxes. Which is fine, however it would be much faster to fill out the form if they were using Checkboxes or Radio Buttons. Do I have to write code for that or can I use a "wizard" to make that happen?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone know the best way to track Yes/No fields in GIS? (Text field, ShortInteger) Do I need to use True/False (1,0) or Microsoft Access uses (Yes/No) which is Yes = -1 and No =0.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any insight on this would be great!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ashlie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Sep 2010 18:23:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/using-arcpad-studio-to-create-form-for-arcpad/m-p/524818#M3806</guid>
      <dc:creator>AshleyCassol</dc:creator>
      <dc:date>2010-09-01T18:23:09Z</dc:date>
    </item>
  </channel>
</rss>

