PureBytes Links
Trading Reference Links
|
Hi,
Amibroker uses "Document-View" architecture which I understand that there can be multiple views of same data and any change in data gets synchronized automatically across all views displaying the data.
Going through Amibroker OLE documentation,
Document/Documents - refers to a document
Window/Windows - refers to a particular view
It's still confusing for me the difference between document & view
my $documents = $amibroker->Documents;
my $actDocument = $amibroker->ActiveDocument;
print "Documents Count: " . $documents->Count . "\n";
my $actWindow = $actDocument->ActiveWindow;
my $windows = $actDocument->Windows;
print "Windows Count: " . $windows->Count;
I am getting always the windows count as 1.
It looks to me that only one view/window is associated with all the documents opened.
Can some one please clarify how to have multiple windows/views open for a particular document.
Thanks in advance,
Naga Kiran
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
amibroker-digest@xxxxxxxxxxxxxxx
amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|