Attachments forums

List of attachments posted on this forum.


All files on forums: 161024

Re: How do you judge if you are responsible for 3 or 4 tasks when displaying data?

luo83868008, Sat Nov 26, 2022 1:58 pm

kvak wrote: Thu Nov 24, 2022 8:45 pm Dont understand, this question is for me? Is possible, you have some indicator with this so post it...

Code: Select all

 int start()
{

   recalc = false;
   
       

   
   if (show_data)
      {
      
      //1 click button
      ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_ON_color);
      ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_unpressed);
      start2();
       handleButtonClicks();
      }
      else
      if (show_data1)
      {
      //2 clicks on the button
      ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color);
      ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_pressed);     
      deinit2();
       handleButtonClicks();
      }
      else
       {
       //3 clicks on the button
      ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color);
      ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_text); 
      handleButtonClicks();
      deinit2();
      }
       return(0);
      } 
Why can the button code be read only twice? thank you!
All files in topic