Frank Rocco
|
| Posted: 06/11/2002, 12:34 PM |
|
Hello,
I tried Label1.Value = "text" and this fails.
What is the syntax for setting a value to a label in CCS?
Thanks
Frank
|
|
|
 |
Dave Rexel
|
| Posted: 06/11/2002, 2:09 PM |
|
Hi Frank
Try
Your_form_name.SetVar(Label1, "Text")
or
Your_form_name.Label1.Value = "text"
Greetings,
Dave
"Frank Rocco" <farocco@hotmail.com> wrote in message
news:ae5jcs$gc2$1@news.codecharge.com...
> Hello,
>
> I tried Label1.Value = "text" and this fails.
>
> What is the syntax for setting a value to a label in CCS?
>
> Thanks
> Frank
>
>
|
|
|
 |
Frank Rocco
|
| Posted: 06/12/2002, 6:35 AM |
|
Thanks,
I think I left out the form name.
Regards,
Frank
"Dave Rexel" <therex_spamenot@hotmail.com> wrote in message
news:ae5ou1$qrs$1@news.codecharge.com...
> Hi Frank
> Try
>
> Your_form_name.SetVar(Label1, "Text")
>
> or
>
> Your_form_name.Label1.Value = "text"
>
> Greetings,
> Dave
>
> "Frank Rocco" <farocco@hotmail.com> wrote in message
>news:ae5jcs$gc2$1@news.codecharge.com...
> > Hello,
> >
> > I tried Label1.Value = "text" and this fails.
> >
> > What is the syntax for setting a value to a label in CCS?
> >
> > Thanks
> > Frank
> >
> >
>
>
|
|
|
 |
|