
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
Not sure how accurate my description is but just trying to find out how to find the name from within a class
Example:
I create a class called DisplayTable
I then declare two occurrences of the class Trades & Summary
so I can call
Trades.Test(optional variables) &
Summary.Test(optional variables)
Is there a means to obtain the name Trades or Summary at run time when using the class (I want to create a label with x,y coordinates preceded by Trades or Summary)
Any help appreciated
JUST decided to use an init function - i.e. Trades.Init("Trades") or Summary.Init("Summary") and pass the name through - works fine and simple