Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » Konsolenanwendung mit festgelegter größe starten

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
03.03.2007, 23:06 Uhr
~micke
Gast


hallo,

ist es möglich ein Konsolenprogramm mit festgelegter größe zu starten?
Wenn ja wie?

schon mal danke im voraus
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
03.03.2007, 23:36 Uhr
RedEagle



ja, gibt es...
Allerdings weiß ich den namen der Funktion nicht mehr...

Irgendwas mit "Console" und "Buffer" und "Size"...
einfach mal in der MSDN suchen...
--
MFG RedEagle
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
04.03.2007, 00:24 Uhr
CppProgrammer




C++:
BOOL SetConsolePos(SHORT Bottom, SHORT Top, SHORT Left, SHORT Right)
{
    SMALL_RECT Rect;
    Rect.Bottom = Bottom;
    Rect.Top = Top;
    Rect.Left = Left;
    Rect.Right = Right;
    return SetConsoleWindowInfo(GetStdHandle(STD_OUTPUT_HANDLE), TRUE, &Rect);
}


Sollte so in der Art funktionieren.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
04.03.2007, 00:58 Uhr
RedEagle




C++:
  void setscreensize(SHORT cols, SHORT lines)
  {
   COORD size = {cols,lines};
   SetConsoleScreenBufferSize(GetStdHandle(STD_OUTPUT_HANDLE), size);

   return;
  }

--
MFG RedEagle
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
04.03.2007, 11:24 Uhr
~micke
Gast


Danke
werds gleich miteinbaun
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: