Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am new to arcgis. I have given the task to create .net desktop application that can perform specific arcgis functions like digitization, interpolation etc. So my questions are
Can i develop application in .net to perform specific functionalities of arcGis like interpolation etc.
If yes how much time will be required for intermediate level developer ?
Can i develop application in .net to perform specific functionalities of arcGis like interpolation etc.
Yes, you can. ARCGIS does provide tools that be used in winform application. But, first of all make sure that your organization will purchase license for ARCGIS. It is not free and quite expensive.
how much time will be required for intermediate level developer
This involves GIS skills along with application development skills. And as none of us know your skill set, therefore we cannot tell that.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I want to build my first chatbot using Microsoft Bot Framework. Now I have 2 options, either to use C#.net or Node.Js. Please guide me which would be a better option for me as a beginner in chatbot development and also why.
Thanks in advance.
It depends. For me there's no "better" option between the two. I would suggest use the language that you're very comfortable with.
But if you're not familiar with those languages, you could probably check this link to get you started with developing in Chat Bots
This is a decision you need to make it for yourself. Essentially, what you're asking is "which one is better, C# or Node?" which is practically comparing oranges to planets. Since Microsoft Bot Framework SDK is both available on .NET and Node JS, you should be making that decision.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I would like to know if there is a way to automatically parallelize a .Net application in order to use multi core CPU.
I know if it's possible to do it with some coding, but, is there a tools or a "runtime?" that is able to run an application in parallel (multi threading) without do manually ?
Thanks a lot :)
No - there is no way to parallelize a .net application. The programmer must build for multi-threaded/parallel from the ground up, and certain application areas will not be suited to parallelization.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I work for a small Point of Sale Company, and we are working on a in-house tool to make our lives easier when it comes to ticketing and troubleshooting. Part of my task in this tool is to write a 'softphone' in C# WPF that we can use to accept incoming and make ongoing calls with.
We currently use OnSIP as our SIP provider, and are looking to build custom software to essentially allow us to auto-generate support tickets based on the phone number of the incoming call. In addition we will need call transferring, recording, hold/wait, etc.
The question that seems to be causing me the most trouble is really where to begin on something like this. Thoughts?
I'm presuming this is a desktop application?
Lookup pjsip.org, it's a portable C library which is very well proven. It will allow you to do all that you are asking, although it'll take you some time to write the wrapper code - you can find examples on the internet, however we have written a wrapper ourselves which I'll check on as we had intended open sourcing it. This is because when we did this last year, the examples just didn't work too well :-)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to do somthing like this.Let's say I have a satellite image. I want to classify this into several vegetation indices. but I wantto do this programmatically. without involving any user or without opening ArcGIS. I know we can write script in python in arcgis to do some tasks. Like wise is there any way to call these ArcGIS functionalities within a normal .net application.
Please help me
The ArcGIS Runtime SDK for .NET (Windows Desktop) enables developers to create applications with high-quality interactive mapping, queries, geocoding, routing, data editing and advanced geographic analysis.
From here:
https://developers.arcgis.com/net/desktop/api-reference/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am a novice software developer and I am building desktop applications using C#. I want to make my applications expire and generate a license file to activate the application after it expires. Meaning I want to include a time bomb to all my applications and detonate it by using the generated license file.
There are many ways to achieve this - the .NET-Way is described here in this MSDN-Article:
How to: License Components and Controls
If you are developing a windows 8 app and you want to find out a way to create a trial version of your app then I think the following article does a pretty good job of explaining how to do it.
http://msdn.microsoft.com/en-us/library/windows/apps/hh694065.aspx