Questions tagged as 'prompt'

1
answer

Create bat to move files returned by findstr

Good afternoon everyone! I have encountered a problem every day where, I have several .xml to open and check if they have tags: < desc_produto >Riscos< /desc_Produto >" or < tp_mov>P01< /tp_mov> To do this, I...
asked by 24.04.2017 / 17:09
2
answers

Increase Performance Bat

I currently have a .bat that runs copying network files from one server to another. This made a lot of work easier for me that was done manually, but I noticed that by removing some .bat flourishes, it improved its execution performance on file...
asked by 12.05.2017 / 21:30
0
answers

How to execute (interact) commands prompt by Java? (Linux and Windows)

Hey guys. I need to develop a java program that runs commands like it was in promt / cmd, and somehow even interact with it. Do you know when we run some kind of command at the prompt and it gives an answer or asks for a password? Exactly this,...
asked by 29.09.2017 / 20:49
0
answers

Prompt on android lollipop with misaligned button

I have a problem with a prompt, in Android Kitkat (19) or previous version looks like this: Butinlollipopornewerversionsitismisaligned: Hereisthelistenercodethatmakesthiscode:finalAlertDialogdialog=builder.create();dialog.setOnShowListener(n...
asked by 06.11.2015 / 19:27
0
answers

How to prevent the console from running twice?

I have had this same problem on my other computers, and even on other IDE's as well. The following happens: When I finish writing my C code and executes it, a prompt appears for about 5 seconds. I can test the code within this time limit, h...
asked by 19.04.2015 / 02:25
2
answers

Set position Cursor Windows & Linux with same code

I'm developing a cross-platform application. For this I would like to develop with as few as possible "ifdefs", and what I need to do is basically a 32 x 16 character fixed screen. But for me to have performance, I have the need to just re...
asked by 20.08.2015 / 23:00
2
answers

Does the prompt prompt change the value?

Making a simple code to calculate how much I need to reach my college average. The problem that I can not get the values from the keyboard, I use the prompt command but the result does not stay the same. I put this code and it calculates...
asked by 16.12.2018 / 05:50
1
answer

Delete certmgr certificate from the command prompt

I need to exclude certain certificates from my computer so they do not disturb my vba automation system, but I did not find anything that could give me a glimpse of how to do this by programming or by cmd line. I am currently using VBA to perfor...
asked by 02.02.2018 / 19:28
2
answers

Network Configuration via prompt

How do I disable the "Use automatic configuration script" checkboxes and also "Do not use proxy server for local addresses"? To disable the proxy, I am using the command: "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /...
asked by 26.09.2017 / 16:05
3
answers

Prompt in javascript does not redirect

I have the following script on a page: <script> function fnPage(){ var page = prompt("Para quel página deseja ir?"); if (page != null) { location.href="http://" + page; } } </script> W...
asked by 10.02.2017 / 13:31