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

  • Users: dima2
  • 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

    How to redistribute MS Speech SDK TTS with the application?

    you install the SAPI and then directly use it's functions from inside your application
  3. dima2

    how to use GetDlgCtrlID

    why would you want to have the id of the control? there might be another way to achieve your goal
  4. 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...
  5. dima2

    how to use GetDlgCtrlID

    instead of "this" u should have a pointer to the edit itself in your code you are asking GetDlgCtrlID to return the id of your dialog and not that of the edit
  6. 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
  7. 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...
  8. 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
  9. dima2

    How to redistribute MS Speech SDK TTS with the application?

    check this out Microsoft Knowledge Base Article - Q320207 How to Redistribute SAPI 5.1 Core Components
  10. 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...
  11. 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...
  12. dima2

    prblems with GlobalFree in drag and drop

    thanks for your help, however I tried both solutions and none of them solved the problem. As a matter of fact I also noticed that whether I free the data or not all calls to GlobalAlloc return the same handle (the same pointer is always returned by GlobalLock) is it possible for the system to...
  13. 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* )...
  14. 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...
  15. 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 =...
  16. dima2

    how do i display unicode fonts?

    did you compile your project with the _UNICODE option set? if you do that, all used strings will be in unicode input and output
  17. 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...
  18. 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...
  19. dima2

    Initializing Porperty Page with values from registry

    if your radio buttons are grouped, than assign a member variable to the radio that has the group option set (in the resource editor). this variable is an integer , u can assign values to it from 0 to 4 (if 0 the first radio is selected, if 1 the second and so on). you need to do the assigning in...
  20. dima2

    maximize a dialog window

    have you tried calling ShowWindow(SW_MAXIMIZE) in the OnInitDialog handler

Part and Inventory Search

Back
Top