forum

Home / DeveloperSection / Forums / How to reset user control by getting the value from other form

How to reset user control by getting the value from other form

Anonymous User 1581 26-Mar-2014

I have form1 : User control and form2: form. I want to reset all the the value from form2 that will effect/reset showing to user control by using reset button. the user control get value from form2

something I tried:

RoomPlan.RoomStatus STATUS = rpRoomPlan[i].roomstatus();

if (STATUS == RoomPlan.RoomStatus.CLEAN)

{

    generateRoomPlan();

    om.IM_RESET_ROOM_STATUS(Convert.ToInt32(ROOMID));

    rpRoomPlan[i].Enabled = true;

    rpRoomPlan[i].BackColor = Color.WhiteSmoke;

}

om.IM_RESET_ROOM_STATUS is the web service *

  case RoomStatus.CLEAN:

if (!string.IsNullOrEmpty(dr["ROOMID"].ToString())){

  updateRoomDisplay(Color.DeepSkyBlue, Color.DeepSkyBlue, Color.LimeGreen,

                                        "BOOK", "ASSIGNED", "", Color.White, Color.WhiteSmoke, Color.WhiteSmoke, "", "", true);}

when we click the reset button then the status BOOK ASSIGNED will change to BOOK UNASSIGN


c# c# 
Updated on 26-Mar-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By