<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Icon for Cut, Copy,Paste</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Icon for Cut, Copy,Paste]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 04 Apr 2026 02:12:32 +0000</pubDate>
  <lastBuildDate>Tue, 24 Apr 2007 08:27:04 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=6952</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Icon for Cut, Copy,Paste : Thank you very muchOleg. ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22254&amp;title=icon-for-cut-copypaste#22254</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2903">KumarCJ</a><br /><strong>Subject:</strong> 6952<br /><strong>Posted:</strong> 24 April 2007 at 8:27am<br /><br />Thank you very much&nbsp;Oleg. ]]>
   </description>
   <pubDate>Tue, 24 Apr 2007 08:27:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22254&amp;title=icon-for-cut-copypaste#22254</guid>
  </item> 
  <item>
   <title><![CDATA[Icon for Cut, Copy,Paste : Hi,  Call pCommandBars-&amp;gt;G...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22239&amp;title=icon-for-cut-copypaste#22239</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6952<br /><strong>Posted:</strong> 24 April 2007 at 7:11am<br /><br /><DIV>Hi,</DIV><DIV>&nbsp;</DIV><DIV>Call pCommandBars-&gt;GetShortcutManager()-&gt;SetAccelerators(IDR_RESOURCE);<BR></DIV><DIV>where IDR_RESOURCE is accelerator table from your resources. (Check that it has accelerators for Cut/Copy etc)</DIV>]]>
   </description>
   <pubDate>Tue, 24 Apr 2007 07:11:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22239&amp;title=icon-for-cut-copypaste#22239</guid>
  </item> 
  <item>
   <title><![CDATA[Icon for Cut, Copy,Paste : Hi,  Thanks for your reply,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22228&amp;title=icon-for-cut-copypaste#22228</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2903">KumarCJ</a><br /><strong>Subject:</strong> 6952<br /><strong>Posted:</strong> 24 April 2007 at 2:36am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Thanks for your reply, my concern is below:</DIV><DIV>&nbsp;</DIV><DIV>The Edit menu looks like below</DIV><DIV>&nbsp;</DIV><DIV>Cut&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ctrl+x</DIV><DIV>Copy&nbsp;&nbsp;&nbsp; ctrl+c </DIV><DIV>Paste&nbsp;&nbsp; ctrl+v</DIV><DIV>&nbsp;</DIV><DIV>But for the edit menu, system is displaying</DIV><DIV>&nbsp;</DIV><DIV><DIV>Cut&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; square box in front of Cut</DIV><DIV>Copy&nbsp;&nbsp;&nbsp; square box in front of Copy</DIV><DIV>Paste&nbsp;&nbsp; square box in front of Paste</DIV></DIV><DIV>&nbsp;</DIV><DIV>it is not displaying, ctrl+x, ctrl+c, ctrl+v for Cut, Copy, Paste. </DIV><DIV>&nbsp;</DIV><DIV><FONT color=#ff0000>I checked with privious version of application exe, the issue is "Edit" menu is not able expand to it full extend and some thing happening with one more menu.</FONT></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>pls let me why this is happening.</DIV><DIV>&nbsp;</DIV><DIV>Here is the code what i had added for Code jock 10.4.2</DIV><DIV>&nbsp;</DIV><DIV>int CMainFrame::OnCreate()</DIV><DIV>{</DIV><DIV>&nbsp;&nbsp; // Initialize the command bars<BR>&nbsp; &nbsp;if (!InitCommandBars())<BR>&nbsp;&nbsp; return -1;<BR>&nbsp;&nbsp; // Get Commandbar<BR>&nbsp;&nbsp;&nbsp;CXTPCommandBar* pCommandBars = GetCommandBars();<BR>&nbsp;&nbsp; // Create MenuBar using CXTPMenuBar* <BR>&nbsp;&nbsp; CXTPMenuBar* m_wndMenuBar = pCommandBars-&gt;SetMenu(_T("Menu Bar"),&nbsp; IDR_MAINFRAME);<BR>&nbsp;&nbsp;if(m_wndMenuBar == NULL)<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TRACE0("Failed to create menu bar.\n");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return -1;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // fail to create<BR>&nbsp;&nbsp;}<BR>&nbsp; m_wndMenuBar-&gt;SetFlags(xtpFlagAddMDISysPopup);</DIV><DIV>&nbsp;</DIV><DIV>// Create ToolBar<BR>&nbsp;&nbsp;&nbsp; CXTPToolBar* m_wndToolBar = (CMCToolBar *) pCommandBars-&gt;Add(_T(g_cmcstandard), xtpBarTop);<BR>&nbsp;&nbsp;&nbsp; if (!m_wndToolBar || !m_wndToolBar-&gt;LoadToolBar(IDR_MAINFRAMELO))<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TRACE0("Failed to create toolbar\n");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return -1;<BR>&nbsp;&nbsp;&nbsp; }</DIV><DIV>&nbsp;</DIV><DIV>m_wndToolBar-&gt;EnableDocking(xtpFlagAlignAny | xtpFlagFloating);<BR>&nbsp;EnableDocking(CBRS_ALIGN_ANY);</DIV><DIV>&nbsp;</DIV><DIV>CXTPPaintManager::SetTheme(xtpThemeOffice2003);</DIV><DIV>}</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV><FONT color=#ff0000>Is i need add something which is going to expand the menu to its full extend?</FONT></DIV><DIV><FONT color=#ff0000></FONT>&nbsp;</DIV><DIV><FONT color=#ff0000>waiting for your reply.</FONT></DIV><DIV><FONT color=#ff0000></FONT>&nbsp;</DIV><DIV><FONT color=#333333>Thanks,</FONT></DIV><DIV><FONT color=#333333>Saket Kumar.</FONT></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 24 Apr 2007 02:36:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22228&amp;title=icon-for-cut-copypaste#22228</guid>
  </item> 
  <item>
   <title><![CDATA[Icon for Cut, Copy,Paste : Hi,  Add toolbar resource, add...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22209&amp;title=icon-for-cut-copypaste#22209</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6952<br /><strong>Posted:</strong> 23 April 2007 at 7:57am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Add toolbar resource, add buttons for cut, paste, copy</DIV><DIV>&nbsp;</DIV><DIV>call </DIV><DIV>pCommandBars-&gt;GetImageManager()-&gt;SetIcons(IDR_YOURBAR);</DIV><DIV>&nbsp;</DIV><DIV>to set icons.</DIV>]]>
   </description>
   <pubDate>Mon, 23 Apr 2007 07:57:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22209&amp;title=icon-for-cut-copypaste#22209</guid>
  </item> 
  <item>
   <title><![CDATA[Icon for Cut, Copy,Paste : Hi,  I am using Code jock 10.4.2...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22207&amp;title=icon-for-cut-copypaste#22207</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2903">KumarCJ</a><br /><strong>Subject:</strong> 6952<br /><strong>Posted:</strong> 23 April 2007 at 6:53am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>I am using Code jock 10.4.2 in our application.</DIV><DIV>&nbsp;</DIV><DIV>I have used following line of code to create Menu and toolbar and for Setting the xtpThemeOffice2003 Theam.</DIV><DIV>&nbsp;</DIV><DIV>int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)</DIV><DIV>{</DIV><DIV>&nbsp;</DIV><DIV>m_wndMenuBar = pCommandBars-&gt;SetMenu(_T("Menu Bar"), IDR_MAINFRAME);<BR>&nbsp;if(m_wndMenuBar == NULL)<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TRACE0("Failed to create menu bar.\n");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return -1;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // fail to create<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;m_wndMenuBar-&gt;SetFlags(xtpFlagAddMDISysPopup);</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;// Create ToolBar<BR>&nbsp;&nbsp;&nbsp; m_wndToolBar = (CMCToolBar *) pCommandBars-&gt;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Add(_T&nbsp;&nbsp; (g_cmcstandard), xtpBarTop);</DIV><DIV><BR>&nbsp;&nbsp;&nbsp; if (!m_wndToolBar || !m_wndToolBar-&gt;LoadToolBar(IDR_MAINFRAMELO))<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TRACE0("Failed to create toolbar\n");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return -1;<BR>&nbsp;&nbsp;&nbsp; }</DIV><DIV>&nbsp;</DIV><DIV>CXTPPaintManager::SetTheme(xtpThemeOffice2003);</DIV><DIV>&nbsp;</DIV><DIV>}</DIV><DIV>&nbsp;</DIV><DIV>The Issue is that, When I am clicking on "Edit" menu, for Cut, Copy, Paste the image and Ctrl+X, Ctrl+C, Ctrl+V, is not displaying.</DIV><DIV>&nbsp;</DIV><DIV>Please help me out.</DIV><DIV>&nbsp;</DIV><DIV>Thanks,</DIV><DIV>KumarCJ</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 23 Apr 2007 06:53:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6952&amp;PID=22207&amp;title=icon-for-cut-copypaste#22207</guid>
  </item> 
 </channel>
</rss>