Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
V

vgrigor

@vgrigor
About
Posts
198
Topics
90
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Please advice best TreeList controls for .NET ?
    V vgrigor

    Thanks you for qualified respond. This control lookinsatisfying our basic requirements, but task - is to satisfy best, most usual features, to enchance controls, in the future.. That is about experience who used this controls, or know something. This control is Best - strategy for productivity in the future in common ?

    C# question csharp com

  • How to connect variable to generated control ?
    V vgrigor

    Witout new control creation - in a visual way, I can not do it programmatically - to just add some small functions, in inherited class? but continue to edit all other properties - visually. (control disappear from editor) As extending Buttton in other languages, pure programmatically ?

    C# tutorial question

  • How to connect variable to generated control ?
    V vgrigor

    I visually generated control, variable in code appears. But I have class derived from that type, (extend functionality to reuse), by which I want to handle visual part, I change type to derived, ... but editor not see precise type and removes control from the form. So, How to connect variable to control in such case ? Thanks

    C# tutorial question

  • Please advice best TreeList controls for .NET ?
    V vgrigor

    It is better to pay twice if abilities of control is twice, due to next work will be too easy with same control, but not new one need with new learning curve, and new curve to conect them and loose consistency. Need good control for most basic functions and most need in advanced programing.

    C# question csharp com

  • Please advice best TreeList controls for .NET ?
    V vgrigor

    Please advice best TreeList controls for .NET ? I need to choose what to buy. DevExpress suite -to compare with. What is else best graphical suites there are on market for .NET ? Thanks. What is the best from that : ? http://www.componentsource.com/Catalog.asp?fl=&gf=+BUSFUNCLISTCO&gd=Treeview+and+List&bc=&sc=CS

    C# question csharp com

  • Please advice best TreeList controls for .NET ?
    V vgrigor

    Please advice best TreeList controls for .NET ? I need to choose what to buy. DevExpress suite -to compare with. What is else best graphical suites there are on market for .NET ? Thanks.

    C / C++ / MFC question csharp

  • How to remove old VSS bind from project ?
    V vgrigor

    How to remove old VSS bind from project ? When old project loads, i says that provider is not correct, but disconnect and unbind in Visual studio, not helps. How to remove that old bind ? And how to reconnect to new VSS ? Thanks.

    C / C++ / MFC csharp visual-studio tutorial question

  • Visual studio not find .ocx control licence ?
    V vgrigor

    I made command "repair/reinstall" in setup dialog. reloaded OS - and this is not works to differ from other controls. Do you have same named licence file ? Can send to me?

    C / C++ / MFC csharp visual-studio question

  • Visual studio not find .ocx control licence ?
    V vgrigor

    When I try to place Ms FlexGrif control (MSFlexGridCtrl - :\WINNT\system32\msflxgrd.ocx) to dialog template, it says: MS FlexGrid Ctrl - no "disign time licence" ? what does it means ? Not correctly installed Visual studio? Thanks

    C / C++ / MFC csharp visual-studio question

  • How to make CDateTimeCtrl not editable, without arrows ?
    V vgrigor

    I need to make CDateTimeCtrl not editable, without arrows ? m_Planer.m_Current_Date .ModifyStyle(0, DTS_SHORTDATEFORMAT); m_Planer.m_Current_Time .ModifyStyle(0, DTS_TIMEFORMAT); //works not works: m_Planer.m_Current_Date .ModifyStyle(DTS_UPDOWN | DTS_APPCANPARSE ,0 ); How to do subject? thanks

    C / C++ / MFC tutorial question

  • How to scroll CListView down ?
    V vgrigor

    I need to scroll CListView to bottom. How to do it? thanks.

    C / C++ / MFC tutorial question

  • How to change font of Labels in CDialog ?
    V vgrigor

    I will try. Thanks.

    C / C++ / MFC tutorial question

  • How to change font of Labels in CDialog ?
    V vgrigor

    Thanks you. Where to call it better ? In OnInitDialog() ?

    C / C++ / MFC tutorial question

  • How to change font of Labels in CDialog ?
    V vgrigor

    To whom I must send this message ? To Label ?

    C / C++ / MFC tutorial question

  • How to change font of Labels in CDialog ?
    V vgrigor

    thanks you . For not to make many classes - does my version of working is not possible or where incorrect?

    C / C++ / MFC tutorial question

  • How to change font of Labels in CDialog ?
    V vgrigor

    I want to change font of static labels in CDialog, to Bold I think it need be dont in OnCtlColor, by getting font from CDC changing and SelectObject(font) from it. But when I try toget current font as CFont* pOldFont = pDC->SelectObject(&TmpFont); that returns NULL; But label is written by some font ? How to get it? And command to change ? thanks

    C / C++ / MFC tutorial question

  • Are there somewhere good articles about MTS ?
    V vgrigor

    I need to know all main features of MTS, in details suffitient for passing exam MCSD 70-015 Distributed C++, I need articles desribing in some parts following program: (Read english topics) http://www.stars-s.ru/course.asp?c\_no=48&d\_no=141 or http://www.stars-s.ru/course.asp?c\_no=48&d\_no=17330 Do someone know good articles about ISAPI, in a looking like that program? Very need. Thanks.

    C / C++ / MFC c++ question learning

  • Problem with CImage- at second call.
    V vgrigor

    I need to use class CImage, to get Pixels from hBitmap.. I want to use this class in ATL ActiveX dll, whick can be in more that one number created. But following simple code crushes after second call of it, due to some static members of CImage, (not first) It is need be correctly freed, how to do it? Thanks. Code which makes ASSERT, at second call - in other DLL: l_pImage = new CImage(); l_pImage->Attach(hBitmap); //hrgn = CreateRegionTrCr( l_pImage, cTransparentColor); pImage->GetPixel(0, 0); ///HERE !!!! //pImage->Detach(); //pImage->ReleaseGDIPlus(); delete l_pImage; __________ ATL code containing error: inline COLORREF CImage::GetPixel( int x, int y ) const throw() { ATLASSERT( m_hBitmap != NULL ); ATLASSERT( (x >= 0) && (x < m_nWidth) ); ATLASSERT( (y >= 0) && (y < m_nHeight) ); GetDC(); COLORREF clr = ::GetPixel( m_hDC, x, y ); ReleaseDC(); return( clr ); _________ inline void CImage::ReleaseDC() const throw() { HBITMAP hBitmap; ATLASSERT( m_hDC != NULL ); m_nDCRefCount--; if( m_nDCRefCount == 0 ) { hBitmap = HBITMAP( ::SelectObject( m_hDC, m_hOldBitmap ) ); ATLASSERT( hBitmap == m_hBitmap ); //<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< HERE !!<<<<<< s_cache.ReleaseDC( m_hDC ); m_hDC = NULL; } }

    C / C++ / MFC help c++ dotnet com tutorial

  • How to find - which area of Window made &quot;invalid&quot; ?
    V vgrigor

    No problem - not all people here have ones.

    C / C++ / MFC tutorial question

  • How to find - which area of Window made &quot;invalid&quot; ?
    V vgrigor

    thanks, but it is need to get size to draw as previously. But react as bigger thing. some clipRect function does not that ?

    C / C++ / MFC tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups