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 wOOdy-Soft 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: *

  • Users: dima2
  • Content: Threads
  • Order by date
  1. dima2

    web browser control for pocket pc

    Hi, I'm looking for a web browser control to use in my MFC application for WinCE. something similar to CWebBrowser2 available on windows. Does anyone know if such a control exist? thanks
  2. dima2

    defining own events for notification and sounds

    hi, I'm developping a pocket pc application using evc and I was wondering if there's a way that I can define my own events for notification and sounds. I noticed that in the registry under ControlPanel\Notification there are some event names that would appear when the user enters...
  3. dima2

    need rich text activex control for WinCE

    hi, where can I find ActiveX controls for windows CE? what I need is a rich edit control. I know that there's a Rich Textbox control for Win32, is there an equivalent for it for wince? thanks
  4. dima2

    rich edit control for pocket pc

    hi, I'm developping an MFC application for pocket pc and I need an edit control that supports font and text color. Since CRichEditCtrl is not supported on winCE, does anyone have an idea where can I might find a substitute? Is there any activeX control that might do the job? if so, where can I...
  5. dima2

    rich edit control

    hi, is there a control that accepts text formatting ? as I understand CRichEditCtrl is not supported on winCE, is there a substitute? thx
  6. dima2

    change class name of a dialog

    hi, actually what I'm trying to do is detect if applicationA is running and end it. From applicationB I need to call FindWindow providing the class name of the main window of applicationA, get it's handle and post a WM_DESTROY message. Therefore I need to register my class with a specific...
  7. dima2

    CListCtrl : item image hilighting

    Hi, I have a CListCtrl (report style) in a dialog box. Each Item is inserted with a specific image. I have come across this weird behaviour, and hope someone might be able to explain it to me: if I select an item from the list when previously the focus was on another control, only the text is...
  8. dima2

    prblems with GlobalFree in drag and drop

    hi, I'm trying to implement drag and drop property in my dialog based application, by using COleDropTarget and COleDataSource. OnBeginDrag I allocate global memory, cache global data and call DoDragDrop HANDLE hdata = GlobalAlloc ( GPTR, sizeof ( TVITEM ) ) ; TVITEM *pItem = ( TVITEM* )...
  9. dima2

    drag and drop onto a CRichEditCtrl

    hi, I have a CRicheditCtrl and a CListCtrl on a dialog. what I'm trying to do is drag an item from a CTreeCtrl placed on another dialog onto either the list or the richedit. As far as the list is concerned I have overriden the OnDragOver, OnDragEnter and OnDrop functions of COleDropTarget. I...
  10. dima2

    calling CListCtrl::SortItems() twice in a row

    hi, I'm trying to sort the items in a CListCtrl. I followed the instructions of the MSDN documention. I wrote a callback function static int CALLBACK MyCompareProc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort) { CListCtrl* pListCtrl = (CListCtrl*) lParamSort; CString strItem1 =...
  11. dima2

    clistctrl sorting problem

    hi, I'm developing an MFC dialog based application. in my dialog i have a CListCtrl object in which i've inserted 3 columns. Whenever I insert a new item in the list i set it's itemdata equal to it's index. what i'm trying to do is sort the items in alphabetical order based on the text in a...
  12. dima2

    clistctrl sorting problem

    hi, I'm developing an MFC dialog based application. in my dialog i have a CListCtrl object in which i've inserted 3 columns. Whenever I insert a new item in the list i set it's itemdata equal to it's index. what i'm trying to do is sort the items in alphabetical order based on the text in a...
  13. dima2

    CListCtrl : NM_CLICK message handler not getting called

    Hi, I have a dialog based application, in my dialog I placed a CListCtrl and using the class wizard I added a handler for the NM_CLICK message. my problem is the following: - when the dialog is first created, clicking on the list for the first time does not call the message handler I have to...
  14. dima2

    CListCtrl : NM_CLICK message handler not getting called

    Hi, I have a dialog based application, in my dialog I placed a CListCtrl and using the class wizard I added a handler for the NM_CLICK message. my problem is the following: - when the dialog is first created, clicking on the list for the first time does not call the message handler I have to...
  15. dima2

    RTL layout for message box

    hi, is there a way to change the layout and button text of a message box created with AfxMessageBox? (I want to have a right to left layout) thx
  16. dima2

    RTL layout for message box

    hi, is there a way to change the layout and button text of a message box created with AfxMessageBox? (I want to have a right to left layout) thx
  17. dima2

    how to : detect pasting text to a rich edit control ?

    hi is there a way to get a notification when the user pastes text to a rich edit control ? thx
  18. dima2

    how to : detect pasting text to a rich edit control ?

    hi is there a way to get a notification when the user pastes text to a rich edit control ? thx
  19. dima2

    how to : detect pasting text to a rich edit control ?

    hi is there a way to get a notification when the user pastes text to a rich edit control ? thx
  20. dima2

    unicode mfc application using rich textbox under windows 98/ME

    hi, i have a unicode MFC application that I wish to run on Windows 9x/Me. for that purpose I linked with unicows.lib before linking to any other libray. however and since I'm using MFC as a shared dll I had to rebuild the CRT and MFC libraries. /nod:kernel32.lib /nod:advapi32.lib...

Part and Inventory Search

Back
Top