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 ?
vgrigor
Posts
-
Please advice best TreeList controls for .NET ? -
How to connect variable to generated control ?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 ?
-
How to connect variable to generated control ?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
-
Please advice best TreeList controls for .NET ?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.
-
Please advice best TreeList controls for .NET ?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
-
Please advice best TreeList controls for .NET ?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.
-
How to remove old VSS bind from project ?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.
-
Visual studio not find .ocx control licence ?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?
-
Visual studio not find .ocx control licence ?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
-
How to make CDateTimeCtrl not editable, without arrows ?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 -
How to scroll CListView down ?I need to scroll CListView to bottom. How to do it? thanks.
-
How to change font of Labels in CDialog ?I will try. Thanks.
-
How to change font of Labels in CDialog ?Thanks you. Where to call it better ? In OnInitDialog() ?
-
How to change font of Labels in CDialog ?To whom I must send this message ? To Label ?
-
How to change font of Labels in CDialog ?thanks you . For not to make many classes - does my version of working is not possible or where incorrect?
-
How to change font of Labels in CDialog ?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
-
Are there somewhere good articles about MTS ?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.
-
Problem with CImage- at second call.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; } }
-
How to find - which area of Window made "invalid" ?No problem - not all people here have ones.
-
How to find - which area of Window made "invalid" ?thanks, but it is need to get size to draw as previously. But react as bigger thing. some clipRect function does not that ?