Questions tagged [command-window]

51 questions
1
vote
1 answer

force c++ program to show 'synchronized' output to MATLAB command window using dos()

I'm executing my c++ compiled program in MATLAB with dos('myprog.exe'). myprog produces some output that it is printed to the MATLAB command window only after myprog.exe finishes execution. Is there a way to force MATLAB print the output when it is…
niels
  • 760
  • 8
  • 25
1
vote
3 answers

How to get execution command window in c#

I execute a command from my C# App. It runs fine but sometimes I get errors. My problem is that I cannot see which is the error or any other text in the command window. It is just blank. Is there any way I can make the text show up in the …
asmgx
  • 7,328
  • 15
  • 82
  • 143
1
vote
3 answers

How to open multiple files in a single action in Visual Studio

I often use the "Command Window" in Visual Studio to quickly open a file by name, for instance by typing open main.c. However what doesn't seem to work is open *.xyz, the intent being to open any files in the solution with some extension xyz. Is…
DuckMaestro
  • 15,232
  • 11
  • 67
  • 85
1
vote
1 answer

SQL*PLUS - SET LINESIZE doesn't have any effect in my script while it's spooling

I'm using PL/SQL Developer version 11.0.6.1776 The following script, creates a folder named 'test' on the specified path and a subfolder within it, with the name of the table that is currently spooling to stored its metadata in that folder: set…
1
vote
3 answers

Prevent printing to command line in MATLAB

Before you answer, I'm not looking for the functionality of ; to suppress command line printing. I have a set of scripts which are not mine and I do not have the ability to change. However, in my scripts I make a call to these other scripts through…
zephyr
  • 2,182
  • 3
  • 29
  • 51
1
vote
2 answers

Format specifiers for VB.NET in Visual Studio in 2013

I've been trying to find a way to render \r\n as actual newlines in the immediate and command window in my VB.NET 4.5.1 application. I came across this question which teaches about the nq specifier, but it appears to apply only to C#. In VB.NET, nq…
oscilatingcretin
  • 10,457
  • 39
  • 119
  • 206
1
vote
2 answers

Can the Visual Studio (2010) Command Window handle "external tools" with project/solution relative paths?

I have been playing with the Command Window in Visual Studio (View->Other Windows->Command Window). It is great for several mouse-free scenarios. (The autocompleting file "Open" command rocks in a non-trivial solution.) That success got me thinking…
el2iot2
  • 6,428
  • 7
  • 38
  • 51
1
vote
0 answers

Open a console besides a GUI to show some updating information in MATLAB

I have a GUI that designed by GUIDE. I want a console that will open besides this GUI (likes MATLAB command window) to show some updating information (updating and adding to it every 4 seconds without removing previous information). My Matlab…
Eghbal
  • 3,892
  • 13
  • 51
  • 112
1
vote
1 answer

Using Two Textures: Output Window Doesn't Retain On Screen

This code initially uses one texture. I duplicated some functions to use two textures. There doesn't seem to be any errors but when I run I only see the black command window for a bit then it closes. Is there any additional line that I should…
1
vote
1 answer

MATLAB function open works in workspace, but not in function

I am trying to create a video file with MATLAB. Here is my function: function [vidObj] = createVideo(frames, frameRate, filename) %Create video object num_frames = size(frames,2); vidObj = VideoWriter(filename); vidObj.Quality = 100; vidObj =…
Sterling
  • 3,835
  • 14
  • 48
  • 73
1
vote
1 answer

Can Visual Studio Command Window 2010 commands be executed in a script

I've just learned about Visual Studio 2010's Command Window, and am hoping it might be able to automate a short set of tedious steps. Is it possible to put several Command Window commands into a file and execute them? The scenario I have in mind…
Clare Macrae
  • 3,670
  • 2
  • 31
  • 45
1
vote
3 answers

How to prevent command window from closing when a program finishes executing

I made a small program in Python (.py) and converted it into a Windows executable file (.exe) using Py2exe. It asks for a string and then outputs a string -- very simple! -- and works flawlessly in Python. However, when the exe file finishes…
1
vote
0 answers

Command window flashing only when os.system is being used

I have a weird issue on a friends machine where when they run my script, it only flashes the command window when it hits a line that does something with os.system. It seems to not show the command window at all otherwise. Not showing is fine, but my…
0
votes
0 answers

Add python environment command prompt to Windows 10 Start menu under Anaconda

I recently got a new laptop at work. 2 years ago on my old laptop I set up some python environments through the command prompt opened in Anaconda and somehow each of those environments was put into my start menu as subheadings under Anaconda,…
Catherine
  • 119
  • 1
  • 8
0
votes
1 answer

How do I get dbms_output to show when running a script in command window in PL/SQL Developer?

This is a follow up question to this I am trying to run the following script in PL/SQL Developer in a Command Window: DECLARE ncount NUMBER; vwhere VARCHAR2(1000) := ''; vselect VARCHAR2(1000) := ' select count(1) from '; vsearchstr…
gib65
  • 1,709
  • 3
  • 24
  • 58