|
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
|
650
|
|
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
|
671
|
|
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
|
345
|
|
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
|
2177
|
|
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
|
917
|
|
POST
|
I createdwith model builder and exported to python a script that runs the following commands - creates version - seelct features to be appended - appends features - post checking the option "Reconcile" and it looks like it works # Process: Create Version...
gp.CreateVersion_management(XXXX_SDE_93_sde__2_, "SURADMIN.Pre_Prod", "Historical", "PUBLIC")
# Process: Make Feature Layer...
gp.MakeFeatureLayer_management(W_Source, Source_Layer, "STATUS = 'GIS Completed'", XXXX_SDE_93_sde, ".....")
# Process: Append...
gp.Append_management("Source_Layer", W_Historical__2_, "TEST", "", "")
# Process: Reconcile Version...
gp.ReconcileVersion_management(XXXX_SDE_93_sde, "LocalVersion.Historical", "SURADMIN.Pre_Prod", "BY_OBJECT", "FAVOR_TARGET_VERSION", "LOCK_AQUIRED", "NO_ABORT", "POST")
... View more
05-17-2011
09:31 AM
|
0
|
0
|
917
|
|
POST
|
Hi all I need to copy records that are compelted from one feature to another feature in a weekly basis. Because both features are versioned, let me know if this sequence is correct: - first create a version - reconcile - append records records from one FC to the other - post I got the following error message: Error 000533: the version can not be posted to the weconcile version. Reconcile must be performed before the post operation has been done. Failed to execute post. please advise!
... View more
05-16-2011
12:02 PM
|
0
|
4
|
3969
|
|
POST
|
Hi all is there any tool in ArcGIs that will allow us to convert to ODF format for map display and geocoding thanks
... View more
04-05-2011
09:35 AM
|
0
|
0
|
540
|
|
POST
|
How can I check if a GDB_OBJECTCLASSES row corresponds to the dropped feature class? How can I check if any entry in GDB_DOMAINS corresponds to the object class ID? All features and tables were deleted in the sde instance.. What we need is a way to fix the problem. What do you suggest? Does an GDB_OBJECTCLASSES row that corresponds to the dropped table exist? Is there an entry in GDB_DOMAINS which corresponds to the object class ID? The easiest way to uncorrupt the geodatabase registry is to create a table with the name of the dropped table via SQL, then use Catalog to delete it. - V
... View more
03-21-2011
07:14 AM
|
0
|
0
|
763
|
|
POST
|
Oracle 10G ArcSDE 9.3 ArcCatalog 9.3.1 last package available The domain is not referenced by a feature in the database Features have been deleted
... View more
03-21-2011
06:35 AM
|
0
|
0
|
763
|
|
POST
|
Hi all We have domaisn in our sde dataabse that are not associated with feature classes but when deleting them they look they are used by a feature. Is there a way to remove them when ArcCatalog does not allow it
... View more
03-21-2011
02:48 AM
|
0
|
5
|
1045
|
|
POST
|
Hi all, I am using ArcGIs 9.3 and I have in my computer VS 2005 and VS 2010. Where are the Web ADF and ArcMap Add-in project templates in VS 2010? I can see them in VS 2005. Please advise
... View more
03-08-2011
07:51 AM
|
0
|
5
|
3475
|
|
POST
|
Hi all whenever the IGeoProcessorResult does not execute correctly would like to stop my program, to raise an exception. This code only shows error messages, bot does not stop the program: Execute the server tool
Dim result As ESRI.ArcGIS.Geoprocessing.IGeoProcessorResult
result = CType(GP.Execute("CalculateBestPath", parameters, Nothing), ESRI.ArcGIS.Geoprocessing.IGeoProcessorResult)
If result.Status = esriJobStatus.esriJobSucceeded
For Count As Integer = 0 To result.MessageCount - 1
Console.WriteLine(result.GetMessage(Count))
Next Count
End If
... View more
03-03-2011
12:43 PM
|
0
|
0
|
1085
|
|
POST
|
http://forums.esri.com/Thread.asp?c=93&f=986&t=92260
... View more
03-01-2011
09:50 AM
|
0
|
0
|
363
|
|
POST
|
Hi all How can I connect for VBA to an Oracle database? What is the DSN-less connection to Oracle syntax? Regards
... View more
03-01-2011
08:50 AM
|
0
|
1
|
979
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-05-2025 04:28 AM | |
| 1 | 08-05-2025 04:33 AM | |
| 1 | 06-05-2025 11:12 AM | |
| 1 | 03-03-2025 04:33 AM | |
| 1 | 01-23-2025 06:40 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|