ok, how we can do this? can u explain please?
zakkas2483
Posts
-
Opp Concept -
Opp ConceptHello all, I m having three different Link-list say apple,mango,banana. I need to implement common delete function for all the link-list. Is it possible? Thank You...
-
datetime control on Windows mobile 5.0 win32 application.Respected all, I am working with win32 application for windows mobile 5.0. I need use datetime control on one of the my dialog box. after adding the datetime control on the dialog box. The application compiled successfully but that dialog box is not loaded while running application. Thank you. Hiren.
-
GetScrollBarCtrl( ) alternative api in win32.Thank you... :)
-
GetScrollBarCtrl( ) alternative api in win32.I am having code in MFC. DWORD dwStyle = GetStyle(); CScrollBar* pBar = GetScrollBarCtrl(SB_VERT); bool bHasVertBar = ((pBar != NULL) && pBar->IsWindowEnabled()) || (dwStyle & WS_VSCROLL); I need same code in Win32. Probably this MFC code will help other to understand my question. Thank You.
-
GetScrollBarCtrl( ) alternative api in win32.Thank you.. I am having problem with the solution. Initially Edit control having v-scroll in disable mode. Your solution will give true even scroll bar is disable.
-
GetScrollBarCtrl( ) alternative api in win32.I am having one Edit Control on my application and edit control having VScroll bar in disable mode. at one stage i need to know that this Vscroll is enabled or not? for that i need handle of VScroll bar. Thank You.
modified on Friday, May 29, 2009 8:13 AM
-
GetScrollBarCtrl( ) alternative api in win32.Hi all, I wanted to know,that is Edit control's scroll bar enabled from win32 code?
-
Copy text in Memory DC.Modified code: case WM_PAINT: { HDC hdc; hdc= CreateCompatibleDC(NULL); HBITMAP hBit = CreateCompatibleBitmap( hdc,m_rect.right- m_rect.left, m_rect.bottom - m_rect.top ); SelectObject( hdc, hBit ); TextOut( hdc,0,0, "Check Text", strlen( "Check Text" ) ); BitBlt(GetDC(hWnd), m_rect.left, m_rect.top, m_rect.right - m_rect.left, m_rect.bottom-m_rect.top,hdc, m_rect.left, m_rect.top, SRCCOPY); } Still the code is not working. Thank You :)
-
Size variation for a windowTry MoveWindow() Function. http://msdn.microsoft.com/en-us/library/ms633534(VS.85).aspx[^]
-
Copy text in Memory DC.I am working with win32 application. I wanted to copy text using TextOut( ) in to temp DC (not original DC). then after BitBlt( ) copy temp DC in to original DC. Here is my code please correct it. case WM_PAINT: { HDC hdc; hdc= CreateCompatibleDC(NULL); TextOut( hdc,0,0, "Check Text", strlen( "Check Text" ) ); BitBlt(GetDC(hWnd), m_rect.left, m_rect.top, m_rect.right - m_rect.left, m_rect.bottom-m_rect.top,hdc, m_rect.left, m_rect.top, SRCCOPY); }
-
TreeView ControlNo such a property available on windows mobile. Thank you,
-
TreeView ControlThank you for the Reply. As I am working on Windows Mobile 6.0 Application. It is not working for me. Thank you, is there any other solution?
-
TreeView ControlIs there any way to increase the Height of treeview control's items? Thank You.
-
[Message Deleted]Hi, What i need is some what different from what you send me. I need to replace the [+/-] buttons of tree control that needs custom drawing of control. One big problem with is my working with pure win32 not MFC. What I need, it is at VividTree - A Colorful and Picturesque Owner Drawn CTreeCtrl Class[^]. but it is in MFC i need to convert this in wn32 code. But i am facing problem while BitBlt of arrow buttons in DrawItem( ) of that code. Please Help.
-
[Message Deleted][Message Deleted]
-
Handling Shift + Tab key combinationRegisterHotKey() Will work for you. http://msdn.microsoft.com/en-us/library/ms646309.aspx[^]
-
Tab ControlThank You 4 Reply my Question. Yes, i don't want to Select the Tab but only highlight the one of the TAB to indicate that some think is new in that Highlighted TAB.
-
Tab ControlHello All, I need to highlight the one of TAB of Tab Control. but TabCtrl_HighlightItem() is not working for me. Thank You in Advance.
-
Need to change the Default Font of Control in my win32 codeI m getting Error Message "CreateFont: identifier not found".