Advertisement
ASP_Volume3 Complete Applications #49361

AOL Color Profile Generator V. 1.0

Over 50 people have viewed this and none voted. Come on. This lets you change the font color, backround color, font size, and font on your AOL profile. You put in your information such as Member Name, Location and then select your colors and font. It will generate your code. Please vote and leave comments, I worked hard.

AI

KI-Zusammenfassung: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Quellcode
original-source
Upload
#include <iostream>
#include <stdlib.h>
#include <windows.h>
using namespace std;
HANDLE hout = GetStdHandle(STD_OUTPUT_HANDLE);
int x=18; int y = 3;
void check()
 { 
  for(int a = 0;a <12;a++){ 
  for(int b = 0;b <8;b++){ 
  COORD coord = {x+a,y+b}; 
  SetConsoleCursorPosition(hout,coord);
  if ((a==0||a==1||a==2||a==3||a==4||a==5)&&(b==0||b==1||b==2||b==3))
  {
    SetConsoleTextAttribute(hout,119);
    cout<<char(219);
  }
  
  if ((a==6||a==7||a==8||a==9||a==10||a==11)&&(b==4||b==5||b==6||b==7))
  {
    SetConsoleTextAttribute(hout,119);
    cout<<char(219);
  }
  else 
  {
  SetConsoleTextAttribute(hout,85);
  cout<<char(219);
  }
 } 
 }
  }
int main()
   {
COORD coord = {84,40};
SMALL_RECT rec = {0, 0, 0, 0};
SetConsoleScreenBufferSize(hout, coord);
rec.Right = coord.X -1;
rec.Bottom = coord.Y -1; 
SetConsoleWindowInfo(hout,TRUE,&rec);
SetConsoleTitle("Check Image");
for (int i=0; i<16; i++){
check(); 
y+=8;
if(y > 27)
  {
  y = 3;
  x += 12;
 }
 }
COORD coord1 = {27,37};
SetConsoleCursorPosition(hout, coord1);
SetConsoleTextAttribute(hout,9); 
system("PAUSE");	
return 0;
}
Originalkommentare (3)
Wiederhergestellt von der Wayback Machine