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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
A

anjita

@anjita
About
Posts
20
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to flash a message in MFC
    A anjita

    I want to display a Message box to the user for some time only without waiting for its reponse i wish to move ahead How to achieve this . Please help me out

    C / C++ / MFC c++ adobe help tutorial

  • Reports
    A anjita

    I have developed a databse application using vc6 and database is MS Access 97 . Now for reports we have got two options either we can use Crystal Report or we can go for MS Access reports . If someone could please help me to decide which one would be a better option and could suggest some tutorials for crystal reports cos i am a newibie

    C / C++ / MFC database help

  • Database
    A anjita

    I have to make an application which would access MS accesss datatbase . I have some experience on VC++ 6 (MFC)but never worked in this field Please if anyone could suggest me some articles or tutorials or sample codes I would be grateful to all

    C / C++ / MFC c++ database

  • To change bitmap on toolbar button
    A anjita

    I want to change the bitmap of my toolbar button during runtime i.e initially the bitmap is x on pressing it should change to y bitmap how do i do that please help me out i am unable to find the right solution Thanks in advance

    C / C++ / MFC graphics help question

  • Bitmap on toolbar button
    A anjita

    I want to change the bitmap on my toolbar button when user presses the button i.e. if initially its showing x bitmap then when user presses it it should show y bitmap on that coreesponding button Thanx in advance

    C / C++ / MFC graphics

  • Moving Linee on a image [modifed]
    A anjita

    in my code i am displaying a bmp image Now i want to display a moving straight line from top to bottom on my image The problem i am facing is the previous line i am displaying using for(int i = 0 ; i < 10 ; i++) { dc.SelectStockObject(WHITE_PEN); dc.MoveTo(pStart); dc.LineTo(pEnd); pStart.y = pStart . y + ldlist; pEnd . y = pStart . y ; } remains but i want everytime only a single line should be shown where ldlist is the distance my line shud move -- modified at 6:12 Saturday 20th May, 2006

    C / C++ / MFC help

  • Flip an image
    A anjita

    Thanks a lot this solved my problem

    C / C++ / MFC c++ help

  • Flip an image
    A anjita

    No this is not helping by doing this i can see only the black box in the destination

    C / C++ / MFC c++ help

  • Flip an image
    A anjita

    I am displaying an image using dib class . now i wish to flip my image horizontally as well as vertically ::StretchDIBits(pDC->m_hDC, // hDC lpDCRect->left, // DestX lpDCRect->top, // DestY RECTWIDTH(lpDCRect), // nDestWidth RECTHEIGHT(lpDCRect), // nDestHeight lpDIBRect->left, // SrcX lpDIBRect->top, // SrcY m_pBMI->bmiHeader.biWidth,//RECTWIDTH(lpDIBRect), // wSrcWidth RECTHEIGHT(lpDIBRect), // wSrcHeight m_pBits, // lpBits m_pBMI, // lpBitsInfo DIB_RGB_COLORS, // wUsage SRCCOPY); // dwROP As per MSDN Documents i am changing the sign also but i am unable to get th desird result Please if someone could help me out I am new to vc++ -- modified at 6:26 Friday 19th May, 2006

    C / C++ / MFC c++ help

  • Nested Splitter window
    A anjita

    In my code i have created a splitter window in which i have first created 1 row and three column and then i have again splitted the secon column into 2 rows and 1 column I am able to get the viewtype of I and III column but i am unable to get the viewtype of the middlecolumn(II and III) which is a nested window By viewtype handler i mean this CFileListView* CMainFrame::GetLeftPane() { CWnd* pWnd = m_wndSplitter.GetPane(0,0); CFileListView* pView = DYNAMIC_DOWNCAST(CFileListView, pWnd); return pView; } Please experts help me out i acnt move forward until and unless i solve this problem -- modified at 7:21 Friday 12th May, 2006

    C / C++ / MFC help

  • Password Dialog Box
    A anjita

    Even this is not working On preesing the cancel the screen is displayed

    C / C++ / MFC help

  • Password Dialog Box
    A anjita

    I want to give password protection to one of my screens. I am calling this do while loop in the initinstance of that screen the problem is now if i press cancel button then the password dialog box should go but its not going and if its going then it opens my screen. do { if(password.DoModal()==IDOK) { if(password.m_strPassword !=File.getKeyValue("PASSWORD","password")) AfxMessageBox("Invalid Password "); } }while(password.m_strPassword !=File.getKeyValue("PASSWORD","password")); Please Help me out

    C / C++ / MFC help

  • Display Selected Folder Files
    A anjita

    Thanx for the help !!!!!!!! :)

    C / C++ / MFC help learning

  • Display Selected Folder Files
    A anjita

    Thanx for the help !!!!!!!!

    C / C++ / MFC help learning

  • Display Selected Folder Files
    A anjita

    Yes I want to list all the file names in the selected folder If anyone could help me out please I am just a beginner

    C / C++ / MFC help learning

  • Display Selected Folder Files
    A anjita

    Well I am able to get folder dialog box and select the folder but now i want that i should be able to display the selected folder files into the right pane of my sdi splitter window I am unable to do that

    C / C++ / MFC help learning

  • Display Selected Folder Files
    A anjita

    In my code i am using a browse for folder dialog box the problem i am facing is i want to display all the files in the selected folder into a right pane (My code consist of splitter window with left and right pane ) Please help me out i am just a beginner Thanx in advance

    C / C++ / MFC help learning

  • Browse for subfolder
    A anjita

    In my code i have used a browse for folder class but now i want that instead of desktop the browse for folder dialog should start with any another folder then how can i do it.

    C / C++ / MFC question

  • Form View in Splitter Window
    A anjita

    I am Using two formview based classes in my SDI application which consist of 4 splitter window panes Whenever I use GetPane() function to get the particular pane of formview tmy code gives an error "IDD_STATUSFORM' : undeclared identifier" which is the id of my formview classes Please help me out i am just the beginner

    C / C++ / MFC help learning

  • Splitter Window Problem
    A anjita

    In SDI I want to have a splitter window whose one pane consist of the BMP file names and the other pane shows the current selected corresponding files. I am just a Beginner Please if anyone could help me out... in solving this problem -- modified at 6:08 Friday 21st April, 2006

    C / C++ / MFC help learning
  • Login

  • Don't have an account? Register

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