RE-button

Hi All

after clicking the button, new form will open. in that form,one check box must checked after clicking the button.

how can it possible???

please help me

HI Smiley,

Can you explain in some detailed.

Hi Smiley,

If you want to just check the checkbox, call the value() method with a value of 1 in the clicked() method of button

void clicked()
{
super();

CheckBox.value(1);
}

Hope this helps.

i create one new button in my form. that form connect into salescreateorder form.

in that form i create the one check box. if i click the button, automatically that check box ll be checked.

how can it possible

checkbox.value(1);

it’s not working ya

Hi Smiley,

Go to Properties of that check box and make AutoDeclaration to Yes and also give the Name to that checkBox for example MarkUnMark

Now write the code in the button clicked as

void clicked()
{
super();
MarkUnMark.checked(NoYes::Yes); //MarkUnMark is the name of the checkbox
}

The salescreateorder form is used for salesTable form for creating sale orders, why you are using this form?

Which data source you are using in your form?