My account: Login | Sign Up
Loading... 

vb6 - RunTime Error 2486 - You can't carry out this action at the present time | Thread profile

Thread profile page for "vb6 - RunTime Error 2486 - You can't carry out this action at the present time" on http://www.devx.com. This report page is a snippet summary view from a single thread "vb6 - RunTime Error 2486 - You can't carry out this action at the present time", located on the Message Board at http://www.devx.com. This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity, which are reported in a table below. Additional thread profile information is also shown in the following ways:

1) Top Contributing Authors
2) Related Threads on "eBay Auctions"
3) Related Threads on Other Sites

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a thread's popularity and/or exact posting volumes at any given reporting period.

Title: vb6 - RunTime Error 2486 - You can't carry out this action at the present time
Site: DevX Forums  DevX Forums - site profile
Forum: Dates and Math   Dates and Math   - forum profile
Total authors: 3 authors
Total thread posts: 16 posts
Thread activity: no new posts during last week
Domain info for: devx.com

Thread posts in vb6 - RunTime Error 2486 - You can't carry out this action at the present time:

1. 
Started 3 months, 4 weeks ago (2008-08-08 14:03:00)  by GiftX Registered User
Guys, this is another funny error statement from Microsoft. I am trying to display/open MS Access report and I get: RunTime error 2486 - You can't not carry out this action at the present time - But they don't tell you when to The error occured on this line: Code: DoCmd.OpenReport stDocName, acViewNormal Thanks. GiftX Below is my module: ...
Size: 2,630 bytes
Customize:  Customize "vb6 - RunTime Error 2486 - You can't carry out this action at the present time :: Dates and Math   :: DevX Forums"
2. 
Started 3 months, 4 weeks ago (2008-08-08 14:30:00)  by jpj162 Registered User
The recordset that's attached to your report table is still open is that causing the problem? rsUnclaimedtbl.close
Size: 131 bytes
Customize:  Customize "<b>Reply 1</b>: vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time :: Dates and Math   :: DevX Forums"
3. 
Started 3 months, 4 weeks ago (2008-08-08 15:54:00)  by GiftX Registered User
Okay guys. If that is the case, while Microsoft is tweaking their thumb and trying to figure out what the problem is, how can I get around it by doing it differently? Objective: I populated a table using a query. I have an underlying existing access report and this report is using the created table as the record source. How can I open this report then print it? Any ideas will ...
Size: 477 bytes
Customize:  Customize "<b>Reply 2</b>: vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time :: Dates and Math   :: DevX Forums"
4. 
Started 3 months, 4 weeks ago (2008-08-08 16:40:00)  by jpj162 Registered User
Can you use the MS Access program? After looking back at this thread I'm guessing not. Sorry I don't think I'll be able to help.
Size: 146 bytes
Customize:  Customize "<b>Reply 3</b>: vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time :: Dates and Math   :: DevX Forums"
5. 
Started 3 months, 3 weeks ago (2008-08-10 21:54:00)  by Anonymous
hi, DoCmd.OpenReport stDocName, acViewNormal << Is this right? DoCmd.OpenReport stDocName, acNormal << I think this should be the syntax. Anyways, If the above doesnt work, use: DoCmd.OpenReport stDocName, acPreview then print it. I hope that helps.
Size: 374 bytes
Customize:  Customize "<b>Reply 4</b>: vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time :: Dates and Math   :: DevX Forums"
6. 
Started 3 months, 3 weeks ago (2008-08-11 07:57:00)  by Anonymous
It is acViewNormal and acViewPreview
Size: 36 bytes
Customize:  Customize "<b>Reply 5</b>: vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time :: Dates and Math   :: DevX Forums"
7. 
Started 3 months, 3 weeks ago (2008-08-12 02:49:00)  by Anonymous
Hi Hack, I stand corrected. anyways, DoCmd.OpenReport stDocName, acPreview << will also work. I tried it already. Thanks.
Size: 267 bytes
Customize:  Customize "<b>Reply 6</b>: vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time :: Dates and Math   :: DevX Forums"
8. 
Started 3 months, 3 weeks ago (2008-08-13 11:37:00)  by Anonymous
Hi Hack and everybody, since the VBA DoCmd.OpenReport function is not working, is there any other vb function to enable me open/view/print a report? Thanks. Giftx.
Size: 205 bytes
Customize:  Customize "<b>Reply 7</b>: vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time :: Dates and Math   :: DevX Forums"
9. 
Started 3 months, 3 weeks ago (2008-08-13 11:53:00)  by Anonymous
From VB6, DoCmd is the only way that I know of. Is this happening on all reports, or just this one?
Size: 116 bytes
Customize:  Customize "<b>Reply 8</b>: vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time :: Dates and Math   :: DevX Forums"
10. 
Started 3 months, 3 weeks ago (2008-08-13 12:04:00)  by Anonymous
Good morning Hack. This is the only report I am trying to open. Remember, the report source is a table that is dynamically populated thru a query. Someone from another forum said my problem is memory issue because I am doubling the records in the table each time data is added to the table. In that case, how can I delete the content of the table before adding new records? Thanks. Giftx.
Size: 415 bytes
Customize:  Customize "<b>Reply 9</b>: vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time :: Dates and Math   :: DevX Forums"
 

Top contributing authors for vb6 - RunTime Error 2486 - You can&#039;t carry out this action at the present time

Name
Posts
Anonymous
12
user's latest post:
vb6 - RunTime Error 2486 - You...
Published (2008-08-14 12:48:00)
Hi Rollette, thank you very much. The module has been working since yesterday. Have a great weekend. Giftx.
GiftX Registered User
2
user's latest post:
vb6 - RunTime Error 2486 - You...
Published (2008-08-08 14:03:00)
Guys, this is another funny error statement from Microsoft. I am trying to display/open MS Access report and I get: RunTime error 2486 - You can't not carry out this action at the present time - But they don't tell you when to The error occured on this line: Code: DoCmd.OpenReport stDocName, acViewNormal Thanks. GiftX Below is my module: Code: Set rsUnclaimedRptqry = dbUnclaimed.OpenRecordset(&quot;SELECT DISTINCT...
jpj162 Registered User
2
user's latest post:
vb6 - RunTime Error 2486 - You...
Published (2008-08-08 16:40:00)
Can you use the MS Access program? After looking back at this thread I'm guessing not. Sorry I don't think I'll be able to help.