How Draw, Copy and Move a Circle in ArcEditor with Specific Radius

Article with ID 26558 in ArcGIS Resource Center has described the steps. Here is an improved version:

1. Add the Advanced Editing toolbar to ArcMap by clicking View > Toolbars > Advanced Editing.
2. If Drawing toolbar does not appear, click on the Editor menu and select Start Editing.
3. Zoom in to the right position and size in order to make precise pinpoint of the circle of the circle, in following steps.
4. Click on the Marker tool (a little dot) on the Drawing toolbar.
5. Click somewhere on the map to specify where the center of the circle will be to place the Marker. Make an adjustment to the size of this Marker.
6. Click on the Circle tool on the Drawing toolbar.
7. Click the Markers on the map which specifies where the center of the circle will be, and don't release the button on your mouse.
8. Move your mouse little bit while still hold your mouse button, hit the 'R' key on the keyboard.
9. Specify the radius of the circle in map units and hit the Enter key.
10. If you do not want the Marker to be seen, you can either remove it or color it into invisible. The latter is suggested because any future move and copy may rely on this Marker to be precised.

Done.

To move or copy a circle, you may regard the center of the circle as base point. In this case, use the Marker as mentioned above.

1. Zoom in to the right position and size in order to make precise pinpoint for both old and new position of the center of the circle.
2. Click "Select Elements" button, then click the circle.
3. Press Ctrl in keyboard while click the Marker at the center of the circle, to grouping it.
4. Ctrl C and Ctrl V to copy and paste. For move, just use your mouse to drag and drop.
5. Drag and drop to right position base on the Marker.


http://resources.arcgis.com/content/kbase?fa=articleShow&d=26558

How to Upload Data to ArcEditor

Save data in Excel file. Open ArcCatalog, connect to that folder, find the table/worksheet in Excel file, right click it, click Create Feature Class, click From XY Table, a pop-up window Create Feature Class From XY Table will be shown. Select with XY columns and select right folder and file name for new SHP file destination, then click OK.

If it does not show on the folder, right click the folder to refresh it.

In ArcEditor, menu Windows, select Table of Contents. In the layer you want to add, right click it, click Add Data, and then upload the SHP files you have just created.
Done.

Javascript Error Message: is not a function

This error message appears when you use Varibalized Function (or called Function Literal, Function Reference, Function Pointer) method to declare function while you did not put into right order:

(Caller here)
; var func = function()
{
...
}

Solution 1:

; var func
(Caller here)
; func = function()
{
...
}

Solution 2:

(Caller here)
; function func()
{
...
}


http://www.dustindiaz.com/javascript-function-declaration-ambiguity/
Function Declaration in JavaScript

How to Create a New Report by Copy from Existing One in SSRS

First of all, if the Solution and Project for which the new report is supposed to be there is not exist yet, create the Solution and/or Project first.

1. In Solution Explorer, find existing report, right click and select COPY.
2. Click the Project where you want your new report be, right click and select PASTE.

Done.

Labels