desktop-application

How to bundle a third party binary with Electron?

大憨熊 提交于 2019-12-06 01:48:19
问题 I am still new to the electron ecosystem and desktop development in general but what I wish to do is to interface with a third party, open source application that comes bundled in with my software. First, I am unsure on what the package options to distribute should be. Is it customary to have two downloads, one for users that already have the third party binary installed, and another one that includes it? Also how do I go about actually packaging, and installing the binary? Should this be an

HTTP request from a C# desktop application to a Siteminder-protected server

…衆ロ難τιáo~ 提交于 2019-12-05 13:51:26
问题 I have developed a C# desktop application which makes HTTPS requests to the customers' servers ( usually Documentum/SharePoint/Alfresco/NemakiWare/etc HTTPS-based servers ). Several customers have asked us to support their servers which are protected by CA SSO ( new name of Siteminder ). QUESTION: What do I need to do to allow my application to send HTTPS requests (and receive responses) with CA SSO-protected servers? I have developed NTLM-SSO support for our C# desktop application and it

Unable to checkin UserControl.xaml files in TFS. Receving error: TF10169

与世无争的帅哥 提交于 2019-12-05 12:41:42
Project Type in Visual Studio 2013 is Desktop Application. And I have added a user control in XAML format in that desktop application. I used some compatibility functions and libraries so that xaml control be able to integrated with simple desktop application. TFS is checking In other related files, but when moved xaml files from 'excluded' section to 'included' section in tfs pending changes window and check In. TFS donot checkin any file and give me following error: The following issues were encountered during check in: TF10169: Unsupported pending change attempted on team project folder $

How to use Python and HTML to build a desktop software?

二次信任 提交于 2019-12-05 10:19:48
Maybe my question is stupid but I still want to ask. I am always wondering whether I can use Python, HTML and Css to develop a desktop software. I know there are alrealy several good GUI frameworks like Qt, Tk and etc. But the various sources of HTML and JS frameworks are still attractive to me. I don't mean a software which is just like a web application where there is a frontend and Python acts as a server side language either. I mean use Python like other GUI frameworks. I can create widgets built by HTML and Css. Dose there any framework have this function? I know there is app.js for

Java desktop development framework similar to Android?

寵の児 提交于 2019-12-05 10:03:48
I've recently dived head-first into developing Android apps in Java. It's all very new to me as my experience is in web development with PHP. But I need to adapt pretty quickly to a desktop environment as well (i.e. Windows). To ease the learning curve a bit, are there any Java desktop development frameworks that are similar to the Android framework? When it comes to Desktop applications, what Java GUI and/or MVC framework(s), toolkits, and/or libraries would you recommend to someone whose only real Java/GUI experience is with Android? Notes While a single, unified framework providing GUI

Is JavaFX a choice for Dynamic GUI for desktop or standalone applications? [closed]

眉间皱痕 提交于 2019-12-05 08:36:10
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I want to make Dynamic UI for a desktop application. I am planning to make it in JavaFX. Is it a good choice? Second thing I want to know is that is it possible to have UI by JavaFx and behind the scene major work in done by pure java? I

SVG in Titanium Desktop?

岁酱吖の 提交于 2019-12-05 08:29:32
I'm running the 1.1.0 SDK of Titanium Desktop and only my SVG text elements are rendered properly. SVG methods such as getBBox() give error messages. The application works well outside the Titanium environment - that is: Chrome, Firefox, Safari. Any ideas on how to solve this? (What browser + version is really running inside Titanium??) Thanks. Edit: Example SVG code: <svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg" version="1.1"> <title>Example triangle01- simple example of a 'path'</title> <desc>A path that draws a triangle</desc> <rect x="1" y="1" width

Database engine for a desktop application in C#

喜夏-厌秋 提交于 2019-12-05 04:22:50
问题 I need a lightweight database engine for a desktop application. The application is not data centric, although it needs some persistent data. Which one would you use MS SQL Server express edition or SQLite? EDIT Is SQL Server Compact edition free? If it is the case, what about SQLite vs SQL Server Compact edition to develop this kind of application? 回答1: Definitely NOT Sql Server Express. That's a server class engine. You want an in-process engine. In that regard, SQLite is fine. So is Sql

Send SMS from desktop application

拈花ヽ惹草 提交于 2019-12-05 02:50:30
问题 How should I proceed? I found nothing useful googling it but some really expensive programs to connect a cell phone to the pc and use it to send the messages. I'm willing to pay for the service and the messages will be sent to Israel and US. I'm using C# but I'm willing to use any language. Cheers! 回答1: The easiest way to do it is with Twilio. You can get it set up in a matter of minutes. Check out my answer Sending SMS from asp.net website for an example program of just how easy it is to

Signing installer for windows app using electron builder

给你一囗甜甜゛ 提交于 2019-12-05 02:07:44
问题 I am using electron-builder for creating installer for my desktop app in windows by command build -w it cerates folder win-unpacked(for build) and win(for installer) here is my package.json { "name": "CoDesktopElectron", "version": "1.0.0", "description": "CoDesktopElectron", "homepage": "https://app.onepgr.com/", "author": "ankur", "private": true, scripts": { "postinstall": "install-app-deps", "start": "npm install && npm run compile && electron ./app", "compile": "rimraf app/out && tsc",