desktop-application

Writing custom code for PowerPoint using leap motion?

拥有回忆 提交于 2019-11-27 09:05:55
I am trying to make a gesture based PowerPoint slideshow . JavaScript would certainly not work here as I want my slideshow to work when that particular PowerPoint file (.ppt) is opened for windows. I googled, posted a question on the Leap Motion forum, but in vain. My primary concerns are: I am unsure about what to use here. Are there some SDKs for this purpose? In simple words, how do I write some custom code for a PowerPoint file on our system? Leap Motion apps can be developed with C#, C++, Python, JavaScript, Java, Objective-C Integrating the code for Leap Motion device with the above code

Change system z-order of BrowserWindow in electron, possible?

为君一笑 提交于 2019-11-27 07:25:32
问题 I need to control main window z-order so to say. Always on top is not my case. I want to put my window behind all others and above desktop. Is it possible? Is there analogue to C++ SetWindowPos function? Or maybe some workaround? 回答1: If it's not something you can accomplish with parent/child windows then you could call SetWindowPos() via node-ffi (or write a native Node module/addon). To get the HWND for a BrowserWindow call getNativeWindowHandle(). I have no idea how you'd do this natively

Desktop API is not supported on the current platform

∥☆過路亽.° 提交于 2019-11-27 07:00:24
I have encountered this error: java.lang.UnsupportedOperationException: Desktop API is not supported on the current platform I would open a file from my java application. I use this method: Desktop.getDesktop().open(new File(report.html")); How can i solve this problem? MightyPork Basically, the problem is that Java Desktop integration doesn't work well on Linux. It was designed to work good with Windows; something works on other systems, but nobody really cared to add proper support for those. Even if you install the required 'gnome libraries', the results will be poor. I've faced the very

Crystal Report is not opening for 64 bit machines

大兔子大兔子 提交于 2019-11-27 06:47:56
问题 My reports work fine on a 32 bit machine but won't open on 64 bit. 64 bit is required because loading data on one of the screen causes a memory issue - so it can't work on 32 bit. Windows 10 64 bit Installed Crystal Reports Tried installing 13.0.20(latest) and restarting PC but didn't work. Application Target Framework 4.6.2 (i even tried it on 4.0 but same error) Using Visual Studio 2017 Community (tried VS 2015) Platform x64 (not AnyCPU) Reports are being generated by passing DataTable, no

Create Windows Installer for Java Programs

这一生的挚爱 提交于 2019-11-27 06:33:40
I'm a Java beginner. I already created a simple GUI application that display will "hello world" label. But, how can I create an installer from .java or .jar for windows. Let's say that I have created a useful application and want to share it with my friends to install it in their PC without they need to know what is JRE, or how to download JRE. Andrew Thompson Deploy the app. from a web site using Java Web Start . Ensure the user has the minimum Java using deployJava.js (linked from the JWS info page). Sorantis From here : Open Source Installers Generators in Java IzPack IzPack is an

Jtable Row Span and Column Span

时间秒杀一切 提交于 2019-11-27 06:11:59
问题 Is there any way to implement row span and colspan in JTable like html table. 回答1: Here is a really old example. I don't know if it still works: http://www.java2s.com/Code/Java/Swing-Components/MultiSpanCellTableExample.htm 来源: https://stackoverflow.com/questions/6199392/jtable-row-span-and-column-span

Packaging a node.js webapp as a normal desktop app [closed]

荒凉一梦 提交于 2019-11-27 05:50:22
I've searched a bit but can't find an existing tool for this. I have a node.js web server that is designed to run on your own computer that does some snazzy things for you. It would be pretty aswesome if I could double click MySnazzyThing.app instead of installing nodejs, and npm and running node mysnazzyapp.js on the command line. The .app executable would spool up the node server and open a simple native webkit window which would show what would normally be on localhost:3000 if I were running on the command line. This native app could then, say, be distributed through the mac app store. And

“Automatic updates” for Java (desktop) application?

做~自己de王妃 提交于 2019-11-27 04:13:24
What system do you recommend for implementing "automatic updates" for some java (desktop) application? I'd also want to have module/plugin installation and update. Think Eclipse and Firefox. I'm aware of Eclipse RCP's OSGi stuff, and also NetBeans RCP has something here. Do one have to buy wholly into their respective RCP stuff to use their module and automatic update systems? Are there other options? Ma99uS Have you looked at the Java Web Start ? It checks for updated module on the server and downloads it only if required otherwise things are cached locally on the client PC and starts from

Integrating JavaFX 2.0 WebView into a Swing Java SE 6 Application

混江龙づ霸主 提交于 2019-11-27 04:12:19
I was looking for a way to integrate a Web-Browser-Component in an existing Swing-Application and found WebView for Java FX 2.0. Furthermore I found a blog post on java.net showing how to integrate a Java FX component into a Swing Application . So I guess it might be doable, but I haven't tried yet. I'm curious, do you think this is a good approach? Are there any better solutions? Is it even doable? Is maybe something prebundled out there? The motivation is: I want to integrate some WebBrowser- whatever into an existing Swing-Application, the long-term goal being to get rid of the whole Java

UWP on desktop closed by top X button - no event

匆匆过客 提交于 2019-11-27 03:56:15
问题 An UWP app which runs on desktop can be closed from the top X button but it doesn't have any event for it. It is known that on phones and tablets an app should rely on Suspending event, no matter how it's triggered and then the app should rely on ApplicationExecutionState. However, here is a (maybe) common scenario: on phones the Suspending event suffice and in case a Voip call is going on it will be operated by OS after the app is suspended. On desktop the close button is expected, by user,