- This topic has 1 reply, 2 voices, and was last updated 8 years, 10 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Integrated Application Platform
Integrated Application Platform › Forums › General › may be a bug
Hi everyone
thank you for this good software Suneido Team
I try to learn this new soft but just i get a error message (unintialised member:0) when executing this line from workspace
Window(Params(#(Text “Hello”), ‘pg’, #(Text “Goodbye”)))
thanks again
Tahar
Hello Tahar,
Sorry for the delayed reply.
The problem is that you are calling Params in your arguments to Window which will already create its own window.
Try either
Params(#(Text “Hello”), ‘pg’, #(Text “Goodbye”))
or
Window(Object(‘Params’ #(Text “Hello”), ‘pg’, #(Text “Goodbye”)))