WIN_IO

A simple set of packages for graphical input and output


Universidad de Cantabria, SPAIN

Author: Michael Gonzalez  mgh@unican.es

Win_IO is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation.
 

1. Message_Window Example


File : test_message_window.adb


with Ada.Text_IO; use Ada.Text_IO;
with Message_Windows;
use Message_Windows;

procedure Test_Message_Window is
   Display : Message_Window_Type:=Message_Window("Test for Message Window");

begin
   Wait(Display);
   Put_Line("Test Completed");
end Test_Message_Window;