|
POST
|
In some of the .Net applications I build, I use the line System.Windows.Forms.Cursor.Current = Windows.Forms.Cursors.WaitCursor at the beginning of a long operation and at the end of the operation, setting it to the default with the line System.Windows.Forms.Cursor.Current = Windows.Forms.Cursors.Default
... View more
01-18-2012
05:25 AM
|
0
|
0
|
1999
|
|
POST
|
You can use Split to separate out the parts of the address. The syntax would be something like this: addresses = Split([field], " - ") address = addresses(0) direction = addresses(1)
... View more
12-30-2011
05:59 AM
|
0
|
0
|
5600
|
|
POST
|
To show the code, click on the # symbol in the strip above the editor.
//==== THIS IS HOW I ACCESS REPEATER INFORMATION ON A CLICK EVENT
private function btnShowCharacterize(evt:Event):void
{
Alert.show ("current name - " + evt.currentTarget.getRepeaterItem().wsName);
Alert.show ("current index - " + evt.currentTarget.repeaterIndices + " open/close - " + openCloseArray[index].toString());
}
... View more
12-21-2011
06:12 AM
|
0
|
0
|
539
|
|
POST
|
Could it be related to this issue? What happens when you use the RollOver event instead of the MouseOver event?
... View more
12-06-2011
06:23 AM
|
0
|
0
|
1218
|
|
POST
|
Take a look at this thread in the old forums about linking data frames
... View more
12-06-2011
06:13 AM
|
0
|
0
|
1799
|
|
POST
|
Take a look at this sample that shows how to get the map extent
... View more
11-28-2011
06:45 AM
|
0
|
0
|
651
|
|
POST
|
Which version of ArcGIS are you using? For ArcGIS 9 and above, you should be using IExport instead of IExporter, along with ExportTIFF and ExportJPEG instead of TiffExporter and JPEGExporter.
... View more
11-28-2011
06:23 AM
|
0
|
0
|
539
|
|
POST
|
Instead of using the in_memory workspace, could you use a scratch workspace to store the intermediate datasets?
... View more
11-15-2011
09:01 AM
|
0
|
0
|
1820
|
|
POST
|
The way I've done it is to create a variable that contains the text with the attributes, then assign that variable to the htmlText property.
private var attributeText:String;
attributeText = "This is the Transect ID: " + graphic.attributes.TransectID;
<mx:Text width="100%" paddingLeft="10" paddingTop="10" htmlText="{attributeText}"/>
... View more
11-15-2011
08:51 AM
|
0
|
0
|
605
|
|
POST
|
This has been reported as bug NIM063795 (The Dissolve tool creates empty Shape_Length and Shape_Area fields in an in-memory output layer during background geoprocessing). This happens when the background processing is enabled, so the workaround would be to disable background processing in the Geoprocessing options dialog.
... View more
11-15-2011
06:10 AM
|
0
|
0
|
1820
|
|
POST
|
Try these changes in your TransLineEdit.vb form.
Public Class TransLineEdit
Inherits ESRI.ArcGIS.Desktop.AddIns.Button
Dim pForm As New frmEdit
Protected Overrides Sub OnClick()
Try
pForm.Show()
Catch ex As Exception
System.Windows.Forms.MessageBox.Show(ex.ToString, "OnClick")
End Try
End Sub
End Class
... View more
11-14-2011
07:14 AM
|
0
|
0
|
1033
|
|
POST
|
This has been reported as a bug: NIM061356 (ICalculator or ICalculatorUI2 do not offer a property where the parser (expression type) can be specified; VBScript is the default, so Python expressions error out). Unfortunately, although being submitted over a year ago, it's classified as low priority and has not been fixed yet.
... View more
10-31-2011
01:00 PM
|
0
|
2
|
1250
|
|
POST
|
When you open a new project, make sure you chose .NET Framework 3.5
... View more
10-28-2011
07:41 AM
|
0
|
0
|
1064
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-04-2025 06:39 AM | |
| 1 | 2 weeks ago | |
| 1 | 04-10-2026 12:01 PM | |
| 1 | 04-13-2026 09:11 AM | |
| 1 | 10-11-2023 06:18 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|