CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ProElite

Page 1 of 8 1 2 3 4

Search: Search took 0.07 seconds.

  1. Re: Two Varaibles to a single Custom control?

    i have solved the problem.
    anyways thanks.


    ProElite
  2. Two Varaibles to a single Custom control?

    Hi All,
    I have a small problem..
    i have a control class which has to be mapped to a Custom control in DoDataExchange() using DDX_Control call..i have manualy added this statement..
    the control...
  3. Replies
    4
    Views
    936

    Re: Parallel port programming query

    Hi,
    Try to search for topics on codeguru for parallel port programming.

    search for a NTPort Library on the net..its free library which u can use to talk to parallel port..

    ProElite
  4. Replies
    20
    Views
    3,368

    Re: enable optimization?

    hi,
    there is no customize button..instead its a drop down item available in the same combo box..
    see the pic attached here with

    ProElite
  5. Replies
    3
    Views
    1,091

    Re: problem with CRichEditCtrl

    otherwise what u can do is..
    when u detect the enter key press append "\r\n" to the text available in the text box..
    and set the neew text using SetWindowText function
  6. Re: how to calculate time taken for execution of code?

    why do u want to do this?
    r u doing some NASA's Mission CRITICAL programming :) :)

    doing it in that manner will make ur program run even slower.
    All the best :)

    ProElite
  7. Replies
    3
    Views
    1,091

    Re: problem with CRichEditCtrl

    set ur properties for RichEditContol as shown in the fig


    ProElite
  8. Replies
    4
    Views
    688

    Re: Respond Beep() function for Cyc.

    Hi Sunny whats the big deal in it..?

    u can use OnTimer and Set Timer and two variables..thats it..

    u will set ur SetTimer say for 2 secs when first time the button is cliked. at this time u...
  9. Replies
    4
    Views
    954

    Re: How to get a bounding rectangle

    hi Meka..:)
    which class are u studying?? :)
  10. Replies
    4
    Views
    833

    Re: Modeless Window previous position.

    my dear programmer friends..
    :)

    many good applications use Windows registry for storing positions of their toolbars and dialog boxes.
    if u want to use registry use AfxGetApp->WriteProfileInt()...
  11. Re: Accessing cpp files from view class of a Vc++ project

    Hi
    Can u explain it in a little better way..
    i didnt understand the problem

    what i want to ask is..
    1. r u having problem using visual studio
    or 2. Ur application is not working properly
    ...
  12. Thread: MDI concept

    by ProElite
    Replies
    2
    Views
    599

    Re: MDI concept

    why are u doing it this way..??


    u should create ur document template in CWinApp derived class..
    then u should store CDocTemplate pointers in CWinApp derived class..
    initialise them in...
  13. Replies
    7
    Views
    1,666

    Re: getting folder name problem

    hi..
    what do u mean by folder name of some folders..

    u can check whether the current oobject is directory or not using this function IsDirectory()
    and to check whether its a dot ot not using...
  14. Replies
    6
    Views
    1,131

    Re: STL access violation

    OOPs !!!
    :)



    ProElite
  15. Replies
    6
    Views
    1,131

    Re: STL access violation

    hi Naumaan,
    Can u explaing ur problem properly..
    i didnt understadn it

    i didnt understand the dll part of it
  16. Replies
    7
    Views
    954

    Re: How to get the printer status

    do u want to see the settings of printer also??
    i mean page size and default printer attached and its port too??


    ProElite
  17. Replies
    5
    Views
    804

    Re: Caption for Browse Dialog

    is it OK now??


    ProElite
  18. Replies
    5
    Views
    804

    Re: Caption for Browse Dialog

    i do it this way..
    use LPBROWSEINFO structure to pass the info to BroseForFolder
    LPBROWSEINFO lpbi = new BROWSEINFO;

    lpbi->lpszTitle = "Select Database "; //ur string to change the title...
  19. Replies
    19
    Views
    2,943

    Re: VC++ :: CFormView ::CListCtrl

    Hi..
    i was looking at ur code..
    where is this variable 'i' decalred..and whats its value when calling SetItemText??



    ProElite
  20. Replies
    5
    Views
    900

    Re: Browse in vc++

    use LPITEMIDLIST SHBrowseForFolder(
    LPBROWSEINFO lpbi
    );
  21. Replies
    4
    Views
    969

    Re: A Newbie Ques.: How to make an exe

    you are welcome

    ProElite
  22. Replies
    4
    Views
    969

    Re: A Newbie Ques.: How to make an exe

    hi..
    do one thing..
    add this defination to ur stdafx.h file
    #include <conio.h>


    and then give a call to getch() before calling return 0 in ur main() function;

    ProElite
  23. Replies
    7
    Views
    1,005

    Re: On Minimizing Window Memory Goes Down

    it happense withall the applications present in the task manager window..
    try minimizing any application running..
    u will see a memory drop..

    i dont think there is any problem..

    ProElite
  24. Replies
    7
    Views
    1,005

    Re: On Minimizing Window Memory Goes Down

    can u explain a little more on minimize and restore problem?

    is it a feature provided by ur application :))

    ProElite
  25. Replies
    6
    Views
    1,824

    Re: Creating textbox in view

    if u have to change the color of some part of ur text then better use CRichEditCtrl class to derieve ur control from..

    for setting focus to view window..u will have to capture use pressed byuttons...
Results 1 to 25 of 180
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured