News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

Output tab

Started by danielh, September 10, 2010, 03:02:03 AM

Previous topic - Next topic

danielh

Hi,

Dumb rookie question, I'm afraid.  I'd like to have my code's output appear in the output tab rather than the black console window thingy.  Is there an easy way to accomplish this?

Thanks,
Daniel

Stefan Pendl

If you create a console application the program will be run in the DOS console, since this is what a console application is created for.

There will be no PellesC IDE available, when running your program standalone.
---
Stefan

Proud member of the UltraDefrag Development Team

TimoVJL

#2
New idespawn.exe with dll is needed for that.

EDIT:
Add Tools menu Run command and run program with it.

Menu text: Run
Command: cmd.exe
Arguments: /k $(TargetPath)
Tick  Use Output tab


May the source be with you

AlexN

Quote from: danielh on September 10, 2010, 03:02:03 AM
Dumb rookie question, I'm afraid.  I'd like to have my code's output appear in the output tab rather than the black console window thingy.  Is there an easy way to accomplish this?

I don't know, if this will help you.

But you can register your program to the tools with Tools->Customize->Tools and use the button "Use Output Tab" to redirect the programs out to the output tab.
best regards
Alex ;)

danielh

Thanks very much folks.  Especially timovjl - that was exactly what I was looking for.