Public repository write access

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
12 messages Options
Reply | Threaded
Open this post in threaded view
|

Public repository write access

Steffen Märcker
Hi,

I am experiencing troubles on my attempt to register for _write_ access
(http://www.cincomsmalltalk.com/CincomSmalltalkWiki/PostgreSQL+Access+Page).
The following exception is thrown each time:
        Permission denied ("/var/lib/pgsql/data/passwd.store_public")
The user seems to be created but password creation fails.
Has anyone else problems like this or some hints for me? I just want to
give back some (small) improvements to the community.

Ciao, Steffen
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: Public repository write access

Andres Valloud-6
Someone registered successfully this afternoon.  When did you see this
problem?  Can you forward me your username privately for debugging purposes?

On 7/14/2011 1:26 AM, Steffen Märcker wrote:

> Hi,
>
> I am experiencing troubles on my attempt to register for _write_ access
> (http://www.cincomsmalltalk.com/CincomSmalltalkWiki/PostgreSQL+Access+Page).
> The following exception is thrown each time:
> Permission denied ("/var/lib/pgsql/data/passwd.store_public")
> The user seems to be created but password creation fails.
> Has anyone else problems like this or some hints for me? I just want to
> give back some (small) improvements to the community.
>
> Ciao, Steffen
> _______________________________________________
> vwnc mailing list
> [hidden email]
> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Changing the contents of a combobox after the window is open

Carl Gundel
What is the best way to programmatically change the contents of a combobox after the window is open?

I can change the value of the field like so:

        aComboBoxView model: 'qwerty' asValue.

But how to change the list is eluding me.

Thanks.

-Carl Gundel
http://www.libertybasic.com
htp://www.runbasic.com
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: Changing the contents of a combobox after the window is open

Boris Popov, DeepCove Labs (SNN)
I think you can just use another value holder (or any kind of
#value'able object, like a block) to feed the choices, then it'll be
re-evaluated every time the drop-down opens up.

-Boris

-----Original Message-----
From: [hidden email] [mailto:[hidden email]] On
Behalf Of Carl Gundel
Sent: Sunday, July 17, 2011 8:41 PM
To: VWNC
Subject: [vwnc] Changing the contents of a combobox after the window is
open

What is the best way to programmatically change the contents of a
combobox after the window is open?

I can change the value of the field like so:

        aComboBoxView model: 'qwerty' asValue.

But how to change the list is eluding me.

Thanks.

-Carl Gundel
http://www.libertybasic.com
htp://www.runbasic.com
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: Changing the contents of a combobox after the window is open

Carl Gundel
Okay, but what selector do I use to feed it the choices?  That's what I couldn't figure out.

-Carl Gundel
Liberty BASIC for Windows - http://www.libertybasic.com
Run BASIC, easy web programming - http://www.runbasic.com

On Jul 17, 2011, at 9:20 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

> I think you can just use another value holder (or any kind of
> #value'able object, like a block) to feed the choices, then it'll be
> re-evaluated every time the drop-down opens up.
>
> -Boris
>
> -----Original Message-----
> From: [hidden email] [mailto:[hidden email]] On
> Behalf Of Carl Gundel
> Sent: Sunday, July 17, 2011 8:41 PM
> To: VWNC
> Subject: [vwnc] Changing the contents of a combobox after the window is
> open
>
> What is the best way to programmatically change the contents of a
> combobox after the window is open?
>
> I can change the value of the field like so:
>
>    aComboBoxView model: 'qwerty' asValue.
>
> But how to change the list is eluding me.
>
> Thanks.
>
> -Carl Gundel
> http://www.libertybasic.com
> htp://www.runbasic.com
> _______________________________________________
> vwnc mailing list
> [hidden email]
> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: Changing the contents of a combobox after the window is open

Boris Popov, DeepCove Labs (SNN)

You define the selector that feeds the choices yourself, and you could then either return a list or a value-able object to make the choices dynamic,

 

 

HTH,

 

-Boris

 

-----Original Message-----
From: Carl Gundel [mailto:[hidden email]]
Sent: Sunday, July 17, 2011 9:30 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open

 

Okay, but what selector do I use to feed it the choices?  That's what I couldn't figure out.

 

-Carl Gundel

Liberty BASIC for Windows - http://www.libertybasic.com Run BASIC, easy web programming - http://www.runbasic.com

 

On Jul 17, 2011, at 9:20 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

 

> I think you can just use another value holder (or any kind of

> #value'able object, like a block) to feed the choices, then it'll be

> re-evaluated every time the drop-down opens up.

>

> -Boris

>

> -----Original Message-----

> From: [hidden email] [hidden email] On

> Behalf Of Carl Gundel

> Sent: Sunday, July 17, 2011 8:41 PM

> To: VWNC

> Subject: [vwnc] Changing the contents of a combobox after the window

> is open

>

> What is the best way to programmatically change the contents of a

> combobox after the window is open?

>

> I can change the value of the field like so:

>

>    aComboBoxView model: 'qwerty' asValue.

>

> But how to change the list is eluding me.

>

> Thanks.

>

> -Carl Gundel

> http://www.libertybasic.com

> htp://www.runbasic.com

> _______________________________________________

> vwnc mailing list

> [hidden email]

> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: Changing the contents of a combobox after the window is open

Carl Gundel
Yes, but that's not what I mean.  That's how to set the value initially, but how can this be used to change the list later after the window opens?  Unless you mean something se of course.  :-)

-Carl Gundel
Liberty BASIC for Windows - http://www.libertybasic.com
Run BASIC, easy web programming - http://www.runbasic.com

On Jul 17, 2011, at 9:33 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

You define the selector that feeds the choices yourself, and you could then either return a list or a value-able object to make the choices dynamic,

 

 

HTH,

 

-Boris

 

-----Original Message-----
From: Carl Gundel [mailto:[hidden email]]
Sent: Sunday, July 17, 2011 9:30 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open

 

Okay, but what selector do I use to feed it the choices?  That's what I couldn't figure out.

 

-Carl Gundel

Liberty BASIC for Windows - http://www.libertybasic.com Run BASIC, easy web programming - http://www.runbasic.com

 

On Jul 17, 2011, at 9:20 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

 

> I think you can just use another value holder (or any kind of

> #value'able object, like a block) to feed the choices, then it'll be

> re-evaluated every time the drop-down opens up.

>

> -Boris

>

> -----Original Message-----

> From: [hidden email] [hidden email] On

> Behalf Of Carl Gundel

> Sent: Sunday, July 17, 2011 8:41 PM

> To: VWNC

> Subject: [vwnc] Changing the contents of a combobox after the window

> is open

>

> What is the best way to programmatically change the contents of a

> combobox after the window is open?

>

> I can change the value of the field like so:

>

>    aComboBoxView model: 'qwerty' asValue.

>

> But how to change the list is eluding me.

>

> Thanks.

>

> -Carl Gundel

> http://www.libertybasic.com

> htp://www.runbasic.com

> _______________________________________________

> vwnc mailing list

> [hidden email]

> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: Changing the contents of a combobox after the window is open

Carl Gundel
In reply to this post by Boris Popov, DeepCove Labs (SNN)
<base href="x-msg://28/">Boris,

Yes, of course but that's not what I meant.  Setting the choices selector is for setting the initial contents of the list, right?  How do I change the contents of the combobox list *after* the window is already open?

Am I just being dense?

-Carl

On Jul 17, 2011, at 9:33 PM, Boris Popov, DeepCove Labs wrote:

You define the selector that feeds the choices yourself, and you could then either return a list or a value-able object to make the choices dynamic,
 
<image001.png>
 
HTH,
 
-Boris
 
-----Original Message-----
From: Carl Gundel [mailto:[hidden email]] 
Sent: Sunday, July 17, 2011 9:30 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open
 
Okay, but what selector do I use to feed it the choices?  That's what I couldn't figure out.
 
-Carl Gundel
Liberty BASIC for Windows - http://www.libertybasic.com Run BASIC, easy web programming - http://www.runbasic.com
 
On Jul 17, 2011, at 9:20 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:
 
> I think you can just use another value holder (or any kind of
> #value'able object, like a block) to feed the choices, then it'll be
> re-evaluated every time the drop-down opens up.
>
> -Boris
>
> -----Original Message-----
> Behalf Of Carl Gundel
> Sent: Sunday, July 17, 2011 8:41 PM
> To: VWNC
> Subject: [vwnc] Changing the contents of a combobox after the window
> is open
>
> What is the best way to programmatically change the contents of a
> combobox after the window is open?
>
> I can change the value of the field like so:
>
>    aComboBoxView model: 'qwerty' asValue.
>
> But how to change the list is eluding me.
>
> Thanks.
>
> -Carl Gundel
> <a href="htp://www.runbasic.com" style="color: blue; text-decoration: underline; ">htp://www.runbasic.com
> _______________________________________________
> vwnc mailing list


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: Changing the contents of a combobox after the window is open

Boris Popov, DeepCove Labs (SNN)
In reply to this post by Carl Gundel

To be precise, that’s how you set the source of the choices, which just happens be defined as a list by default. Instead, you can change the implementation of your #choices to return something that responds to #value and returns a new list,

 

choices

^choices ifNil: [choices := [Random new next: 20]]

 

Block is the simplest example, but you might be wanting to use an aspect adaptor etcetera. Full example is attached.

 

HTH,

 

-Boris

 

From: Carl Gundel [mailto:[hidden email]]
Sent: Sunday, July 17, 2011 9:43 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open

 

Yes, but that's not what I mean.  That's how to set the value initially, but how can this be used to change the list later after the window opens?  Unless you mean something se of course.  :-)


-Carl Gundel

Liberty BASIC for Windows - http://www.libertybasic.com

Run BASIC, easy web programming - http://www.runbasic.com


On Jul 17, 2011, at 9:33 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

You define the selector that feeds the choices yourself, and you could then either return a list or a value-able object to make the choices dynamic,

 

 

HTH,

 

-Boris

 

-----Original Message-----
From: Carl Gundel [hidden email]
Sent: Sunday, July 17, 2011 9:30 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open

 

Okay, but what selector do I use to feed it the choices?  That's what I couldn't figure out.

 

-Carl Gundel

Liberty BASIC for Windows - http://www.libertybasic.com Run BASIC, easy web programming - http://www.runbasic.com

 

On Jul 17, 2011, at 9:20 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

 

> I think you can just use another value holder (or any kind of

> #value'able object, like a block) to feed the choices, then it'll be

> re-evaluated every time the drop-down opens up.

>

> -Boris

>

> -----Original Message-----

> From: [hidden email] [hidden email] On

> Behalf Of Carl Gundel

> Sent: Sunday, July 17, 2011 8:41 PM

> To: VWNC

> Subject: [vwnc] Changing the contents of a combobox after the window

> is open

>

> What is the best way to programmatically change the contents of a

> combobox after the window is open?

>

> I can change the value of the field like so:

>

>    aComboBoxView model: 'qwerty' asValue.

>

> But how to change the list is eluding me.

>

> Thanks.

>

> -Carl Gundel

> http://www.libertybasic.com

> htp://www.runbasic.com

> _______________________________________________

> vwnc mailing list

> [hidden email]

> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

Randoms.st (2K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Changing the contents of a combobox after the window is open

Carl Gundel
<base href="x-msg://35/">Boris,

Okay, I see how that works.  Thanks.  However, it doesn't solve my problem.  I need to programmatically tell the widget what it's contents are.  My GUIs are dynamically generated and do have a class for each window.  I do not have a place to hang my choices method.  I need to be able to say something like:

  aComponent llstModel: aSelectionInList

I hope this doesn't mean that I am going to have to subclass the combobox classes to do what I want.

Thanks anyways.  As usual the Wrapper GUI framework baffles and amazes.  Simple things are hair pulling experiences.  :-(

-Carl

On Jul 17, 2011, at 9:54 PM, Boris Popov, DeepCove Labs wrote:

To be precise, that’s how you set the source of the choices, which just happens be defined as a list by default. Instead, you can change the implementation of your #choices to return something that responds to #value and returns a new list,
 
choices
^choices ifNil: [choices := [Random new next: 20]]
 
Block is the simplest example, but you might be wanting to use an aspect adaptor etcetera. Full example is attached.
 
HTH,
 
-Boris
 
From: Carl Gundel [mailto:[hidden email]] 
Sent: Sunday, July 17, 2011 9:43 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open
 
Yes, but that's not what I mean.  That's how to set the value initially, but how can this be used to change the list later after the window opens?  Unless you mean something se of course.  :-)

-Carl Gundel
Liberty BASIC for Windows - http://www.libertybasic.com
Run BASIC, easy web programming - http://www.runbasic.com


On Jul 17, 2011, at 9:33 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

You define the selector that feeds the choices yourself, and you could then either return a list or a value-able object to make the choices dynamic,

 

 

HTH,

 

-Boris

 

-----Original Message-----
From: Carl Gundel [hidden email] 
Sent: Sunday, July 17, 2011 9:30 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open

 

Okay, but what selector do I use to feed it the choices?  That's what I couldn't figure out.

 

-Carl Gundel

Liberty BASIC for Windows - http://www.libertybasic.com Run BASIC, easy web programming - http://www.runbasic.com

 

On Jul 17, 2011, at 9:20 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

 

> I think you can just use another value holder (or any kind of

> #value'able object, like a block) to feed the choices, then it'll be

> re-evaluated every time the drop-down opens up.

>

> -Boris

>

> -----Original Message-----

> From: [hidden email] [hidden email] On

> Behalf Of Carl Gundel

> Sent: Sunday, July 17, 2011 8:41 PM

> To: VWNC

> Subject: [vwnc] Changing the contents of a combobox after the window

> is open

>

> What is the best way to programmatically change the contents of a

> combobox after the window is open?

>

> I can change the value of the field like so:

>

>    aComboBoxView model: 'qwerty' asValue.

>

> But how to change the list is eluding me.

>

> Thanks.

>

> -Carl Gundel

> http://www.libertybasic.com

> <a href="htp://www.runbasic.com" style="color: blue; text-decoration: underline; ">htp://www.runbasic.com

> _______________________________________________

> vwnc mailing list

> [hidden email]

> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

<Randoms.st>


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: Changing the contents of a combobox after the window isopen

Boris Popov, DeepCove Labs (SNN)
<base href="x-msg://35/">

Okay, then instead of defining a selector, just feed the list holder at runtime,

 

postBuildWith: aBuilder

 

super postBuildWith: aBuilder.

(self widgetAt: #combobox) menuButton listHolder: [Random new next: 20]

 

Updated example is attached.

 

-Boris

 

From: [hidden email] [mailto:[hidden email]] On Behalf Of Carl Gundel
Sent: Sunday, July 17, 2011 10:07 PM
To: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window isopen

 

Boris,

 

Okay, I see how that works.  Thanks.  However, it doesn't solve my problem.  I need to programmatically tell the widget what it's contents are.  My GUIs are dynamically generated and do have a class for each window.  I do not have a place to hang my choices method.  I need to be able to say something like:

 

  aComponent llstModel: aSelectionInList

 

I hope this doesn't mean that I am going to have to subclass the combobox classes to do what I want.

 

Thanks anyways.  As usual the Wrapper GUI framework baffles and amazes.  Simple things are hair pulling experiences.  :-(

 

-Carl

 

On Jul 17, 2011, at 9:54 PM, Boris Popov, DeepCove Labs wrote:



To be precise, that’s how you set the source of the choices, which just happens be defined as a list by default. Instead, you can change the implementation of your #choices to return something that responds to #value and returns a new list,

 

choices

^choices ifNil: [choices := [Random new next: 20]]

 

Block is the simplest example, but you might be wanting to use an aspect adaptor etcetera. Full example is attached.

 

HTH,

 

-Boris

 

From: Carl Gundel [hidden email] 
Sent: Sunday, July 17, 2011 9:43 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open

 

Yes, but that's not what I mean.  That's how to set the value initially, but how can this be used to change the list later after the window opens?  Unless you mean something se of course.  :-)


-Carl Gundel

Liberty BASIC for Windows - http://www.libertybasic.com

Run BASIC, easy web programming - http://www.runbasic.com


On Jul 17, 2011, at 9:33 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

You define the selector that feeds the choices yourself, and you could then either return a list or a value-able object to make the choices dynamic,

 

 

HTH,

 

-Boris

 

-----Original Message-----
From: Carl Gundel [hidden email] 
Sent: Sunday, July 17, 2011 9:30 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open

 

Okay, but what selector do I use to feed it the choices?  That's what I couldn't figure out.

 

-Carl Gundel

Liberty BASIC for Windows - http://www.libertybasic.com Run BASIC, easy web programming - http://www.runbasic.com

 

On Jul 17, 2011, at 9:20 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

 

> I think you can just use another value holder (or any kind of

> #value'able object, like a block) to feed the choices, then it'll be

> re-evaluated every time the drop-down opens up.

> 

> -Boris

> 

> -----Original Message-----

> From: [hidden email] [hidden email] On

> Behalf Of Carl Gundel

> Sent: Sunday, July 17, 2011 8:41 PM

> To: VWNC

> Subject: [vwnc] Changing the contents of a combobox after the window

> is open

> 

> What is the best way to programmatically change the contents of a

> combobox after the window is open?

> 

> I can change the value of the field like so:

> 

>    aComboBoxView model: 'qwerty' asValue.

> 

> But how to change the list is eluding me.

> 

> Thanks.

> 

> -Carl Gundel

> http://www.libertybasic.com

> <a href="htp://www.runbasic.com">htp://www.runbasic.com

> _______________________________________________

> vwnc mailing list

> [hidden email]

> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

<Randoms.st>

 


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

Randoms2.st (2K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Changing the contents of a combobox after the window isopen

Carl Gundel
<base href="x-msg://35/">Boris!

That did it.  Thank you so much!

-Carl

On Jul 17, 2011, at 10:20 PM, Boris Popov, DeepCove Labs wrote:

Okay, then instead of defining a selector, just feed the list holder at runtime,
 
postBuildWith: aBuilder
 
super postBuildWith: aBuilder.
(self widgetAt: #combobox) menuButton listHolder: [Random new next: 20]
 
Updated example is attached.
 
-Boris
 
From: [hidden email] [mailto:[hidden email]] On Behalf Of Carl Gundel
Sent: Sunday, July 17, 2011 10:07 PM
To: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window isopen
 
Boris,
 
Okay, I see how that works.  Thanks.  However, it doesn't solve my problem.  I need to programmatically tell the widget what it's contents are.  My GUIs are dynamically generated and do have a class for each window.  I do not have a place to hang my choices method.  I need to be able to say something like:
 
  aComponent llstModel: aSelectionInList
 
I hope this doesn't mean that I am going to have to subclass the combobox classes to do what I want.
 
Thanks anyways.  As usual the Wrapper GUI framework baffles and amazes.  Simple things are hair pulling experiences.  :-(
 
-Carl
 
On Jul 17, 2011, at 9:54 PM, Boris Popov, DeepCove Labs wrote:


To be precise, that’s how you set the source of the choices, which just happens be defined as a list by default. Instead, you can change the implementation of your #choices to return something that responds to #value and returns a new list,
 
choices
^choices ifNil: [choices := [Random new next: 20]]
 
Block is the simplest example, but you might be wanting to use an aspect adaptor etcetera. Full example is attached.
 
HTH,
 
-Boris
 
From: Carl Gundel [hidden email] 
Sent: Sunday, July 17, 2011 9:43 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open
 
Yes, but that's not what I mean.  That's how to set the value initially, but how can this be used to change the list later after the window opens?  Unless you mean something se of course.  :-)

-Carl Gundel
Liberty BASIC for Windows - http://www.libertybasic.com
Run BASIC, easy web programming - http://www.runbasic.com


On Jul 17, 2011, at 9:33 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

You define the selector that feeds the choices yourself, and you could then either return a list or a value-able object to make the choices dynamic,

 

 

HTH,

 

-Boris

 

-----Original Message-----
From: Carl Gundel [hidden email] 
Sent: Sunday, July 17, 2011 9:30 PM
To: Boris Popov, DeepCove Labs
Cc: VWNC
Subject: Re: [vwnc] Changing the contents of a combobox after the window is open

 

Okay, but what selector do I use to feed it the choices?  That's what I couldn't figure out.

 

-Carl Gundel

Liberty BASIC for Windows - http://www.libertybasic.com Run BASIC, easy web programming - http://www.runbasic.com

 

On Jul 17, 2011, at 9:20 PM, "Boris Popov, DeepCove Labs" <[hidden email]> wrote:

 

> I think you can just use another value holder (or any kind of

> #value'able object, like a block) to feed the choices, then it'll be

> re-evaluated every time the drop-down opens up.

> 

> -Boris

> 

> -----Original Message-----

> From: [hidden email] [hidden email] On

> Behalf Of Carl Gundel

> Sent: Sunday, July 17, 2011 8:41 PM

> To: VWNC

> Subject: [vwnc] Changing the contents of a combobox after the window

> is open

> 

> What is the best way to programmatically change the contents of a

> combobox after the window is open?

> 

> I can change the value of the field like so:

> 

>    aComboBoxView model: 'qwerty' asValue.

> 

> But how to change the list is eluding me.

> 

> Thanks.

> 

> -Carl Gundel

> http://www.libertybasic.com

> <a href="htp://www.runbasic.com" style="color: blue; text-decoration: underline; ">htp://www.runbasic.com

> _______________________________________________

> vwnc mailing list

> [hidden email]

> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

<Randoms.st>
 
<Randoms2.st>


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc