home *** CD-ROM | disk | FTP | other *** search
/ distrib.akp.su/Programming/Vb-6+Rus/ / distrib.akp.su.tar / distrib.akp.su / Programming / Vb-6+Rus / COMMON / MSDEV98 / BIN / MFCCLWZ.DLL / SRCDATA / EXT_INFO.RC < prev    next >
Text File  |  1998-06-18  |  6KB  |  240 lines

  1.  
  2. wmi_message    STRINGARRAY
  3. BEGIN
  4.     STRING("")
  5.     STRING("LRESULT")
  6.     STRING("WPARAM wParam, LPARAM lParam")
  7.     STRING("%4 Add your message handler code here")
  8.     STRING_BLANK
  9.     END_STRINGS
  10. END
  11.  
  12. wmi_control    STRINGARRAY
  13. BEGIN
  14.     STRING("")
  15.     STRING("void")
  16.     STRING("")
  17.     STRING("%4 Add your control notification handler code here")
  18.     STRING_BLANK
  19.     END_STRINGS
  20. END
  21.  
  22. wmi_notify    STRINGARRAY
  23. BEGIN
  24.     STRING("")
  25.     STRING("void")
  26.     STRING("NMHDR* pNMHDR, LRESULT* pResult")
  27.     STRING("%5")
  28.     STRING("%4 Add your control notification handler code here")
  29.     STRING_BLANK
  30.     STRING("*pResult = 0;")
  31.     END_STRINGS
  32. END
  33.  
  34. wmi_COMMAND    STRINGARRAY
  35. BEGIN
  36.     STRING("")
  37.     STRING("void")
  38.     STRING("")
  39.     STRING("%4 Add your command handler code here")
  40.     STRING_BLANK
  41.     END_STRINGS
  42. END
  43.  
  44. wmi_COMMAND_EX    STRINGARRAY
  45. BEGIN
  46.     STRING("")
  47.     STRING("BOOL")
  48.     STRING("UINT nID")
  49.     STRING("%4 Add your command handler code here")
  50.     STRING_BLANK
  51.     STRING("return TRUE;")
  52.     END_STRINGS
  53. END
  54.  
  55. wmi_UPDATE_COMMAND_UI STRINGARRAY
  56. BEGIN
  57.     STRING("")
  58.     STRING("void")
  59.     STRING("CCmdUI* pCmdUI")
  60.     STRING("%4 Add your command update UI handler code here")
  61.     STRING_BLANK
  62.     END_STRINGS
  63. END
  64.  
  65. wmi_ON_OK STRINGARRAY
  66. BEGIN
  67.     STRING("OnOK")
  68.     STRING("void")
  69.     STRING("")
  70.     STRING("%4 Add extra validation here")
  71.     STRING_BLANK
  72.     STRING("%1::%2();")
  73.     END_STRINGS
  74. END
  75.  
  76. wmi_ON_CANCEL STRINGARRAY
  77. BEGIN
  78.     STRING("OnCancel")
  79.     STRING("void")
  80.     STRING("")
  81.     STRING("%4 Add extra cleanup here")
  82.     STRING_BLANK
  83.     STRING("%1::%2();")
  84.     END_STRINGS
  85. END
  86.  
  87. wmi_vbn    STRINGARRAY
  88. BEGIN
  89.     STRING("")
  90.     STRING("void")
  91.     STRING("UINT, int, CWnd*, LPVOID")
  92.     STRING("%4 Add your VBX event notification handler code here")
  93.     STRING_BLANK
  94.     END_STRINGS
  95. END
  96.  
  97.  
  98. wmi_EN_CHANGE STRINGARRAY
  99. BEGIN
  100.     STRING("")
  101.     STRING("void")
  102.     STRING("")
  103.     STRING("%4 If this is a RICHEDIT control, the control will not")
  104.     STRING("// send this notification unless you override the %1::OnInitDialog()")
  105.     STRING("// function and call CRichEditCtrl().SetEventMask()")
  106.     STRING("// with the ENM_CHANGE flag ORed into the mask.")
  107.     STRING("%5")
  108.     STRING("%4 Add your control notification handler code here")
  109.     STRING_BLANK
  110.     END_STRINGS
  111. END
  112.  
  113. wmi_EN_CORRECTTEXT STRINGARRAY
  114. BEGIN
  115.     STRING("")
  116.     STRING("void")
  117.     STRING("NMHDR* pNMHDR, LRESULT* pResult")
  118.     STRING("ENCORRECTTEXT *pEnCorrectText = reinterpret_cast<ENCORRECTTEXT *>(pNMHDR);")
  119.     STRING("%4 The control will not send this notification unless you override the")
  120.     STRING("// %1::OnInitDialog() function to send the EM_SETEVENTMASK message")
  121.     STRING("// to the control with the ENM_CORRECTTEXT flag ORed into the lParam mask.")
  122.     STRING("%5")
  123.     STRING("%4 Add your control notification handler code here")
  124.     STRING_BLANK
  125.     STRING("*pResult = 0;")
  126.     END_STRINGS
  127. END
  128.  
  129. wmi_EN_DROPFILES STRINGARRAY
  130. BEGIN
  131.     STRING("")
  132.     STRING("void")
  133.     STRING("NMHDR* pNMHDR, LRESULT* pResult")
  134.     STRING("ENDROPFILES *pEnDropFiles = reinterpret_cast<ENDROPFILES *>(pNMHDR);")
  135.     STRING("%4 The control will not send this notification unless you override the")
  136.     STRING("// %1::OnInitDialog() function to send the EM_SETEVENTMASK message")
  137.     STRING("// to the control with the ENM_DROPFILES flag ORed into the lParam mask.")
  138.     STRING("%5")
  139.     STRING("%4 Add your control notification handler code here")
  140.     STRING_BLANK
  141.     STRING("*pResult = 0;")
  142.     END_STRINGS
  143. END
  144.  
  145. wmi_EN_MSGFILTER STRINGARRAY
  146. BEGIN
  147.     STRING("")
  148.     STRING("void")
  149.     STRING("NMHDR* pNMHDR, LRESULT* pResult")
  150.     STRING("MSGFILTER *pMsgFilter = reinterpret_cast<MSGFILTER *>(pNMHDR);")
  151.     STRING("%4 The control will not send this notification unless you override the")
  152.     STRING("// %1::OnInitDialog() function to send the EM_SETEVENTMASK message")
  153.     STRING("// to the control with either the ENM_KEYEVENTS or ENM_MOUSEEVENTS flag ")
  154.     STRING("// ORed into the lParam mask.")
  155.     STRING("%5")
  156.     STRING("%4 Add your control notification handler code here")
  157.     STRING_BLANK
  158.     STRING("*pResult = 0;")
  159.     END_STRINGS
  160. END
  161.  
  162. wmi_EN_PROTECTED STRINGARRAY
  163. BEGIN
  164.     STRING("")
  165.     STRING("void")
  166.     STRING("NMHDR* pNMHDR, LRESULT* pResult")
  167.     STRING("ENPROTECTED *pEnProtected = reinterpret_cast<ENPROTECTED *>(pNMHDR);")
  168.     STRING("%4 The control will not send this notification unless you override the")
  169.     STRING("// %1::OnInitDialog() function to send the EM_SETEVENTMASK message")
  170.     STRING("// to the control with the ENM_PROTECTED flag ORed into the lParam mask.")
  171.     STRING("%5")
  172.     STRING("%4 Add your control notification handler code here")
  173.     STRING_BLANK
  174.     STRING("*pResult = 0;")
  175.     END_STRINGS
  176. END
  177.  
  178. wmi_EN_REQUESTRESIZE STRINGARRAY
  179. BEGIN
  180.     STRING("")
  181.     STRING("void")
  182.     STRING("NMHDR* pNMHDR, LRESULT* pResult")
  183.     STRING("REQRESIZE *pReqResize = reinterpret_cast<REQRESIZE *>(pNMHDR);")
  184.     STRING("%4 The control will not send this notification unless you override the")
  185.     STRING("// %1::OnInitDialog() function to send the EM_SETEVENTMASK message")
  186.     STRING("// to the control with the ENM_REQUESTRESIZE flag ORed into the lParam mask.")
  187.     STRING("%5")
  188.     STRING("%4 Add your control notification handler code here")
  189.     STRING_BLANK
  190.     STRING("*pResult = 0;")
  191.     END_STRINGS
  192. END
  193.  
  194. wmi_EN_HSCROLL STRINGARRAY
  195. BEGIN
  196.     STRING("")
  197.     STRING("void")
  198.     STRING("")
  199.     STRING("%4 If this is a RICHEDIT control, the control will not")
  200.     STRING("// send this notification unless you override the %1::OnInitDialog()")
  201.     STRING("// function to send the EM_SETEVENTMASK message to the control")
  202.     STRING("// with the ENM_SCROLL flag ORed into the lParam mask.")
  203.     STRING(" ")
  204.     STRING("%4 Add your control notification handler code here")
  205.     STRING_BLANK
  206.     END_STRINGS
  207. END
  208.  
  209. wmi_EN_SELCHANGE STRINGARRAY
  210. BEGIN
  211.     STRING("")
  212.     STRING("void")
  213.     STRING("NMHDR* pNMHDR, LRESULT* pResult")
  214.     STRING("SELCHANGE *pSelChange = reinterpret_cast<SELCHANGE *>(pNMHDR);")
  215.     STRING("%4 The control will not send this notification unless you override the")
  216.     STRING("// %1::OnInitDialog() function to send the EM_SETEVENTMASK message")
  217.     STRING("// to the control with the ENM_SELCHANGE flag ORed into the lParam mask.")
  218.     STRING("%5")
  219.     STRING("%4 Add your control notification handler code here")
  220.     STRING_BLANK
  221.     STRING("*pResult = 0;")
  222.     END_STRINGS
  223. END
  224.  
  225. wmi_EN_UPDATE STRINGARRAY
  226. BEGIN
  227.     STRING("")
  228.     STRING("void")
  229.     STRING("")
  230.     STRING("%4 If this is a RICHEDIT control, the control will not")
  231.     STRING("// send this notification unless you override the %1::OnInitDialog()")
  232.     STRING("// function to send the EM_SETEVENTMASK message to the control")
  233.     STRING("// with the ENM_UPDATE flag ORed into the lParam mask.")
  234.     STRING(" ")
  235.     STRING("%4 Add your control notification handler code here")
  236.     STRING_BLANK
  237.     END_STRINGS
  238. END
  239.