like y doesnt this code work:
////////////////////////////////////////////////////////////////////
#include <acknex.h>
#include <default.c>


STRING* time_hour_str = " ";


var test = inkey(time_hour_str);


TEXT* time_txt =
{
pos_x = 300;
pos_y = 250;
string (time_hour_str);
flags = VISIBLE;
}

function main()
{
video_mode = 7; // create a program window of 800x600 pixels
screen_color.blue = 150; // and make its background dark blue
calc_time();



}


HI