<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Message</TITLE>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2802" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Thanks, it works. But how can I 
convert&nbsp;CComPtr&lt;IMgaFCO&gt; child to CBuilderObject *&nbsp;&nbsp;after I 
find it?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Jane</FONT></DIV>
<DIV>---------------------------------------------------------------------------------<BR>Yuehua 
(Jane) Lin<BR>Department of Computer and Information Sciences<BR>University of 
Alabama at Birmingham<BR><A href="mailto:liny@cis.uab.edu">liny@cis.uab.edu</A> 
<BR><A href="http://www.cis.uab.edu/liny">http://www.cis.uab.edu/liny</A></DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=zolmol@isis.vanderbilt.edu 
  href="mailto:zolmol@isis.vanderbilt.edu">Zoltan Molnar</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A 
  title=gme-users@list.isis.vanderbilt.edu 
  href="mailto:gme-users@list.isis.vanderbilt.edu">gme-users</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Tuesday, January 03, 2006 3:19 
  PM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> RE: [gme-users] How to find out 
  an atom within a folder?</DIV>
  <DIV><BR></DIV>
  <DIV><SPAN class=731245020-03012006><FONT face=Arial color=#0000ff 
  size=2>Hi,</FONT></SPAN></DIV>
  <DIV><SPAN class=731245020-03012006><FONT face=Arial color=#0000ff 
  size=2></FONT></SPAN>&nbsp;</DIV>
  <DIV><SPAN class=731245020-03012006><FONT face=Arial color=#0000ff size=2>You 
  can try&nbsp;the following COM based&nbsp;method:</FONT></SPAN></DIV>
  <DIV><SPAN class=731245020-03012006><FONT face=Arial color=#0000ff 
  size=2><SPAN class=731245020-03012006><FONT face=Arial color=#0000ff 
  size=2>HRESULT ChildFCOs([out, retval] IMgaFCOs 
  **pVal);<BR></FONT></SPAN></FONT></SPAN><SPAN class=731245020-03012006><FONT 
  face=Arial color=#0000ff size=2>to get info about the rootobjects like 
  this:</FONT></SPAN></DIV>
  <DIV><SPAN class=731245020-03012006><FONT face=Arial color=#0000ff 
  size=2></FONT></SPAN>&nbsp;</DIV>
  <DIV><SPAN class=731245020-03012006><FONT color=#0000ff><FONT color=#0000ff>
  <P><FONT face=Arial size=2>void</FONT></FONT><FONT size=2><FONT 
  face=Arial><FONT color=#000000> CComponent::InvokeEx(CBuilder 
  &amp;builder,CBuilderObject *focus, CBuilderObjectList &amp;selected, 
  </FONT><FONT color=#0000ff>long</FONT></FONT><FONT face=Arial color=#000000> 
  param) </FONT></FONT></P>
  <P><FONT face=Arial size=2>{</FONT></P>
  <P><FONT face=Arial size=2>CBuilderFolder * myFolder = 
  builder.GetRootFolder();</FONT></P>
  <P><FONT face=Arial size=2>CComPtr&lt;IMgaFolder&gt; comFolderPtr = 
  myFolder-&gt;GetIFolder();</FONT></P>
  <P><FONT face=Arial size=2>CComPtr&lt;IMgaProject&gt; comProjPtr = 
  builder.GetProject();</FONT></P>
  <P><FONT face=Arial size=2>CComPtr&lt;IMgaFCOs&gt; childCollPtr;</FONT></P>
  <P><FONT face=Arial size=2>comFolderPtr-&gt;get_ChildFCOs( 
  &amp;childCollPtr);</FONT></P>
  <P><FONT size=2><FONT face=Arial>long</FONT><FONT face=Arial> 
  cnt;</FONT></FONT></P>
  <P><FONT face=Arial size=2>childCollPtr-&gt;get_Count( &amp;cnt);</FONT></P>
  <P><FONT size=2><FONT face=Arial>for( long</FONT><FONT face=Arial> l = 1; l 
  &lt;= cnt; ++l)</FONT></FONT></P>
  <P><FONT face=Arial size=2>{</FONT></P>
  <P><FONT face=Arial><FONT size=2><SPAN 
  class=731245020-03012006>&nbsp;&nbsp;&nbsp; </SPAN>CComPtr&lt;IMgaFCO&gt; 
  child;</FONT></FONT></P>
  <P><FONT face=Arial><FONT size=2><SPAN 
  class=731245020-03012006>&nbsp;&nbsp;&nbsp; </SPAN>childCollPtr-&gt;get_Item( 
  l, &amp;child);</FONT></FONT></P>
  <P><FONT face=Arial><FONT size=2><SPAN 
  class=731245020-03012006>&nbsp;&nbsp;&nbsp; </SPAN>CComBSTR 
  nm;</FONT></FONT></P>
  <P><FONT face=Arial><FONT size=2><SPAN 
  class=731245020-03012006>&nbsp;&nbsp;&nbsp; </SPAN>child-&gt;get_Name( 
  &amp;nm);</FONT></FONT></P>
  <P><FONT color=#008000><FONT face=Arial size=2>// ...</FONT></P></FONT>
  <P><FONT face=Arial size=2>}</FONT></P>
  <P><SPAN class=731245020-03012006><FONT face=Arial 
  size=2>}</FONT></SPAN></P></FONT></SPAN></DIV>
  <DIV><SPAN class=731245020-03012006><FONT face=Arial color=#0000ff size=2>br, 
  Zoli</FONT></SPAN></DIV>
  <DIV><SPAN class=731245020-03012006><FONT face=Arial color=#0000ff 
  size=2>&nbsp;</DIV></FONT></SPAN>
  <BLOCKQUOTE dir=ltr 
  style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #0000ff 2px solid; MARGIN-RIGHT: 0px">
    <DIV></DIV>
    <DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left><FONT 
    face=Tahoma size=2>-----Original Message-----<BR><B>From:</B> 
    gme-users-bounces@list.isis.vanderbilt.edu 
    [mailto:gme-users-bounces@list.isis.vanderbilt.edu] <B>On Behalf Of </B>Jane 
    Lin<BR><B>Sent:</B> Tuesday, January 03, 2006 1:32 PM<BR><B>To:</B> 
    gme-users<BR><B>Subject:</B> [gme-users] How to find out an atom within a 
    folder?<BR><BR></FONT></DIV>
    <DIV><FONT face=Arial size=2>Hi,</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>I&nbsp;have a GME plug-in written in C++ with 
    BON (not BONII). Now I am going to add a new function to support finding an 
    atom from a folder, which only contains atoms (no models). When I looked 
    into the APIs in Builder.h, I tried to use the GetRootObjects method in the 
    CBuilderFolder class. But it looked like this method doesn't return any atom 
    within such a folder.</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>Can I have another way to implement this, i.e., 
    finding an atom from a folder?</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>Thanks,</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>Jane</FONT></DIV>
    <DIV><FONT face=Arial 
    size=2>---------------------------------------------------------------------------------<BR>Yuehua 
    (Jane) Lin<BR>Department of Computer and Information Sciences<BR>University 
    of Alabama at Birmingham<BR><A 
    href="mailto:liny@cis.uab.edu">liny@cis.uab.edu</A> <BR><A 
    href="http://www.cis.uab.edu/liny">http://www.cis.uab.edu/liny</A></FONT></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV></BLOCKQUOTE>
  <P>
  <HR>

  <P></P>_______________________________________________<BR>gme-users mailing 
  list<BR>gme-users@list.isis.vanderbilt.edu<BR>http://list.isis.vanderbilt.edu/mailman/listinfo/gme-users<BR></BLOCKQUOTE></BODY></HTML>