User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:graphics.h:showerrorbox

showerrorbox

Syntax of showerrorbox

#include "graphics.h"
void showerrorbox(const char* message=NULL);
 

Description of showerrorbox

The showerrorbox function is available in the winbgim implementation of
BGI graphics. You do not need to include conio.h; just include
graphics.h. The function opens a windows error message box with the
specified message (or a standard message if the message parameter is
NULL). The message box waits for the user to click on OK button before
showerrorbox returns.
  See also
bgiout
outtext
outtextxy
  Example
/* showerrorbox example */
#include "graphics.h"
 
int main(void)
{
   /* initialize graphics window at 400 x 300 */
   initwindow(400, 300);
 
   /* draw a line */
   line(0, 0, getmaxx(), getmaxy());
 
   /* display a sample error box */
   showerrorbox("Sample of an Error Box");
   closegraph();
   return 0;
}
 
 
 
 
==== Example of showerrorbox ====
<code c>
/* showerrorbox example */
#include "graphics.h"
 
int main(void)
{
   /* initialize graphics window at 400 x 300 */
   initwindow(400, 300);
 
   /* draw a line */
   line(0, 0, getmaxx(), getmaxy());
 
   /* display a sample error box */
   showerrorbox("Sample of an Error Box");
   closegraph();
   return 0;
}

See also

output of showerrorbox example

  no output of example at the moment
  do not hesitate and add it...  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/graphics.h/showerrorbox.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz