PS: I read that console application project has not display output.....:S
Thanks in advance
The console application can only output to the debugger console.
You can create an empty black bitmap of the same size as display, write text
there using Miscrosoft.SPOT.Bitap.DrawTextInRect. and then flush it to the
screen. This can give you, with the right font, pretty similar effect.
Jan
"Alcibiade" <nob...@libero.it> wrote in message
news:ueZfA$yfKHA...@TK2MSFTNGP05.phx.gbl...
using System.Threading;
using Microsoft.SPOT;
using System;
using Microsoft.SPOT.Presentation;
using Microsoft.SPOT.Presentation.Media;
using Microsoft.SPOT.Hardware;
using System.Text;
using GHIElectronics.System.IO;
using GHIElectronics.System;
using GHIElectronics.Hardware;
using GHIElectronics.System.SystemDevices;
Bitmap LCD = new Bitmap(SystemMetrics.ScreenWidth,
SystemMetrics.ScreenHeight);
Font font = Resources.GetFont(Resources.FontResources.small);
LCD.DrawText(testo, font, Colors.Green, 0, 10);
LCD.Flush();
---------
"Jan Ku�era" <kuc...@lupacovka.cz> ha scritto nel messaggio
news:O$kecnzfK...@TK2MSFTNGP05.phx.gbl...