How to create a browser plug-in using C#? [closed] - c#

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 3 years ago.
Improve this question
how to create a browser plug in using C#? (something like Flash Player or Unity3d)

This cannot be done using C# only.
WebKit is C++-based, so you'd need at least a C++ wrapper in order to let the browser communicate with your code. Using a mixed-mode C++ DLL that talks to WebKit on one side and to your C# code on the other side should be considered.
The WebKit site does not contain much docs (don't want to criticize, but I couldn't find much there when working with Chromium). Only Apple docs explain plug-ins, but it looks very Apple-oriented. Sorry, not very helpful.

Related

how to develop UI for desktop application using TELERIK [closed]

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 6 years ago.
Improve this question
i want my interface to look more elegant though professional and i want to make it good as web/android UI's. But how do i do it? I have heard about TELERIK UI. but i have no idea about how to use it. I have downloaded it and initialised it but do not know what and how to do next. any help would be really appreciated.Thanks.
You can start here
http://www.telerik.com/winforms/winforms-guide
http://www.telerik.com/videos/wpf
If you are not super attached to Telerik you can also look at Electron for native desktop apps (as it should have slightly easier learning curve):
http://electron.atom.io/

How to call ArcGIS functionalities within a .net application? [closed]

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/

How does one implement a c++ wrapper into C# [closed]

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 working on a project where I need to use a wrapper written in C++ to transfer messages across servers through c# code. The client applications are written in c#, but the message bus that I have to use doesn't work directly with .NET, so C++ wrapper to the rescue.
I hope that this makes sense, and any help would be great. Thanks
You can call C++ contained in a dll from C# using Platform Invoke. http://msdn.microsoft.com/en-us/library/aa288468%28v=vs.71%29.aspx. In this case it is actually the C# code wrapping the C++ code.

How to implement MS-FSSHTTP for editing Word with WOPI host on C# and WOPI client is OWA [closed]

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 implementing MS-WOPI host with MS-WOPI client being Office Web Apps. I want to provide Word editing functionality and need to implement MS-FSSHTTP protocol.
I read the documentation http://msdn.microsoft.com/en-us/library/dd943623(v=office.12).aspx and
I also tried to fined some examples, but didn't get the success.
Could someone provide a simple example of MS-FSSHTTP implementation?
Here is a sample implementation using CobaltCore. Pretty much a combination of my answers about WOPI/FSSHTTP on this website in one project.
https://github.com/thebitllc/WopiBasicEditor
I think you're asking for the impossible. There is no such thing as a simple fsshttp server. Look at the videos on MSDN from conferences where they've discussed it. The fsshttp team estimates it will take over a year to properly build out a protocol server. It is not a project for the faint of heart.

HTML5 and JS front end with c# backend [closed]

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 9 years ago.
Improve this question
Is it possible to have a dynamic website built using HTML5, CSS, JS and have it link to a backend using c#?
Am new to the whole microsoft side of development (coming from a php background) and haven't a clue.
thinking in terms of medium to enterprise applications.
thanks
Yes, use asp.net mvc...This is what you want: http://www.asp.net/mvc/mvc4
Here is a bunch of good video tutorials: http://www.asp.net/mvc/videos/pluralsight-building-applications-with-aspnet-mvc-4
Yes. Although I'd recommend looking at things like Angular.js (its what Gmail uses) to provide the best experience on the front-end. The backend can still be C# either ASP.NET[MVC] or WebAPI.

Categories

Resources