|
POST
|
I believe the issue for my case is on my end. We are going to Index the attribute I am trying to 'locate' and see if that helps. But....today when I opened ArcPro I did get the message about not being able to use the ArcGIS World Geocoding Service. I never use it, so not a big deal to me, but just thought I would mention it. I have opened ArcPro many times today, and it only happened once.
... View more
04-16-2018
10:02 AM
|
0
|
0
|
3950
|
|
POST
|
So for anyone interested, here is a workaround for connecting to a 32-bit MS Access database file through ArcPro. Of course, this is for someone having the same system issue as I am having, which is installing both 32 and 64 bit MS Office drivers at the same time. How to install 64-bit Microsoft Database Drivers alongside 32-bit Microsoft Office | AutoCAD | Autodesk Knowledge Networ…
... View more
04-16-2018
07:04 AM
|
0
|
0
|
2869
|
|
POST
|
I see. I will ask our IT department to put an index on that field. The table is 'Locked' when I try to do it. Thanks!
... View more
04-13-2018
10:07 AM
|
1
|
0
|
4601
|
|
POST
|
I am at 2.1.2. It is a numeric field, so that is probably why Contains is not listed. String fields have it.
... View more
04-13-2018
10:04 AM
|
1
|
0
|
4601
|
|
POST
|
Hi, I have been using ArcPro for quite some time, and have used the Locate tool on many occasions. In response to Jake: The layer I am searching is at the top of the list (see image below) I only have the option of 'Equals' (see image below) How do I build an index?? This is a layer that sits on SDE. I am not an admin of SDE...just an end-user. This is a large table. If I open the attribute table it will find records close to the top of what is displayed, but if I scroll down far enough to where it displays "Scanning", it won't find any of those records. And to Brad: yes, the layer is enabled in the Locate pane.
... View more
04-13-2018
08:48 AM
|
0
|
4
|
4601
|
|
POST
|
I read the article. So what does this mean for .mdb files. Will I not be able to connect to any of our .mdb databases through ArcPro?? What I am trying to do is create an OleDBConnection through some .NET code to connect to the database. From everything I have read, it's more of a Microsoft/OS issue than an esri ArcPro issue. Through VisualStudio (32 bit) I can connect to it, but through ArcPro (64 bit) I cannot. My system (Windows 7 64 bit) does not seem to want to let me install the 64-bit Office drivers. I think I have 32 bit office installed right now?? PGDB support is another issue, but just being able to access a regular Access database I don't think would be an esri issue. I don't think any 64-bit application on my machine would be able to access this database, not just ArcPro. Of course, I could be totally wrong as I don't have a great understanding of the issues. Anyways, I'm still trying to figure this out. Installing/uninstalling drivers from here: Download Microsoft Access Database Engine 2010 Redistributable from Official Microsoft Download Center , but no luck as of yet.
... View more
04-13-2018
08:18 AM
|
0
|
1
|
2869
|
|
POST
|
Any luck?? I am having a similar issue: https://community.esri.com/message/763889-locate-not-working It always seemed to have worked before.
... View more
04-13-2018
05:58 AM
|
0
|
1
|
3950
|
|
POST
|
Hi, I'm trying to use the 'Locate' to find attributes in a feature class. I've used the Locate before, and have all the setting set properly. It just isn't working anymore. It's clearly in my attribute table: And I have the Locate settings set properly: Thanks,
... View more
04-13-2018
05:56 AM
|
1
|
11
|
5616
|
|
POST
|
I'm trying to connect (through a custom tool developed via the current ArcPro SDK) to an MS Access 2003 database (32-bit) through ArcPro, but with no success. I think it's because Pro is 64-bit, as I am able to connect to the same database through ArcMap 10.4 using a custom tool. Can anyone confirm what I think is happening? Is there a workaround?? Thanks,
... View more
04-12-2018
12:15 PM
|
0
|
6
|
3249
|
|
POST
|
Great....thanks Uma and Narelle for your help. Both methods work as I need them to.
... View more
04-12-2018
10:04 AM
|
0
|
0
|
1527
|
|
POST
|
Hi, I'm trying to detect when the current MapView changes, so I can then activate/deactivate a button on a toolbar based on layers in the active map. But when I click on (for example) the 'Catalog' tab, the ActiveMapViewChangedEvent fires and I get a NullReferenceException. As a workaround, I just catch the exception and disable the tool. Is there a better way to determine if the user is no longer on a 'MapView' tab?? ActiveMapViewChangedEvent.Subscribe((args) =>
{
try
{
var lyr = MapView.Active.Map.FindLayers("SDEDB1.GISADMIN.ADDR_Durham").FirstOrDefault();
if (lyr == null)
FrameworkApplication.State.Deactivate(StateID);
else
FrameworkApplication.State.Activate(StateID);
}
catch (NullReferenceException)
{
FrameworkApplication.State.Deactivate(StateID);
}
});
... View more
04-12-2018
08:20 AM
|
0
|
3
|
1783
|
|
POST
|
Hi, So the desktops in question had ArcPro re-installed and now all is fine. Not quite sure what our IT department did differently, but the tools now work.
... View more
04-12-2018
06:46 AM
|
0
|
0
|
806
|
|
POST
|
Hi Uma, Thanks for checking into that. Seems to be that my addrWindow.Show() being within the QueuedTask.Run is what is causing the problem. I have changed it, so now it is like this: async protected override void OnClick()
{
await QueuedTask.Run(() =>
{
//some logic here
});
AddressWindow addrWindow = new AddressWindow();
addrWindow.Show();
} Thanks!
... View more
04-12-2018
06:15 AM
|
0
|
1
|
1039
|
|
POST
|
Hi, I'm following the SDK community samples and opening up a Window (styled as a ProWindow) from the click event of a button. The Window opens fine, and is in the esri style, but the cursor only displays on the form as a 'wait' cursor. Does anyone know what might be happening? My code is fairly simple. To open the Window: To style my Window: <controls:ProWindow x:Class="AddressPointSelector_ArcPro.AddressWindow"
xmlns:controls="clr-namespace:ArcGIS.Desktop.Framework.Controls;assembly=ArcGIS.Desktop.Framework"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
mc:Ignorable="d"
Title="Address Tool"
d:DesignHeight="300" d:DesignWidth="300">
<controls:ProWindow.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<extensions:DesignOnlyResourceDictionary Source="pack://application:,,,/ArcGIS.Desktop.Framework;component\Themes\Default.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</controls:ProWindow.Resources>
<Grid>
</Grid>
</controls:ProWindow> Thanks!
... View more
04-11-2018
12:43 PM
|
0
|
3
|
1382
|
|
POST
|
Hi, Is there somewhere I can find the details of all of the various item Templates that you can create for ArcPro in Visual Studio? I can find a URL that lists all of them, but it doesn't really provide any details about what each one should be used for (ie. the ArcGIS Pro Drop Handler ....what the heck is that??) and any specifics about them. Thanks!
... View more
04-11-2018
06:54 AM
|
0
|
1
|
578
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 08-18-2023 08:57 AM | |
| 1 | 04-19-2018 05:53 AM | |
| 1 | 04-13-2018 10:07 AM | |
| 1 | 04-13-2018 10:04 AM | |
| 1 | 04-13-2018 05:56 AM |
| Online Status |
Offline
|
| Date Last Visited |
02-20-2025
03:53 PM
|