|
POST
|
Hi Jeff, Thanks for responding. That is basically what I decided to do within my ArcPro project but without all the code. I just created two maps/layouts, one for the right side and one for the left side. The ArcMap MapLogic product works without having to make multiple layouts though. Instead, you create what they call an 'anchor' point, and your layout elements move around the anchor point depending on whether you are looking at an even or odd # page. I was hoping ArcPro would incorporate a feature like that, but I guess not.
... View more
01-09-2019
06:18 AM
|
0
|
0
|
1344
|
|
IDEA
|
Hi Kory, I saw that post before posting this. The Page Definition query is only for that specific map series page. What I am proposing is a Map Series level definition query that would affect all pages in the map series.
... View more
01-08-2019
01:24 PM
|
1
|
0
|
6750
|
|
IDEA
|
What would be great is if you could apply a definition query to the Index Layer of a layout. This way you would only need to create one 'Map' in your project and then you could create multiple different 'Layouts' by just changing the definition query. Currently the only way to do this is to create a new Map for each Layout you need, and then create the definition query on your Index Layer in the map. Thanks,
... View more
01-08-2019
09:58 AM
|
2
|
10
|
6900
|
|
POST
|
Hi, So I've created a Map Series and I'm trying to figure out a way to alter the position of elements (ie. a Text element) depending on whether the current page is even or add. As an example, on an even page the "Page #" text element should be on the bottom left, and on an odd page the bottom right. For ArcMap 10.x we use a 3rd party add-on called MapLogic which does this perfectly, but it does not look this product will be updated for use with ArcPro. ArcPro Map Series does about 90% of what we want. Does anyone know of a workaround to get this functionality working?? Thanks!
... View more
01-08-2019
09:46 AM
|
0
|
2
|
1430
|
|
POST
|
For anyone interested, it looks like there is a reported bug about this.
... View more
12-20-2018
10:59 AM
|
1
|
0
|
1748
|
|
POST
|
Thanks Scott. I searched the 'Bugs' on the support site previously, but I guess I just didn't use the right keyword search. I see two bugs reported there, one for .NET and one Phython, so hopefully at v2.3 things will start to work for me. Thanks for the information!
... View more
12-20-2018
10:53 AM
|
1
|
0
|
6340
|
|
POST
|
Hi, I have an custom ArcPad 'application' that we use for collecting field data. I would like to convert it to a Collector application but was wondering how customizable Collector is. I have setup vbScripts within the various .apa and .apl files to help with, for example, opening an MS Access database and loading data based on the Roll Number of the clicked on Parcel. With Collector installed on a Windows 10 machine, would I still be able to provide this sort of functionality??
... View more
12-20-2018
08:44 AM
|
0
|
0
|
567
|
|
POST
|
Awesome! Thanks Sean Jones and Scott Harris. One other thing I'm trying to figure out is how to load a layer file based on the layername, using .NET and/or Python code. So far my attempts at using the ApplySymbologyFromLayer_management geoprocessing tool have not worked. I'm pretty sure I have the syntax right, but it just won't work. There are a few posts on here about it, but no real concrete answer as to what might be causing the problem. Can you help?? See these posts for reference: Update Symbology based on .lyr file Building proper syntax for importing .lyr symbology for Feature Layer Apply Symbology From Layer—Data Management toolbox | ArcGIS Desktop Basically I'm trying to create a tool that will load the layer files automatically, just to make things easier for the users.
... View more
12-20-2018
05:53 AM
|
0
|
2
|
6342
|
|
POST
|
Is it possible to save an editing template to use in other projects? I do not see a way to do it. We have created some 'Group Templates' (which take some time to create), and seems to make sense to be able to save them and use them in other projects when needed. Kind of like a .lyrx file, but for Templates. Am I missing something, or can this just not be done. Thanks,
... View more
12-19-2018
12:09 PM
|
0
|
11
|
7687
|
|
POST
|
Hi, So it appears that using the "Group Template" feature will do what I want. The process of creating the template is a bit finicky, but I was able finally create a Hydrant with a lateral line and a service connection, which I can snap to an existing watermain, and orient it in anyway I want. A much better solution than the 'Preset Template from Selected Features' Just thought I would post in case anyone else was trying to figure it out too.
... View more
12-19-2018
12:05 PM
|
0
|
0
|
3421
|
|
POST
|
Hi Robert LeClair So I've been trying to use the Geoprocessing.ExecuteToolAsync("ApplySymbologyFromLayer_management"....) method for applying a .lyr/.lyrx file to a layer. According to all the documentation this should work, but I cannot get it to work as a C# add-in, or using a simple Python script. Can you confirm if there are any issues with this tool and how it works?? I've spent a lot of time on this already and don't want to continue if there are known issues. See Building proper syntax for importing .lyr symbology for Feature Layer . async private void btnSymbolize_Click(object sender, RoutedEventArgs e)
{
try
{
//QueuedTask.Run(() =>
//{
// Uri myUri = new Uri(@"K:\DSM Shared\ArcMap Symbology\10.2 Schema\Editing Symbols\GISWRKS1.WORKS.WAT_Hydrant.lyr");
// Layer newLayer = LayerFactory.Instance.CreateFeatureLayer(myUri, MapView.Active.Map, LayerPosition.AddToTop);
//}
//);
//var parameters = Geoprocessing.MakeValueArray("GISWRKS1.WORKS.WAT_Hydrant.lyr", @"K:\DSM Shared\ArcMap Symbology\TEST\Editing Symbols\GISWRKS1.WORKS.WAT_Hydrant.lyrx");
//var gpresult = await Geoprocessing.ExecuteToolAsync("ApplySymbologyFromLayer_management", new string[] { "GISWRKS1.WORKS.WAT_Hydrant", @"K:\DSM Shared\ArcMap Symbology\10.2 Schema\Editing Symbols\GISWRKS1.WORKS.WAT_Hydrant.lyr" });
Map map = MapView.Active.Map;
pBar.Minimum = 0;
pBar.Maximum = map.Layers.Count;
this.Cursor = Cursors.Wait;
GPExecuteToolFlags flags = GPExecuteToolFlags.GPThread;
foreach (Layer layer in map.GetLayersAsFlattenedList().OfType<FeatureLayer>())
{
var gpresult = await Geoprocessing.ExecuteToolAsync("ApplySymbologyFromLayer_management", new string[] { layer.Name.ToString(), @"K:\DSM Shared\ArcMap Symbology\10.2 Schema\Editing Symbols\" + layer.Name.ToString() + ".lyr" }, null, null, flags);
pBar.Value = pBar.Value + 1;
}
}
catch (Exception ex)
{
ArcGIS.Desktop.Framework.Dialogs.MessageBox.Show(ex.ToString());
}
finally
{
this.Cursor = Cursors.Arrow;
this.Close();
}
}
... View more
12-04-2018
05:45 AM
|
0
|
0
|
1748
|
|
POST
|
Here is a screenshot of the "Customize Ribbon" from MS Outlook. It has the Up/Down buttons, which work to arrange buttons on ribbons. It seems like ArcPro is missing the two buttons I have in the red circle to organize Ribbons.
... View more
11-30-2018
06:55 AM
|
0
|
0
|
774
|
|
POST
|
Thanks Wolfgang Kaiser, So I have my "DSM Custom Tools" ribbon back after hitting 'Reset All'. So the only way I can organize any of the tools on this ribbon is through DAML code?? With this "Customize the Ribbon", how do I move items Up/Down? The only place I see to move things Up/Down is on the "Quick Access Toolbar", which is a different selection in the Options window.
... View more
11-30-2018
05:44 AM
|
0
|
2
|
774
|
|
POST
|
Doesn't seem to matter. Using 'Add-In Manager' to point to the files, or installing them locally by double clicking. Either way they are not showing up properly in ArcPro anymore. I've tested on another desktop, and they show up fine on that one. Using the 'Customize the Ribbon' must have triggered something, and messed things up. I will try an uninstall/reinstall of ArcPro and see if that clears things up. My Add-Ins are installed: But I cannot seem to control how they are displayed any more. Add/Remove to the right side does not seem to work. Rich Ruh: Any ideas what might be happening here??
... View more
11-29-2018
07:33 AM
|
0
|
4
|
3916
|
|
POST
|
Things look to be really messed up now. If I remove all of my Add-Ins via the 'Add-In Manager' and also delete anything in my documents\ArcGIS\AddIns\ArcGISPro folder, ArcPro opens without anything....as expected. But, then when i go to re-add everything again I still cannot get the Add-Ins to show up in ArcPro. Something permanent seems to have happened through the Options->Customize the Ribbon window that has messed things up. Any advice on how to get things back??
... View more
11-29-2018
06:33 AM
|
0
|
6
|
3916
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-29-2026 07:40 AM | |
| 1 | 10-17-2023 07:40 AM | |
| 1 | 04-14-2026 08:54 AM | |
| 2 | 08-18-2023 08:57 AM | |
| 1 | 04-13-2018 10:07 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-29-2026
09:43 AM
|