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

Search:

Type: Posts; User: harshaperla

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    847

    Editing Excel file from Vb

    Hi
    I have to open an existing excel file and insert a row to it in a perticular position. can anyone help plz
  2. Replies
    7
    Views
    13,972

    Re: Parallel Port Programming

    Hi,
    Try http://electrosofts.com/parallel/parallelwin.html

    You can also get more links in http://electrosofts.com/links/port_programming.html
    :wave:
  3. Replies
    4
    Views
    1,020

    Re: accelerators to bitmap buttons

    plaese explaine with a bit of code..............
  4. Replies
    4
    Views
    1,020

    accelerators to bitmap buttons

    hello
    how can i add accelerators to CBitmapButton object?
  5. Replies
    1
    Views
    650

    color window

    hello
    i created a dialog based application and using

    CClientDC dc(this);
    CRect r;
    GetClientRect(&r);
    dc.Rectangle(r);
    i draw color to the dialog box. but, my problem is whenever OnPaint() in...
  6. Replies
    2
    Views
    669

    Re: Drag Drop in a pictute

    i have seen such a program inthis article. i didn't try it:

    http://www.codeproject.com/dll/pwdspy.asp
  7. Replies
    1
    Views
    613

    system information

    how to get hardware information like screen resolution,windows version etc in vc++ in the run time?
  8. Replies
    5
    Views
    1,261

    Re: music in visual c++ !!!

    include following file:


    #include "mmsystem.h"

    then add following code:


    ::PlaySound("Chimes.wav",NULL,SND_FILENAME|SND_ASYNC);
  9. Replies
    5
    Views
    16,135

    Re: array of buttons in VC++

    got the solution:
    result is there as a article here: Implementation of Array of Buttons: The Shuffle Game:
  10. Replies
    5
    Views
    16,135

    I need to control set of buttons in aloop

    I have written a common handler for the set of buttons. But, i need to address them like

    m_Button[i][j].SetWindowText("XXXX");
    in a loop. i did it by changing the declaration of button as CButton...
  11. Replies
    7
    Views
    1,462

    full screen

    title bar, task bar etc also should be removed
  12. Replies
    7
    Views
    1,462

    Full screen dialog window

    how to display a dialog based window on full screen?
  13. Replies
    5
    Views
    16,135

    array of buttons in VC++

    i tried making an array of buttons when programming using class vizard. i did it using image button and also using direct coding. in VB it is possible bu copying the buttons. i have written a common...
Results 1 to 13 of 13





Click Here to Expand Forum to Full Width

Featured