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

Search:

Type: Posts; User: rdonline1

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    847

    Re: Add Button in Outlook Message Window

    Actually this button will not only save the attachments but will also forward the email to few pre definied email addresses. Everytime I don't want to click Forward and then key in the email address....
  2. Replies
    2
    Views
    847

    Add Button in Outlook Message Window

    Hello all,

    I want to write a VB application which will "Add a New Button in Outlook Message Window". Every time I open up any message this button should aapear. My outlook messages can have more...
  3. Replies
    1
    Views
    766

    VC equivalent of App.Path

    Hi,

    Can anybody tell me how to get the 'current execution path run-time' in VC?
    In VB we can use "App.Path".
    But I don't know how to do that in VC.

    Thanks
  4. Replies
    1
    Views
    986

    ASP runtime include file name change

    Hi,

    I want to change include filename runtime,
    like in the following include pathname
    (<!-- #include file=FileName.asp-->)
    I want to change the filename (FileName.asp) runtime means that...
  5. Replies
    0
    Views
    700

    How to change attachment file name

    Hi,

    I'm using VB 6 and Crystal Report 9.0.
    User can send some reports to their customers via email. I'm not showing the ExportOption Dialog box to the user. All the values of the options are...
  6. Replies
    0
    Views
    949

    Export report in vc

    Hi all,

    In my vc app i have some reports (developed in crystal report). There i gave option from where user can save the reports in xls format in the hard disk. But i want to supress the dialog...
  7. Replies
    3
    Views
    693

    Try this out: In your MainFrame.h file copy...

    Try this out:

    In your MainFrame.h file copy the following line of code

    #define IsALTpressed() ( (GetKeyState(VK_MENU) & (1 << (sizeof(SHORT)*8-1))) != 0 )


    Now in the...
  8. Replies
    3
    Views
    705

    If u are using CString then following code will...

    If u are using CString then following code will help u

    CString ss = "the?box?is?blue";
    ss.Replace("?","");

    In this "Replace" function the
    1st parameter is "What u want to replace in the...
  9. Replies
    2
    Views
    967

    it's not a solution. what i doubt there is...

    it's not a solution. what i doubt there is something for everything. may be somebody will come up with some solution.
    i'm waiting.
  10. Replies
    2
    Views
    967

    How to hide mapped network drive

    Hi all,

    In my vc app i have mapped 1 network drive. Now while the program is running then in explorer it's showing the mapped drive. I can disconnect the mapped drive when the program ends but...
  11. Replies
    5
    Views
    1,074

    thanks tom, i find the articles are...

    thanks tom,

    i find the articles are interesting, But they all are related to office automation. How to create and write in word and other files. The process is also too big.

    I just want some...
  12. Replies
    6
    Views
    779

    try it out. CEdit *e;...

    try it out.

    CEdit *e;
    e=(CEdit*)GetDlgItem(IDC_SEARCHTEXT);
    e->SetSel(-1,m_SEARCHTEXT.GetLength(),FALSE);

    //IDC_SEARCHTEXT => id of the edit control
    //m_SEARCHTEXT => CString variable of...
  13. Replies
    579
    Views
    649,054

    hi, I have used graphs in my report. I have...

    hi,

    I have used graphs in my report. I have used Crystal Report 6.0. The graphs are working fine in report wirter.
    But when i'm executing the reports through my vc++ program it's not showing the...
  14. Replies
    0
    Views
    673

    Graphs not showing

    I have used graphs in my report. I have used Crystal Report 6.0. The graphs are working fine in report wirter.
    But when i'm executing the reports through my vc++ program it's not showing the graphs...
  15. Replies
    5
    Views
    1,074

    like doesn't help much. i need some short of code...

    like doesn't help much. i need some short of code snippet which wull guid me. there is nothing that short. somebody pl help
  16. Replies
    5
    Views
    1,074

    Reading word file in vc

    Hi all,

    In my vc program i need to read word files. In codeguru database section i found a no of article on how to read data from excel file. But there is nothing relateted to word file. can...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured