CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 2000
    Location
    Belgium, Bruges
    Posts
    146

    excel on windows 2000

    hi,
    i have a program that starts an excel file, prints it and then closes it. I also use a range object.

    Here is my problem: after that function, when i look in the task manager excel is not closed. I thik this is due to the range object, because when i put everything with the range object in comment, excel is indeed closed.

    Can anybody help me with that, I have windows 2000


  2. #2
    Join Date
    May 2001
    Location
    Russia
    Posts
    1

    Re: excel on windows 2000

    Try to use not Range object, but Range property of Application object.


  3. #3
    Join Date
    Jul 2000
    Location
    Milano, Italy
    Posts
    7,726

    Re: excel on windows 2000

    Better post your code. It may be something simple as having forget a
    set obj= nothing
    line of code.

    Special thanks to Lothar "the Great" Haensler, Tom Archer, Chris Eastwood, Bruno Paris and all the other wonderful people who made and make Codeguru a great place. Come back soon, you Gurus.
    ...at present time, using mainly Net 4.0, Vs 2010



    Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
    all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured