Search:

Type: Posts; User: cr_naik

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,216

    .pdf to .txt conversion

    Hello Guys,

    Can anybody of you can give me some ideas or links about how to convert .pdf file into .txt file.

    Lot of readymade applications are available on net. I don't interested in all those...
  2. Replies
    23
    Views
    21,192

    Ya, you are right, I have tried most of the...

    Ya, you are right,

    I have tried most of the function and trick to fill key buffer such as : SendMessage(), PostMessage(), BroadcastSystemMessage(), WM_KEYDOWM, WH_HOTKEY, keybd_event() and so on....
  3. Replies
    23
    Views
    21,192

    Generate Ctrl-Alt-Del programmatically

    Hello guys,

    I want to generate Ctrl-Alt-Del key sequence programmatically.

    I have searched a lot on net but don't get any solution.

    I have tried to fill keyboard buffer with 'keybd_event()'...
  4. Replies
    1
    Views
    867

    Memory problem with WorkerThread

    Hello guys,

    I am frequently using one WorkerThread in my application. It is starting using AfxBeginThread() function. When I run application from within IDE, debug window is also not showing any...
  5. Replies
    2
    Views
    1,126

    Ya, You can use api ShellExecute(...) for that.

    Ya,
    You can use api ShellExecute(...) for that.
  6. Replies
    17
    Views
    2,349

    Ya....it is possible but do you know the way or...

    Ya....it is possible but do you know the way or can you please give me related links ?????
  7. Replies
    2
    Views
    1,397

    >1 - Can the font on TextOut() be changed from...

    >1 - Can the font on TextOut() be changed from the default font which is "System"?


    Ya...you can do it using SelectObject() function of Device Context(HDC or CDC).


    >2 - I read that you have...
  8. Replies
    7
    Views
    1,438

    You can also do that with scanf() as follows: ...

    You can also do that with scanf() as follows:

    scanf("%[^\n]", array);
  9. Replies
    17
    Views
    2,349

    Have you ever tried "ProcessViewer" tool supplied...

    Have you ever tried "ProcessViewer" tool supplied with Microsoft Visual studio. This tool shows the process running in your PC. It shows more processes than we can see in the list which appears while...
  10. Replies
    3
    Views
    1,833

    I have never done this but I know something about...

    I have never done this but I know something about this. You can customise "File Open\Save Dialog" by creating a class which inherit CFileDialog.
  11. Replies
    17
    Views
    2,349

    Hide Application

    I want to make applicatin in a way so that user can not view my application on taskbar, not at toolbar where time is displayed and even user can't see it in list which appears on pressing ...
  12. Replies
    2
    Views
    2,237

    I think 'CBitmapButton' class will be helpful to...

    I think 'CBitmapButton' class will be helpful to you.
  13. Replies
    3
    Views
    1,075

    Following is an example which will help you. ...

    Following is an example which will help you.

    Suppose you have one dialog class called "CTestDlg".

    class CTestDlg : public CDialog
    {
    public :
    int i;
    }
  14. Replies
    4
    Views
    1,370

    Efficient binary calculator !!!!!

    Efficient binary calculator !!!!!
  15. Thread: Keystroke

    by cr_naik
    Replies
    6
    Views
    2,029

    if(HIWORD(wParam) == EN_CHANGE &&...

    if(HIWORD(wParam) == EN_CHANGE && GetAsyncKeyState(13) == (-32767)) {
    MessageBox(hwnd, "The Enter key has been pressed", "ALERT", MB_OK);


    I think in if() condition you will also...
  16. Replies
    6
    Views
    2,738

    But man....I can't understand why do you want to...

    But man....I can't understand why do you want to allocate memory dynamically from data segment. Because data segment is reserved only for a program. No other programs are allowed to used the memory...
  17. Replies
    3
    Views
    1,075

    When you are doing COtherClass *other;...

    When you are doing

    COtherClass *other;
    other->m_TheControl.GetWindowText( buffer );

    or

    COtherClass other;
    other.m_TheControl.GetWindowText( buffer );
  18. Replies
    7
    Views
    2,338

    Write '::' to your code file For example: ...

    Write '::' to your code file

    For example:

    void CTestDlg::Fun()
    {
    ::
    }

    So popup menu will appear and it will show you all environment variables and other members.
  19. Replies
    2
    Views
    1,630

    Use graphics functions. See graphics.h header...

    Use graphics functions.

    See graphics.h header file.
  20. Replies
    4
    Views
    963

    For example: I have a number 11. So its binary...

    For example:

    I have a number 11. So its binary form will be as follows:

    Bits : 0 0 0 0 1 0 1 1
    Bit Number : 7 6 5 4 3 2 1 0

    Now...
  21. Replies
    1
    Views
    1,348

    >int binarySearch(string name[],int numel, string...

    >int binarySearch(string name[],int numel, string key);


    The third parameter in above function declaration is of type string ( char[30])


    >string social[30],phone[30],name[30],key[30];

    ...
  22. Thread: tabstopping

    by cr_naik
    Replies
    8
    Views
    1,332

    Have you set tab-orders ?

    Have you set tab-orders ?
  23. Thread: Keystroke

    by cr_naik
    Replies
    6
    Views
    2,029

    Its very insteresting...... You are able to...

    Its very insteresting......

    You are able to detect 'Enter Key' pressed event on Edit control from within your WinMain() function while you takes messages through GetMessage(...) or...
  24. Replies
    2
    Views
    1,252

    --------------------------------------------------...

    ----------------------------------------------------------------------------

    const int part = 100;
    int [part ] = [1001, 949, 1050, 867, 346, 1025];
    const int quantity = 2;
    int [quantity] = [62,...
  25. Replies
    2
    Views
    3,106

    Is this proper way to remove ActiveX from project?

    Is this proper way to remove ActiveX from project?
Results 1 to 25 of 70
Page 1 of 3 1 2 3