Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. koeicjm

    How to break the 260 bytes limitations of CTreeCtrl Item

    Using this technic I can't display strings wider than 260 characters, and modifying pDispInfo->item.cchTextMax has no influence. Does anybody has a solution or a clue ?
  2. koeicjm

    combobox focus event

    I want to capture the shift+tab event when my combo got focus, it is ok when I set the combobox DROPDOWNLIST, but when the combobox set to DROPDOWN, I can not capture the event if the focus is hold by the combobox, code like this: BOOL CMyDlg::PreTranslateMessage(MSG* pMsg) { if(...
  3. koeicjm

    CTreeCtrl 's default tools tip

    CTreeCtrl 's default tools tip,tip can only show the item which has more than 30 letters, how can I set it be shown all item ?
  4. koeicjm

    how can I make this edit box

    I want to make an edit control like the edit box of the excel which is at the tools bar . when input words are longer than the length of the line ,it can resize the edit box , how can I do it?
  5. koeicjm

    ping 224.0.0.1 question

    My server application use Multicast to make broadcast, so My client application that run at win2k can know which server is running anytime. the server application run at Host A is not list in the running server list , the client application can find server application run at other hosts,just...
  6. koeicjm

    ping 224.0.0.1 question

    I have some redhat7.3 servers in my lan. Host A, B...... When I run "ping 224.0.0.1" from Host B, Host A donot give an answer, but When I run "ping 224.0.0.1" at host A, Host A and B give an answer too. it seems A is not in the all-hosts group. any idea?
  7. koeicjm

    telnet idle time question

    Hello, My Server is Freebsd4.3 , and I can telnet from my client to my server , the question is the telnetd seems have I idle time set , so after a lot of time with idle , the client will be logouted. Can I unset it? Thanks in advance
  8. koeicjm

    Is it the best choose to use visio to design windows interface

    I want to design my interface of my windows program which should have listbox , main dialog , editbox ,is it the best choose to use visio to do it ? I have visio 2000 , where can I find some sample of "windows interface".
  9. koeicjm

    "Grid List Control" question

    I am using the free sample "Grid List Control" from Rexyer. I found it from free source site www.codeguru.com : http://www.codeguru.com/listview/grid_list_control.shtml It can just do what I want , and worked fine. but I found if I input some japanese string to the editbox and if the...
  10. koeicjm

    question of modeless dialog (jchen)

    I use "Create" to open a child modeless dialog, when I left click the main dialog 's top bar, the main dialog can not be viewed completely except I make the TestDlg minimum size . how can I view the main dialog completely without making the TestDlg minimum My code is TestDlg...
  11. koeicjm

    (CEdit )how can I add myself right click menu item ?

    The CEdit has right click menu defaultly , how can I add myself menu item to it? Why the multuline RichEdit havenot right click menu defaultly ?
  12. koeicjm

    how to get content line by line from CRichEditCtrl (jchen)

    I want to get the content Line by line from a CRichEditCtrl variable, but something seems wrong. Using this code I can got successly from a CEdit , what is different from CEdit and CRichEditCtrl?? m_sNyme = &quot;&quot;; for ( iLine = 0;iLine < m_Edit_Nym.GetLineCount();iLine++){ iIndex =...
  13. koeicjm

    how to change CEdit 's ctrl+enter

    sorry, I mean's ctrl+tab to input a tab, I want to input tab use key &quot;tab&quot; only.
  14. koeicjm

    question of PreTranslateMessage

    I use TestDlg::PreTranslateMessage(MSG* pMsg) to delete the enter accept in my dialog, How I can use &quot;enter&quot; in my other control of the dialog.
  15. koeicjm

    how to change CEdit 's ctrl+enter

    I can use Ctrl+enter to input a enter in multiedit CEdit, how can I change it to normal enter.
  16. koeicjm

    Question of CEdit 's wraped when more than 1024 letter

    I use multiline CEdit as an editor , but I found when I input letter more than 1024, it wraped column auto. how can view my line as a line even more than 1024.
  17. koeicjm

    does modeless dialog need a &quot;delete&quot;

    does modeless dialog need a &quot;delete&quot;, or is the &quot;destroywindow&quot; enough for it? if the delete is need,when do it?
  18. koeicjm

    how can I do a reflexive sort on CTreeCtrl

    how can I do a reflexive sort on CTreeCtrl
  19. koeicjm

    are there some class to do editting like excell

    Are there something vc control to do the editing like excell? how can I make it?
  20. koeicjm

    Can I use stl &amp; mfc?

    Can I use stl & mfc? The stl have vector,list . how does vc use it like list<CString> , list<Class1 *> . how to use hash table in vc?

Part and Inventory Search

Back
Top