From: Patrick Jarjoui

Subject: CC: M. Mhamed Itmi (INSA ROUEN FRANCE) how can i use clim package properly on allegro cl 5.0 on NT

Date: 1999-3-10 12:17

I'm using Allegro CL with IDE 5.0 on Windows NT

I tried the simple exemple in clim 2 user guide :

;;;;;;;;
(in-package :clim-user)

(define-application-frame test ()

()

(:panes

(display :application))

(:layouts

(defaults display)))

(define-test-command (com-quit :menu t) ()

(frame-exit *application-frame*))

(defvar *test-frame* nil)

(defun test ()

(let ((frame (or *test-frame*

(setf *test-frame*

(make-application-frame 'test)))))

(mp:process-run-function "test" #'run-frame-top-level frame)))

;;;;;;;;

1- I charged climnt.fasl (clim, clim-user ... are in package)

2- I compile this file no errors

3- I execute (test) (in-package :clim-user) no problems, he returns to 
me this message

    #<multiprocessing:process test(db) @ #x21194bd2>

4- I execute 

(setq *test-pane* (get-frame-pane *test-frame* 'display))

he returns to me this message

#<application-pane @ #x21167e42>

but i didn't have the frame like i's showed

can you help me ahat to do?