<?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 Customized forms? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/customized-forms/m-p/533517#M41790</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a python script for data entry and I would like to create a customized entry form that people could use. In 9.3 you could create a vba form, is there a version of this in 10?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The only option I can find that's close doing the generic 'tool' screen, but for batch data entry I don't want them to have to click on the tool button for every record. Am I missing something?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Dec 2010 23:05:37 GMT</pubDate>
    <dc:creator>KateSchaefer</dc:creator>
    <dc:date>2010-12-03T23:05:37Z</dc:date>
    <item>
      <title>Customized forms?</title>
      <link>https://community.esri.com/t5/python-questions/customized-forms/m-p/533517#M41790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a python script for data entry and I would like to create a customized entry form that people could use. In 9.3 you could create a vba form, is there a version of this in 10?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The only option I can find that's close doing the generic 'tool' screen, but for batch data entry I don't want them to have to click on the tool button for every record. Am I missing something?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Dec 2010 23:05:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/customized-forms/m-p/533517#M41790</guid>
      <dc:creator>KateSchaefer</dc:creator>
      <dc:date>2010-12-03T23:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: Customized forms?</title>
      <link>https://community.esri.com/t5/python-questions/customized-forms/m-p/533518#M41791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The Python implementation and script tool framework in ArcGIS is not really designed for data entry, more for data management and analysis on entire datasets or selections of datasets. There are a few Python GUI frameworks such as PyQT and wxPython, but as of yet these are not well supported or documented for use with ArcGIS. Your best bet is to learn C# or VB.NET and write an add-in (ArcGIS 10) or extension (9 and 10). The free Visual Studio Express editions integrate well with ESRI's software development kits (SDK) for ArcGIS, and it's pretty easy to get up and running, though learning ArcObjects is likely going to be the hardest part.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that if you're really determined you can use ArcObjects in Python using the comtypes module. See Mark Cederholm's presentation here: &lt;/SPAN&gt;&lt;A href="http://www.pierssen.com/arcgis/upload/misc/python_arcobjects.pdf"&gt;http://www.pierssen.com/arcgis/upload/misc/python_arcobjects.pdf&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Dec 2010 20:45:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/customized-forms/m-p/533518#M41791</guid>
      <dc:creator>LoganPugh</dc:creator>
      <dc:date>2010-12-06T20:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Customized forms?</title>
      <link>https://community.esri.com/t5/python-questions/customized-forms/m-p/533519#M41792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Great! Thanks for the help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Dec 2010 00:26:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/customized-forms/m-p/533519#M41792</guid>
      <dc:creator>KateSchaefer</dc:creator>
      <dc:date>2010-12-08T00:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Customized forms?</title>
      <link>https://community.esri.com/t5/python-questions/customized-forms/m-p/533520#M41793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In python the Tkinter library allows you to create forms.&amp;nbsp; just import it to your py script, then you can start building menus.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Dec 2010 16:09:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/customized-forms/m-p/533520#M41793</guid>
      <dc:creator>karlkliparchuk</dc:creator>
      <dc:date>2010-12-08T16:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Customized forms?</title>
      <link>https://community.esri.com/t5/python-questions/customized-forms/m-p/533521#M41794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't know about pyqt, but wxpython will not work with ArcGis--just doing an 'import wx' in the python window, or in a tool script, will crash the entire application (event loop clash, I suspect).&amp;nbsp; However, you can use wxpython outside the app framework and communicate with it using comtypes and the approt process.&amp;nbsp;&amp;nbsp; As mentioned above, Cederholm's instructions will get you started nicely.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Dec 2010 21:35:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/customized-forms/m-p/533521#M41794</guid>
      <dc:creator>MikeHunter</dc:creator>
      <dc:date>2010-12-08T21:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Customized forms?</title>
      <link>https://community.esri.com/t5/python-questions/customized-forms/m-p/533522#M41795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just reviving this thread as I have recently done the intro to geoprocessing scripts course, and am interested in creating a form type applet thing for data entry.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone created a form for data entry? Can you please provide a screen grab to see if its the type of thing we are looking do develop and implement?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have attached the hand written form that is submitted by the field staff, which we plot a point in the GIS and enter the attributes. Currently the data is entered into the attributes table directly, and its not a very 'neat' way of doing this. Before I started with this organisation they apparently had a VBA script type form which is now outdated/obsolete with the new versions of ArcGIS (10+).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyone out there that can show me what is possible?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]32754[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-Ben&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2014 23:43:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/customized-forms/m-p/533522#M41795</guid>
      <dc:creator>BenVan_Kesteren1</dc:creator>
      <dc:date>2014-04-02T23:43:51Z</dc:date>
    </item>
  </channel>
</rss>

