+ Reply to Thread
Page 4 of 4 FirstFirst ... 2 3 4
Results 31 to 34 of 34

Thread: MQL4-600 Hide and Unselectable Object

  1. #4
    Banned Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12 has a reputation beyond repute Boss12's Avatar
    Join Date
    Sep 2020
    Posts
    3,995
    Thanks
    25,716
    Thanked 26,875 Times in 5,568 Posts
    एक मुद्रा को हमेशा दूसरी मुद्रा के सापेक्ष कारोबार किया जाता है। यदि आप एक मुद्रा बेचते हैं, तो आप दूसरी खरीद रहे हैं, और यदि आप एक मुद्रा खरीदते हैं, तो आप दूसरी बेच रहे हैं। इलेक्ट्रॉनिक ट्रेडिंग की दुनिया में, आपके लेनदेन की कीमतों के बीच के अंतर पर एक लाभ होता है।

    Though trading on financial markets involves high risk, it can still generate extra income in case you apply the right approach. By choosing a reliable broker such as InstaForex you get access to the international financial markets and open your way towards financial independence. You can sign up here.


  2. The Following 8 Users Say Thank You to Boss12 For This Useful Post:

    Alizahid (2020-10-20), bahi00 (2020-10-20), CJ7 (2020-10-20), Faisal145 (2020-10-20), Kanwal (2020-10-20), Kumar (2020-10-20), raheel00 (2020-10-20), SubhanAllah (2020-10-20)

  3. #3
    Member yang aus has a spectacular aura about yang aus has a spectacular aura about yang aus's Avatar
    Join Date
    Sep 2017
    Posts
    480
    Thanks
    46
    Thanked 181 Times in 140 Posts
    SubscribeSubscribe
    subscribed 0
    Quote Originally Posted by bibit View Post
    Do not remember, if the old mql4 already exist what nope.

    1. Hidden Object
    set OBJPROP_HIDDEN to true:
    ObjectSetInteger (0, nama_object, OBJPROP_HIDDEN, true);
    When we press Ctrl + B then the object does not appear in the object list. Although still can be raised through the "list all", at least on the list is not too much.
    Hidden object does not affect the total number of existing objects and can still be searched with ObjectFind ()

    2. Unselectable Object
    set OBJPROP_SELECTABLE to false:
    ObjectSetInteger (0, oname, OBJPROP_SELECTABLE, false);
    One of its usefulness is to prevent the object to accidentally delete because it forgot to unselect (boso opo iki). Especially after we double click on the chart there are usually objects that keselect accidentally (opo maneh iki, keselek). So want to double click triple click ga going keselect (duh keselek maneh)

    umpteen and thank you, wassalam
    best regards from New Student
    advanced Master
    all the questions etc. have been in making threat?
    curious how to make it
    "also how to dismantle" hehehe

    Though trading on financial markets involves high risk, it can still generate extra income in case you apply the right approach. By choosing a reliable broker such as InstaForex you get access to the international financial markets and open your way towards financial independence. You can sign up here.


  4. The Following 9 Users Say Thank You to yang aus For This Useful Post:

    Alizahid (2020-10-20), amir2880 (2018-03-20), bahi00 (2020-10-20), Boss12 (2020-10-20), Faisal145 (2020-10-20), Kanwal (2020-10-20), Kumar (2020-10-20), raheel00 (2020-10-19), SubhanAllah (2020-10-20)

  5. #2
    Member kivlan has a spectacular aura about kivlan has a spectacular aura about kivlan's Avatar
    Join Date
    Jul 2017
    Posts
    577
    Thanks
    78
    Thanked 189 Times in 139 Posts
    SubscribeSubscribe
    subscribed 0
    Quote Originally Posted by bibit View Post
    Do not remember, if the old mql4 already exist what nope.

    1. Hidden Object
    set OBJPROP_HIDDEN to true:
    ObjectSetInteger (0, nama_object, OBJPROP_HIDDEN, true);
    When we press Ctrl + B then the object does not appear in the object list. Although still can be raised through the "list all", at least on the list is not too much.
    Hidden object does not affect the total number of existing objects and can still be searched with ObjectFind ()

    2. Unselectable Object
    set OBJPROP_SELECTABLE to false:
    ObjectSetInteger (0, oname, OBJPROP_SELECTABLE, false);
    One of its usefulness is to prevent the object to accidentally delete because it forgot to unselect (boso opo iki). Especially after we double click on the chart there are usually objects that keselect accidentally (opo maneh iki, keselek). So want to double click triple click ga going keselect (duh keselek maneh)

    umpteen and thank you, wassalam
    wah fit this for the indi who draw lines GRID lines so not erased or dragged.

    my friend said if in delphi class it can call other ex4. (ga know bener or not)

    so for example i found EA OP form EX4 only

    trigger OP is good .. but I want to add trailing.

    can we call EA OP through class .. continue to paste into our own EA trailing?

    Though trading on financial markets involves high risk, it can still generate extra income in case you apply the right approach. By choosing a reliable broker such as InstaForex you get access to the international financial markets and open your way towards financial independence. You can sign up here.


  6. The Following 9 Users Say Thank You to kivlan For This Useful Post:

    Alizahid (2020-10-20), amir2880 (2018-03-20), bahi00 (2020-10-20), Boss12 (2020-10-20), Faisal145 (2020-10-20), Kanwal (2020-10-20), Kumar (2020-10-20), raheel00 (2020-10-19), SubhanAllah (2020-10-20)

  7. #1
    Member bibit has a spectacular aura about bibit has a spectacular aura about bibit's Avatar
    Join Date
    Nov 2016
    Posts
    766
    Thanks
    79
    Thanked 184 Times in 141 Posts
    SubscribeSubscribe
    subscribed 0

    MQL4-600 Hide and Unselectable Object

    Do not remember, if the old mql4 already exist what nope.

    1. Hidden Object
    set OBJPROP_HIDDEN to true:
    ObjectSetInteger (0, nama_object, OBJPROP_HIDDEN, true);
    When we press Ctrl + B then the object does not appear in the object list. Although still can be raised through the "list all", at least on the list is not too much.
    Hidden object does not affect the total number of existing objects and can still be searched with ObjectFind ()

    2. Unselectable Object
    set OBJPROP_SELECTABLE to false:
    ObjectSetInteger (0, oname, OBJPROP_SELECTABLE, false);
    One of its usefulness is to prevent the object to accidentally delete because it forgot to unselect (boso opo iki). Especially after we double click on the chart there are usually objects that keselect accidentally (opo maneh iki, keselek). So want to double click triple click ga going keselect (duh keselek maneh)

    umpteen and thank you, wassalam

    Though trading on financial markets involves high risk, it can still generate extra income in case you apply the right approach. By choosing a reliable broker such as InstaForex you get access to the international financial markets and open your way towards financial independence. You can sign up here.


  8. The Following 12 Users Say Thank You to bibit For This Useful Post:

    Alizahid (2020-10-20), amir2880 (2018-03-20), bahi00 (2020-10-20), Boss12 (2020-10-20), Faisal145 (2020-10-20), Kanwal (2020-10-20), Kumar (2020-10-20), raheel00 (2020-10-19), sangar (2018-02-28), sarawa (2018-02-28), SubhanAllah (2020-10-20), tujjuh (2018-02-28)

+ Reply to Thread
Page 4 of 4 FirstFirst ... 2 3 4

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Currently Active UsersCurrently Active Users

There are currently users online. members and guests

Forex Forum India | Forex Community Place Statistics Forex Forum India Statistics

Most users ever online was .

Welcome to our newest member,

Threads:

Posts:

Member: