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
T

try88

@try88
About
Posts
33
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • new cartoons
    T try88

    to respect each other ,to better the world ! the thing you think simple may not by other views . please ! 路漫漫其修远兮,吾将上下而求索。

    The Back Room html com

  • ClistCtrl - centralize image
    T try88

    use SetImageList() 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC question

  • visual studio 2003 MFC/SDI help drawing
    T try88

    when access the NULL pointer ,the ERROR would appeal .

    ALTF4 wrote:

    Unhandled exception at 0x7c28af6a (mfc71d.dll) in seminarska.exe: 0xC0000005: Access violation reading location 0x00000004.

    the variable CBrush pisalo in the funtion risi() is abuse when for-loop run . so you should define a ptr outside for-loop like this ... CBrush* pBrush ; ... for(..) { pBrush= new CBrush(...) tabla->FillRect(..); delete pBrush; } 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC help csharp c++ visual-studio graphics

  • SQL
    T try88

    try this,may work. select x.field1,y.field2 from tbl1 as x,tbl2 as y where x.field3 != y.field3 青山隐隐水迢迢,秋尽江南草未凋。二十四桥明月夜,玉人何处教吹箫。

    Database database

  • How to convert TCHAR to char
    T try88

    int MultiBytetoWideChar(....) look up the MSDN for detail 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC question data-structures tutorial

  • Frailty of life
    T try88

    best wishes to your friend!! tell her there are hopes eveywhere with surprise! 路漫漫其修远兮,吾将上下而求索。

    The Lounge com tools question lounge

  • Header control
    T try88

    read more carefully about the method int InsertItem( int nPos, HDITEM* phdi ); it provides all you what 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC question

  • gui problem
    T try88

    every type of application can be content what you want,but more important is that you should write a derived class from CButton(for example),and override some virtual methods and message-functions. reference to articles here meybe give you a hand 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC help c++ question

  • How to destroy a dialog after timeout
    T try88

    try this : SetTimer(..) and OnTimer(..) { if(timeout) close dialog KillTimer(..) } 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC question tutorial

  • How do I access the 'ProductVersion" from VS_VERSION_INFO
    T try88

    BOOL CString::LoadString( UINT nID ); throw( CMemoryException ); Return Value Nonzero if resource load was successful; otherwise 0. Parameters nID A Windows string resource ID. Reads a Windows string resource, identified by nID, into an existing CString object. The following example demonstrates the use of CString::LoadString. // example for CString::LoadString #define IDS_FILENOTFOUND 1 CString s; if (! s.LoadString( IDS_FILENOTFOUND )) { AfxMessageBox("Error Loading String: IDS_FILENOTFOUND"); ... } 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC visual-studio tutorial question announcement learning

  • Using Microsofts Windows XP icons? Licensing?
    T try88

    you has better alter the icon not fully the same as M$ or you may be some day charged with.... 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC question

  • how to confirm the tree item selected
    T try88

    thank you !! Maximilien wrote: SetItemData to identify it is just what i searching for days! God will bless you!! thank you !! 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC data-structures tutorial

  • managing char arrays
    T try88

    str.GetBuffer will work! 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC question data-structures help tutorial

  • How many instances???
    T try88

    just write two constructors function 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC question

  • how to confirm the tree item selected
    T try88

    so sad it doesn't help :( 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC data-structures tutorial

  • how to confirm the tree item selected
    T try88

    look at this figure: ----------------- 1 --1-------------- 2 ---1。1-------- 3 ---1。2-------- 4 ---1。3-------- 5 --2-------------- 6 ---2。1-------- 7 ---2。2-------- 8 ---2。3-------- 9 you know when i click the item for example item 4 which is"---1。2--------"; the question is how can i know that i clicked the item is item4 not others by code in my function OnSelchangedTree1(NMHDR* pNMHDR, LRESULT* pResult) ? that means how to judge the item clicked is the one i want in code. your hint using GetItemText( ... ) maybe bot work when my item text is put dynamically,for you even not konw the exact text. 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC data-structures tutorial

  • how to confirm the tree item selected
    T try88

    yes i am ,TVN_SELCHANGED or NM_CLICK you know the answer? please give a hint 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC data-structures tutorial

  • how to confirm the tree item selected
    T try88

    hi :-D what i mean is that if i clicked the item4 "---1。2--------" ,how to confirm i real did that in code. ----------------- 1 --1-------------- 2 ---1。1-------- 3 ---1。2-------- 4 ---1。3-------- 5 --2-------------- 6 ---2。1-------- 7 ---2。2-------- 8 ---2。3-------- 9 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC data-structures tutorial

  • Extreme Programming Vs. BDUF
    T try88

    follow the xp style make users quickly familiar with your software but without personal character, however if not,there would be opposition; so as i think,if your softs have great users ,please think about the users' convenience firstly, to the reverse,you want to stand out of others ,try some other style maybe work. 路漫漫其修远兮,吾将上下而求索。

    The Lounge visual-studio design collaboration question

  • Help! CString convert to LPBYTE ?
    T try88

    try this function :str.GetBuffer(0) 路漫漫其修远兮,吾将上下而求索。

    C / C++ / MFC question help
  • Login

  • Don't have an account? Register

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