CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Yannick Suter

Page 1 of 4 1 2 3 4

Search: Search took 0.11 seconds.

  1. missing WM_QUERYUISTATE msg for COM dialog (C#) (interop call from vb client)

    I've implemented a non-modal dialog as a C# COM component, which I'd like to call from different client-apps (interop).

    I have tested the dialog using a c# client app. the dialog comes up properly...
  2. Replies
    0
    Views
    437

    VS Version

    I'm using VS6.0 SP5.. when I do the same for menu subitems there is absolutly no redraw problem (because the subitem is not visible and therefore is forced to be redrawn) when next time you open the...
  3. Replies
    4
    Views
    620

    Menu does not update just on time

    I want to be able to disable menu when special action happen.. this for I implemented following lines:

    in the CMainframe..

    CMenu* pMnu = GetMenu();
    if(pMnu) {
    pMnu->EnableMenuItem(2,...
  4. I found the solution - just in case someone is...

    I found the solution - just in case someone is looking for something similar...

    use:
    CClientDC dc(this);
    OnPrepareDC(& dc);
    dc.DPtoLP(& point);

    .. to convert your point
  5. Getting the "relativ" mouseposition from a Scrollview

    I've implemented the QZoomScrollview I found on the codeguru page. I'm catching a mouseclick - now the problem is, that the point I get is the absolute view-coordinate. (0,0 for top-left corner...
  6. Replies
    1
    Views
    541

    QZoomView

    I had a closer look at this example I found in the MFC doc/view section on codeguru and it's exactly what I'm looking for.. I tried to blit some bitmaps onto the ZoomView and they came.. but...
  7. Replies
    5
    Views
    3,127

    Test: OnKillFocus is empty

    I reformat the input. this cannot be done in realtime (OnChange) coz this would run the user dizzy! =) so I wait until the input is done and as soon as the control is change I can validate/reformat...
  8. Replies
    5
    Views
    3,127

    called twice

    in my case it happens everytime I change the control (normal behaviour).. I will try to figure out the problem using spy++.

    thanks for all your help.

    Yannick
  9. Replies
    5
    Views
    3,127

    killfocus WM message handled twice

    I derivated a edit control to add numeric-format functionality. I needed to use

    ON_CONTROL_REFLECT(EN_CHANGE, OnChange)
    ON_CONTROL_REFLECT(EN_SETFOCUS, OnSetfocus)...
  10. Replies
    0
    Views
    706

    IE Plugin Programming

    is it possible to programm a plugin for IE (only)? I mean, I want to implement something like the "favorites" button but with my functionality behind.
    Is this idea basically realistic? is it...
  11. Replies
    1
    Views
    639

    get IE Certificate

    Hi,
    how is it possible to get the information, whether a http-page is secure or not. I mean.. I want to check, if the page I'm browsing on, is protected/encrypted or not (which in IE is symbolized...
  12. Replies
    1
    Views
    846

    ATL controls not found

    Hi!
    I just tried to compile a Outlook Addin Source which I found on th MS homepage. I have DevStd 6.0 with the latest service-pack, but I get this error:

    Cannot open include file:...
  13. DevStd Addin: Function declaration/implementation switcher

    hi all!
    is there a plugin or setup to assign a key to a declaration/implementation sourcecode switcher? this would be enourmesly helpful!

    thanks a lot in advance..

    cheers,
    Yannick
  14. Replies
    0
    Views
    674

    msvc++ example: MIDImon

    hi!
    I have a little problem with the example: MidiMon from the msvc++ help. the first time I start the app (debug/release) everything is fine. then I close it. the next time I start the app again,...
  15. Replies
    3
    Views
    9,763

    Re: #pragma warning (disable : 4786)

    ahh, thanks a lot!
    Y
  16. Replies
    3
    Views
    9,763

    #pragma warning (disable : 4786)

    I use list and set templates in my SDI MFC APP. well, I have no problems with them, but always when I rebuild the whole project I get 40 warnings!

    I tried to disable them by using:
    #pragma...
  17. Replies
    0
    Views
    1,506

    TVS_SHOWSELALWAYS

    hi all!
    I'have attached a [CMyListView:public CListView] derived class to an dockingBar of a SDI app.

    I set to SHOWSELALWAYS option by adding this code:

    BOOL...
  18. Replies
    5
    Views
    7,657

    Re: LVS_OWNERDRAWFIXED in CListCtrl

    hmm.. I noticed, that there is the same "bug" when you're using

    [CMyView: public CView] which "hosts" the [CMyListCtrl:public CListCtrl]

    that's bad! =( I got a working version: instead of a...
  19. Replies
    5
    Views
    7,657

    Re: LVS_OWNERDRAWFIXED in CListCtrl

    I have the exact same problem!

    did you found any way to solve this problem?

    Greetings,Yannick
  20. Replies
    1
    Views
    516

    bold selection in ListCtrl?

    Hihoe.
    is it possible to make the selected item in a listCtrl font::bold?

    thanks a lot in advance!
    Yannick
  21. Replies
    0
    Views
    811

    HTML Offscreen rendering

    hi!
    is it possible to render a HTML-page to an offscreen buffer using HTML-view?

    I would like to use this to render a page into a buffer and from this into a RAW-file.

    thanks a lot in...
  22. Replies
    2
    Views
    582

    Re: D&D File into SDI

    thanks! I had just to call

    m_pMainWnd->DragAcceptFiles(TRUE);

    to enable this feature.

    greeting,
    Yannick
  23. Replies
    2
    Views
    582

    D&D File into SDI

    Hihoe!
    I'm programming a simple SDI app. it's a little tool to visualize 3d objects. Everything works fine. I want to add to possibility to Drag&Drop File onto the SDI-Workspace to open them. Code...
  24. finding MemLeaks in WIN32 nonMFC app

    hi!
    I'm a bit worried about memleaks in an app I'm writing. In MFC it's so simple to get these leaks, but as I'm working on a Win32 app without MFC support, no leak are reported even if there should...
  25. Replies
    0
    Views
    559

    Character Map Index??

    Hello
    I've heavy problems understanding the character indexes shown by "character map". especially for the TTF MSGothic.. it seems, that the indexes are not linear.

    but first: what means..

    U +...
Results 1 to 25 of 83
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured