CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2005
    Posts
    48

    Operation Is Not Allowed When The Object Is Closed

    I'm passing date values as parameters to a data report. Based on the range of dates the report is supposed to show the result. But it works fine if I supplied no parameters. All my three reports work fine without parameters. Pls help me out as to why I'm getting this err. I've established connection to Access Database on Initialise Event of Dataenvironment1.
    On Ok command button I've created

    rspurchaseofshares.filter = FiltrVals

    if Rspurchaseofshares.recordcount >0 then
    rspurchaseofshares.show
    endif

    I'm stuck very badly.Pls help me out.

    Thanking U gurus in adv
    Sham

  2. #2
    Join Date
    Dec 2002
    Location
    London, UK
    Posts
    1,569

    Re: Operation Is Not Allowed When The Object Is Closed

    pls can you show your code where you acquire the data from the database
    Mike

  3. #3
    Join Date
    Mar 2005
    Location
    Vienna, Austria
    Posts
    4,538

    Re: Operation Is Not Allowed When The Object Is Closed

    Hi ! The code you have shown will only show data when more then one record is there.
    Code:
    if Rspurchaseofshares.recordcount >0 then
    	rspurchaseofshares.show
    endif
    You have not defined rspurchaseofshares. Is that a recordset then .show doesn't fit is it a form then .recordcount doesn't fit for me if you dont give further explanation Lets think we have a record named Myrecords and rspurchaseofshares is a form
    What can be said by your codse is that obviously you set params that ends up in no data. Change the code to the following
    Code:
    if not( MyRecrds.EOF and MyRecords.BOF) then
       rspurchaseofshares.show
    end if
    But in fact please show more code

    Jonny Poet
    Jonny Poet

    To be Alive is depending on the willingsness to help others and also to permit others to help you. So lets be alive. !
    Using Code Tags makes the difference: Code is easier to read, so its easier to help. Do it like this: [CODE] Put Your Code here [/code]
    If anyone felt he has got help, show it in rating the post.
    Also dont forget to set a post which is fully answered to 'resolved'. For more details look to FAQ's about Forum Usage. BTW I'm using Framework 3.5 and you ?
    My latest articles :
    Creating a Dockable Panel-Controlmanager Using C#, Part 1 | Part 2 | Part 3 | Part 4 | Part 5 | Part 6 | Part 7

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