|
Hi,
from my main application window I want to start a modal dialog.
So I do
MainAppShell>>editBook: aBook
|pres|
pres := BookEditorDialog on: aBook.
pres setBookLocationChoices: "someList".
pres showModal.
That doesn't open any windows.
What am I misunderstanding about Dialog instances >>showModal?
Günther
|