Hi I'm developing a web application for my company. I'm not really sure whether ASP.NET web application can support to display out the display for 4 different HTML ports which installed into the CPU.
Basically the .NET application is running on web but I need idea on how to configure each image to specific HDMI port which installed in the CPU itself.
Related
I'm currently building a web interface that lists a load of data for data entry to peruse through. The website doesn't actually update our back end though. We have a vendor supported custom built Windows application which we use for our data entry.
This web interface is replacing some excel lists + VB. The Excel version of this system is able to pass some data to an already open instance of a custom Windows application and bring into the app a certain ID that's clicked on in Excel, so I'm trying to replicate this from the browser.
So far I'm able to get close by using this JavaScript within IE:
<script type="text/javascript" language="javascript">
function RunFile() {
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(pathToApp, 1, false);
}
RunFile()
</script>
But this method I believe tries to open a new instance of the Windows Application. Not access the currently open version. I think looking at the VB code I need to use the windows "sendKeys" method.
It's not something I've ever done before, or needed to do. So It's very new to me.
Is it possible to pass data to an already open Windows app via a browser?
Are there any other options available, I was thinking maybe Electron could help here maybe? Or am I wrong and fighting a losing battle on this front?
Scenario sounds really complex but maybe you should check if this windows app can be integrated with Office Add-Ins.
From their site:
What can an Office Add-in do?
An Office Add-in can do almost anything a webpage can do inside the browser, such as the following:
Extend Office native UI by creating custom ribbon buttons and tabs.
Provide an interactive UI and custom logic through HTML and
JavaScript.
Use JavaScript frameworks such as jQuery, Angular, and
many others.
Connect to REST endpoints and web services via HTTP and
AJAX.
Run server-side code or logic, if the page is implemented using
a server-side scripting language such as ASP or PHP.
In addition,
Office Add-ins can interact with the Office application and an add-in
user's content through a JavaScript API that the Office Add-ins
infrastructure provides.
Web app
The minimal version of a compliant web app is a static HTML webpage. The page can be hosted on any web server, or web hosting service, such as Microsoft Azure. You can host your web app on the service that you choose.
The most basic Office Add-in consists of a static HTML page that is displayed inside an Office application, but doesn't interact with either the Office document or any other Internet resource. However, because it is a web application, you can use any technologies, both client and server side, that your hosting provider supports (such as ASP.net, PHP, or Node.js). To interact with Office clients and documents, you can use the office.js JavaScript API that we provide.
I've been working on a web app with angular and asp.net web api in Visual Studio 2015.
When I run the solution in VS2015, I get two tabs in chrome - one for my angular client side application and one for the asp.net web api (which was automatically generated when I started the project).
These two run on different ports of localhost. I have successfully deployed the project to appharbor, however, when I click on 'go to my application',
the web pages for the asp.net web api are displayed, and I can't seem to access the ones for my client side application.
How can I change this so that the host url displays my client side application?
Thanks!
I found the solution. It was a simple thing really. AppHarbor can only deploy one website per application and was deploying my asp.net api automatically generated website instead of my angular one. The solution was to copy my solution file, rename it 'AppHarbor.sln', and then remove the API project.
Steps outlined here:
https://blog.appharbor.com/2012/06/25/deploying-solutions-with-multiple-web-projects-on-appharbor
I created a very simple application with javascript and html5 and php now I want to use this application as an android application please can any one know how can I connect android studio to wampserver and display my web pages as android pages
Thanks for all
I have windows application in c#.that is installed for client . I need run that window application from client side when user button click in asp.net web application
Explanation
I have task that scan hard copy from scanner . I developed web application in asp.net c#. I have search in Google to do this so many peoples are saying that is not possible due to permissions. so I developed windows application when I run that window application(c#) it scan the hard copy from scanner this window application run in background so I need to run this window application. when user button click in asp.net web application
You cannot run applications from a website on client's machine due to security & permissions.
However, your website probably can communicate with the scanner. Check this detailed answer.
While you cannot run the application from the browser, there is another option, if your application is already running in the background. Then you can make it listen to some local port and then ask the browser to redirect to the URL (consisting of localhost and that port, e.g. http://localhost:34554), so the application would receive an HTTP request and will know it needs to become active / show its window / etc. Using this technique, you could even pass some parameters to your application using query params in the URL.
Another option that allows you kinda run an application from the browser is Microsoft ClickOnce - it is just a simplified way of installing and running an application without the need for the user to download and manually run the installer.
I'm trying to learn Html5-based web application development on android OS. But what confuses me is that can Web APP completely invoke android core feature(such as retriving contacts, sending sms, using various sensors, modifying system settings, etc.), is it possible? Is there javascript framework or some other technology that can do it.
No, that is not possible as it would a serious security problem.