desktop-application

Front-End for MS Access migration? [closed]

血红的双手。 提交于 2020-01-10 07:16:48
问题 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 7 years ago . Background I work for a large organization which has thousands of MS Access applications floating around. I didn't write any of these

Is it possible to use an existing Applet within a JavaFX application (desktop)

筅森魡賤 提交于 2020-01-10 04:22:21
问题 I can't seem to find anything on this - other than it can't be embedded in a web view. I currently have an image viewing product which is accessed via an applet and controlled via JavaScript from an HTML page. I am investigating a client application using JavaFX and it would likely need to access that applet. I attempted to embed it into the WebView and that didn't work. Searching on this site stated that webview doesn't support plug in technology. This is to build an applet with Java FX -

Get Exact Monitor/Display/Screen Name

可紊 提交于 2020-01-06 23:41:52
问题 I have a program where user chooses destination monitor but I just can't get the real monitor name/model. I have already tried the following: Screen.AllScreens is of no use; WMI and Win32 EnumDisplayDevices both returns Generic PnP Monitor; Device Manager also shows Generic PnP Monitor... In explorer there are the actual names of monitors attached and in Everest, it shows even more depth in details... From where these 2 programs gets those information? The last option I ran into is to parse

Peer-to-Peer between desktop and mobile app

不羁岁月 提交于 2020-01-06 15:21:13
问题 Starting to build an app where we will have a desktop and a mobile client applications. These two apps will exchange messages/info on frequent basis. The idea is not to have any server/central entity for this communication. We want to send/receive messages without any server implementation. I googled on these and got peerjs.com, openpeer.org and google project apprtc. Peerjs and apprtc are kind of web based applications which are not in our kind of. But still it's not very clear on how this

Capture webBrowser control response

孤人 提交于 2020-01-06 14:50:33
问题 I am using the webbrowser control in C# for our desktop application to run a credit card through a gateway. Simply, I'm loading the page on the load of the form: public Form1() { InitializeComponent(); webBrowser1.Url = new Uri("https://paymentgateway.com/hosted.aspx?" + "Username=dddd" + "&Password=dddd" + "&MerchantKey=5159" + "&BillingAddress1=123 some street" + "&BillingCity=Somewhere" + "&BillingState=SC" + "&BillingZip=39399" + "&CustomerName=me" + "&Amount=392.00" + "&InvNum=123567" +

specifying Windows Version.Build

扶醉桌前 提交于 2020-01-06 08:37:10
问题 i have a problem with finding the correct form to tell my app to write a diferent thing in a text box according to windows build code is: Private Sub Main_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load Dim OSVer As Version = Environment.OSVersion.Version 'Windows 10 If OSVer.Build >= 10240 Then My.Forms.Main.WinVer.Text = "Detected Windows 10" End If 'Windows 8 / 8.1 If OSVer.Build <= 10000 And OSVer.Build >= 8000 Then My.Forms.Main.WinVer.Text = "Windows 8 / 8.1 are

adobe air with flex, file new, open and save for Desktop software program

醉酒当歌 提交于 2020-01-06 04:29:27
问题 I already have a headache from all the searching. I cannot believe this to be such a confusing topic as every software program we create must be able to save user input, right. Here is the problem: Novel writing software program Main window has tabnavigator with four navigatorcontent pages 1. characters, 2. worlds, 3. objects, 4. Editor Each navigatorcontent page has user input fields in the form of textinput component, textarea component, richtexteditor component, etc. problem 1: The user

Is it possible for a desktop application to get the website URL?

偶尔善良 提交于 2020-01-05 03:36:24
问题 I am developing a desktop application which has to notify the user if antivirus or other security software are disabled once the user opens a bank wabsite.The bank website url is known for the application. My application has to fire a notification window if the given bank site is going to be accessed from the user.I want the application to check which site (link) is opening by the user and if it is the predefined link the notification form should appear. Is something like this possible to be

Java Application vs. Java Desktop Application in Netbeans [duplicate]

我们两清 提交于 2020-01-04 14:14:18
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: Netbeans GUI editor generating its own incomprehensible code In Netbeans(older versions), there are two types of applications to choose from when you're starting a new project. Java Application and Java Desktop Application . What are the differences between these two types? EDIT : In newer versions of Netbeans, the Java Desktop Application is gone and only Java Application is available. Does that mean they have

NSParagraphStyle defaultParagraphStyle not having effect

大兔子大兔子 提交于 2020-01-04 09:29:08
问题 Trying to set the paragraph styles for an NSTextView. Am I doing something wrong here, or putting the code in the wrong place perhaps..? I have this code in the subclass of my NSTextView. This does not affect my text view in any way: class EditorTextView: NSTextView { override func drawRect(dirtyRect: NSRect) { super.drawRect(dirtyRect) // to do } override func awakeFromNib() { var parastyle:NSMutableParagraphStyle = NSMutableParagraphStyle() parastyle.lineSpacing = 20 self