Questions tagged as 'runtime'

2
answers

Deleting an editText while modifying another

I'm starting my studies on Android now, and I'm doing some testing. I have two AutoComplitTextView fields, the two shows an id and a description. X1 and X2 (fictitious names). The X2 list is filtered by choosing X1. Is there any way that if t...
asked by 01.07.2016 / 14:43
2
answers

How to capture information from a 64-bit process that is running?

Well, I need help in capturing information from a running process. I can accomplish this task by accessing mainmodule of 32-bit processes, however, I can not do the same with 64-bit processes. I do not know if the reason is I'm trying to...
asked by 01.07.2016 / 08:02
1
answer

Find out if a point is inside a circle in a Cartesian plane

I was doing the Target Shooting task of the 2013 Olympiad of Computing (OBI) level 2, which can be found here , and I was able to do without great difficulties. The task was to figure out how many points a person would make by shooting at a t...
asked by 24.04.2016 / 23:19
0
answers

How to insert runtime permission into a webview that gets the user's location?

So I'm starting to create a webview and the site I'm basing on has an option to get the coordinates of a certain location, on the site this works perfectly, but when I put in APP it opens the Google maps (which is what I want) only that it...
asked by 03.12.2017 / 04:22
1
answer

Chained list without head, problem in intersection function

I am doing a series of functions with list headless, but a function called Intersection is not working correctly, the problem compiles without errors but this function specifically does not run and the program presents runtime error, in that fun...
asked by 26.10.2016 / 17:08
1
answer

Problem in defining onClick in runtime with Pascal (Delphi / Lazarus)

I need to use procedure ClicaItem(Sender: TObject); in a OnClick created at run time by calling procedure CriaItem(nome:String); . However, in all my attempts, I could not assign item.OnClick to procedure ClicaIte...
asked by 27.03.2016 / 08:03
1
answer

How to cancel the execution of a function in C # [closed]

I'm developing a desktop application in C # WPF where there is a function responsible for sending email EnviarEmail() , when this function is executed it takes a certain amount of time for it to run completely. And when it is being execute...
asked by 05.07.2017 / 15:49
1
answer

How to create an integer variable in hexadecimal?

I'm trying to create an integer variable in hexadecimal, but an error occurs saying it is not in the correct format. [DllImport("user32.dll")] public static extern short GetKeyState(int vKey); static void Main(string[] args) { string[] lin...
asked by 06.04.2017 / 12:31
0
answers

Develop Plugin for Windows Desktop

I am developing a cordova plugin for windows desktop and I need to use some native functions, I will have to use Windows Runtime. I started by following a tutorial and I have the following structure: - /src - /EchoRuntime - /bin - /obj...
asked by 16.10.2017 / 17:55
1
answer

Java Runtime.getRuntime (). exec () Does not execute commands with space

I have a client socket and a server, the client sends a command to the server to run, but when the command has spaces, the server throws an exception: java.io.IOException: invalid null character in command Server Code: import java.io.*; imp...
asked by 30.11.2016 / 17:10