Im trying to change the alias name of a ShapeFile in ArcCatalog tree.
Im new in ArcGIS 10.1 and i Want to change alias Name of ShapeFile.
But the alias textfiled is not enabel to write any word in it ...
have any one any idea about it ??
how to make the alias editext as enable ???
Thank you in advance , Fadel.
As I know, Alias Name are enabled only for Feature Classes of a Geodatabase.
Try to create a File Geodatabase in ArcCatalog and import your shapefile in it. Then, in the Feature Class Properties window (like Shapefile Properties window) you can edit alias name.
Related
How do I create a folder on my list? I can create a file but I can't define a type.
Should I define a type column? But how can I create a column with a type characteristic?
I am using Graph Explorer to build and want to use PHP after for my Laravel website.
Thank you for your answers !
After testing and testing, i find my request.
If it can help someone :
POST https://graph.microsoft.com/v1.0/sites/{site-id}/drive/items/{item-id}/children
site-id is composed about two ID, site-id and subsite-id.
To find your site-id :
GET https://graph.microsoft.com/v1.0/sites/root
My subsite-id is my groupsite id, you can find him on :
GET https://graph.microsoft.com/v1.0/sites/{sites-id}/lists?search=doc
After i did a request to find {item-id} :
GET https://graph.microsoft.com/v1.0/sites/{site-id}/drive/root:/test
And to end :
POST https://graph.microsoft.com/v1.0/sites/{site-id}/drive/items/{item-id}/children
You can create a new list with a document library as a template. Then you will have a new drive in the root of your site where you can create a folder.
I used this code in a xml view in ideas_app module:
groups="group_vote_user"
but i got this error "External ID must be fully qualified"
Is it really need module name like groups="ideas_app.group_vote_user" even this view in same module with group_vote_user security (in module ideas_app)?
Is there any ways to not declare module name or change with this.group_vote_user like that?
I think, you need to check sequence of files in manifest file. For example, security.xml should be come first and then others view files.
I am not sure if there is a way to change it. But as per standards, we need to follow standard way like "module_name.xml_ID"
Is it possible to specify AMI Name when creating image using ImportImage API?
It is generated automatically like "import-ami-abcd1234". But I would like to give more reasonable name.
ImportImageRequest does not have "Name" parameter:
http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/services/ec2/model/ImportImageRequest.html
While CreateImageRequest that creates AMI from an instance does have it.
CreateImageRequest createImageRequest = new CreateImageRequest();
createImageRequest.withInstanceId("i-xxxxxxxxxxxxxxxxx")
.withName("myAMIName")
.withDescription("this is my ami");
Or is it possible to modify the AMI Name after the ImportImage ?
Thanks in advance.
The AMI Name could not be changed. You can:
You can do additional step to copy the image after it was imported. Using AWS Java SDK to set the name when you copy the image.
Then delete the imported image
I found something different when I create a new ObjectProperty. This is my ontology.
This ObjectProperty hasSymptom is been created
But now when I create new ObjectProperty hasObject
I founded when I create new Object Property. The tag name will different
1)rdf:about="http://www.semanticweb.org/pllab/ontologies/2013/11/untitled-ontology-2#"hasSymptom/>
2)rdf:about="&ont;hasObject"
Why this happend? Thanks
Obviously, as I already told you, you have changed something in the settings of Protege - because the default namespace for the creation of new entities doesn't change by chance.
File -> Preferences -> New Entities tab -> Click on Active ontology IRI (or change the Specified IRI to the one that you want)
By the way, you should use your own namespace and not that one that is auto-generated by Protege.
I want the exported function namelist (by name and by ordinal) from a DLL. I got the function names(exported by name) using export directory table,but I can't retrieve the exported function list, which exported by ordinals.
Please help me to retrieve it. I also tried .lib of that dll, there is also, displays NONAME. thanks in advance to legends
If You know dll name ,You can view through many tools (pe explorer,CFF Explorer),Here all exported function names are viewable with ordinal .Another one way from microsoft (dumpbin.exe) its a command line tool ..its also list out all exported fn names
If you have mingw32 installed, simply run
nm.exe your_dll
Where your_dll is the dll you want to to get the ordinals and exports of.
nm.exe should be in the bin directory of your mingw32 installation.