|
POST
|
Hi all I am writting a console application and would like to know if there is any sample that shows how to create a polygon form a list of points with lat and lon in a table thanks
... View more
06-12-2012
10:36 AM
|
0
|
1
|
824
|
|
POST
|
Hi all I have a table that has X.Y coordinates that represent project areas on the field. The structure is: Project Number, X,Y 1, X1,Y1 1, X2,Y2 1, X3,Y3 1, X4,Y4 2, X11,Y11 ..... Questions: - How can I create a polygon in Python from that list - how can I loop, to read all the points that belong to the same project - how can I loop to read all the projects Regards
... View more
05-29-2012
07:48 AM
|
0
|
1
|
3272
|
|
POST
|
Hello everyone, I need to create a polygon from points listed in a table. The table has lat and long values, each value is going to be a vertex in the polygon. I am going to user Model Builder Please advise!
... View more
05-29-2012
06:19 AM
|
0
|
2
|
6338
|
|
POST
|
the solution register the dll as an administrator http://msmvps.com/blogs/martinpoon/archive/2009/03/20/the-module-actxprxy-dll-was-loaded-but-the-call-to-dllregisterserver-failed-with-error-code-0x80070005.aspx For doing this, you will need to use a command prompt that is executed as administrator. So, grab your mouse??? and ~ Right-click on the command prompt icon ~ Select [ Run as administrator ] Hope it helps
... View more
05-24-2012
04:23 AM
|
0
|
0
|
1453
|
|
POST
|
Hi all, I am trying to install the script SDE Administration Web Page http://arcscripts.esri.com/details.asp?dbid=14093 in my Windows 7 computer and I get the following error message when trying to register sdeadmin.dll c:\windows\syswow64\regsvr32.exe sdeadmin.dll Error message: The module ???sdeadmin.dll??? was loaded but the call to DllRegisterServer failed with error code 0x80070005 Please advise!
... View more
05-24-2012
04:20 AM
|
0
|
2
|
1660
|
|
POST
|
Hi all do you use Visual Studio to develop ArcGIS Javascript applications? any IDE you recommend?
... View more
05-16-2012
06:19 AM
|
0
|
4
|
4350
|
|
POST
|
Hi all I am writting my first Add-In with VS 2008, Arcmap 2011 and created a data entry form with a dockable window. I would like to know: - how to close a dockable window, by default it looks like it hides, sho when clicking again the button it shows the form but its content does not get refershed - my form read the selected features from a layer and displays a data entry form where the user enters only attributes. But if when users select another feature in the same layer how can I refresh my dockable window, to show the new ferature. What event? - is it better to use a regular windows form please advise
... View more
10-25-2011
03:55 AM
|
0
|
1
|
1977
|
|
POST
|
Hi all, how do I get the domains description in a SDE connection? Or how do I check if a domain already exists? Found this code but it does not run: desc = arcpy.describe(SDEConnection) AttributeError: 'module' object has no attribute 'describe' >>> arcpy.env = SDEConnection
desc = arcpy.describe(SDEConnection)
domains = desc.Domains
for domain in domains:
print domain
... View more
09-19-2011
12:04 PM
|
0
|
4
|
5141
|
|
POST
|
Hi all I tried to run this calculate field in a model, python and vb.net and I shows everywhere the same error message below. Please advise. Executing: CalculateField ServicePointTable_View XXXX.ServicePointTable.SPCWASDID str(!XXXX.PremisePoints.SPCWASDID!) PYTHON # ServicePointTable_View Start Time: Wed Aug 31 13:08:50 2011 ERROR 999999: Error executing function. An invalid SQL statement was used. An invalid SQL statement was used. An invalid SQL statement was used. Failed to execute (CalculateField). End Time: Wed Aug 31 13:08:50 2011 (Elapsed Time: 0.00 seconds) Python Code: # Process: Calculate Field... gp.CalculateField_management(ServicePointTable_View, "XXXX.ServicePointTable.SPCWASDID", "[XXXX.PremisePoints.SPCWASDID]", "PYTHON", "") VB.net Code pCalculateField.in_table = "ServicePointTable_View"
pCalculateField.field = "XXXX.ServicePointTable.SPCWASDID"
pCalculateField.expression = "!XXXX.PremisePoints.SPCWASDID!"
pCalculateField.expression_type = "PYTHON"
RunTool(GP, pCalculateField, Nothing)
... View more
08-31-2011
09:58 AM
|
0
|
0
|
1180
|
|
POST
|
Hi all when I open a windows form from a button loaced in the toolbar how can I hide the form if the button gets clicked again? I tried that but it does not work, it opens new windwos forms. Protected Overrides Sub OnClick()
Dim myForm As frmWindowsForm
If myForm Is Nothing Then
myForm = New frmWindowsForm
End If
If myForm.Visible Then
myForm.Hide()
Else
myForm.Show()
End If
myForm = Nothing
End Sub
... View more
08-23-2011
09:31 AM
|
0
|
2
|
1017
|
|
POST
|
I am having the same problem and I am using VB 2008 and ArcGIS 10
... View more
08-23-2011
04:19 AM
|
0
|
0
|
1370
|
|
POST
|
I was able to correct the problem in VBA when opening a 9.3 map with ArcMap 10. I just commented the procedure and now it works. It looks like this procedure is duplicated in the code. 'Public Property Get MPSAtlas() As UID 'Dim u As New UID 'u = "{902E43BC-CF3F-4CEB-AC30-AFE2BD8ED658}" 'Set MPSAtlas = u 'End Property
... View more
06-21-2011
11:03 AM
|
0
|
0
|
491
|
|
POST
|
Hi all when I open a 9.3 map that has VBA code with arcGIs 10 I get the following error message: ambiguous name detected MPSAtlas please advise
... View more
06-21-2011
10:40 AM
|
0
|
1
|
2323
|
|
POST
|
Russell, This is the structure of our SDE tree: �?� First SDE.Default �?� Second a child version from default called Pre-Production �?� Third an user version child of Pre-Production My goal is to run a script that will perform the following operations: - move all the records that are completed in a feature class to an historical one, - and then remove features from the regular feature class that were archived. I was able to write a Model Builder that creates a new child version from Pre-Production, selects records to be archived, appends them to the historical feature class, deletes these same records from the regular feature class and then running a reconcile with the option option �??Post Version after Reconcile�?� checked it works propagates all the updates for the child to the parent. But if I uncheck this option �??Post Version after Reconcile�?� in the Reconcile box and I run a POST TO Pre-Produciton I get an error message. What does not work is adding a post box after the reconcile in ModelBuilder, it always fails, why? This is the error I got : Error 000533: the version can not be posted to the reconcile version. Reconcile must be performed before the post operation has been done. Please advice!
... View more
05-18-2011
10:49 AM
|
0
|
0
|
1496
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 05-01-2026 12:34 PM | |
| 1 | 12-02-2022 08:17 AM | |
| 1 | 12-26-2025 05:02 AM | |
| 1 | 08-05-2025 04:28 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|