473,801 Members | 2,472 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

"Not enough space on temporary disk" (Access 2003 mde)

PW
Hi,

One of our clients is getting that error when they are trying to save
a record but I can not duplicate it here. The data is on another PC
and is linked to two workstations.

The code (listed below) is just saving interests selected from a
multi-list list box.

I've never seen that error message before. Any ideas? What does it
mean by "temporary disk"?

-paulw

*----

Set db = CurrentDb
Set rs = db.OpenRecordse t("tblClientInt erests")
Set ctl = Me.[lstSelected]

' First delete any records that might exist for the client:

db.Execute "DELETE * FROM " _
& "[tblClientIntere sts] WHERE ClientID = " &
Forms![frmClientEntry]![ClientID] & ";"

' Write the selections to the table:

For i = 0 To ctl.ListCount - 1
varItem = ctl.ItemData(i)
rs.addnew
rs![interest] = varItem
rs![ClientID] = Forms![frmClientEntry]![ClientID]
rs.Update
Next

rs.Close
Set rs = Nothing
Set db = Nothing
Set ctl = Nothing
Aug 9 '07 #1
3 9560
On Thu, 09 Aug 2007 16:33:47 -0600, PW
<pa************ **********@remo vehotmail.comwr ote:

The disk that the "TEMP" environment variable points to.
Start Run cmd.exe SET
or Control Panel System Advanced Environment Variables.

-Tom.

>Hi,

One of our clients is getting that error when they are trying to save
a record but I can not duplicate it here. The data is on another PC
and is linked to two workstations.

The code (listed below) is just saving interests selected from a
multi-list list box.

I've never seen that error message before. Any ideas? What does it
mean by "temporary disk"?

-paulw

*----

Set db = CurrentDb
Set rs = db.OpenRecordse t("tblClientInt erests")
Set ctl = Me.[lstSelected]

' First delete any records that might exist for the client:

db.Execute "DELETE * FROM " _
& "[tblClientIntere sts] WHERE ClientID = " &
Forms![frmClientEntry]![ClientID] & ";"

' Write the selections to the table:

For i = 0 To ctl.ListCount - 1
varItem = ctl.ItemData(i)
rs.addnew
rs![interest] = varItem
rs![ClientID] = Forms![frmClientEntry]![ClientID]
rs.Update
Next

rs.Close
Set rs = Nothing
Set db = Nothing
Set ctl = Nothing
Aug 10 '07 #2
PW
On Thu, 09 Aug 2007 19:56:16 -0700, Tom van Stiphout
<no************ *@cox.netwrote:
>On Thu, 09 Aug 2007 16:33:47 -0600, PW
<pa*********** ***********@rem ovehotmail.comw rote:

The disk that the "TEMP" environment variable points to.
Start Run cmd.exe SET
or Control Panel System Advanced Environment Variables.

-Tom.
Thanks Tom for the heads up! I am not sure if they have Access on
their system though.

-paulw
>
>>Hi,

One of our clients is getting that error when they are trying to save
a record but I can not duplicate it here. The data is on another PC
and is linked to two workstations.

The code (listed below) is just saving interests selected from a
multi-list list box.

I've never seen that error message before. Any ideas? What does it
mean by "temporary disk"?

-paulw

*----

Set db = CurrentDb
Set rs = db.OpenRecordse t("tblClientInt erests")
Set ctl = Me.[lstSelected]

' First delete any records that might exist for the client:

db.Execute "DELETE * FROM " _
& "[tblClientIntere sts] WHERE ClientID = " &
Forms![frmClientEntry]![ClientID] & ";"

' Write the selections to the table:

For i = 0 To ctl.ListCount - 1
varItem = ctl.ItemData(i)
rs.addnew
rs![interest] = varItem
rs![ClientID] = Forms![frmClientEntry]![ClientID]
rs.Update
Next

rs.Close
Set rs = Nothing
Set db = Nothing
Set ctl = Nothing
Aug 11 '07 #3
PW
On Thu, 09 Aug 2007 19:56:16 -0700, Tom van Stiphout
<no************ *@cox.netwrote:
>On Thu, 09 Aug 2007 16:33:47 -0600, PW
<pa*********** ***********@rem ovehotmail.comw rote:

The disk that the "TEMP" environment variable points to.
Start Run cmd.exe SET
or Control Panel System Advanced Environment Variables.

-Tom.

LOL! Nevermind! It's not an Access thing. A wee bit tired tonight
<BG>. Do you know what Access uses that folder for?

-paulw
>>Hi,

One of our clients is getting that error when they are trying to save
a record but I can not duplicate it here. The data is on another PC
and is linked to two workstations.

The code (listed below) is just saving interests selected from a
multi-list list box.

I've never seen that error message before. Any ideas? What does it
mean by "temporary disk"?

-paulw

*----

Set db = CurrentDb
Set rs = db.OpenRecordse t("tblClientInt erests")
Set ctl = Me.[lstSelected]

' First delete any records that might exist for the client:

db.Execute "DELETE * FROM " _
& "[tblClientIntere sts] WHERE ClientID = " &
Forms![frmClientEntry]![ClientID] & ";"

' Write the selections to the table:

For i = 0 To ctl.ListCount - 1
varItem = ctl.ItemData(i)
rs.addnew
rs![interest] = varItem
rs![ClientID] = Forms![frmClientEntry]![ClientID]
rs.Update
Next

rs.Close
Set rs = Nothing
Set db = Nothing
Set ctl = Nothing
Aug 11 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
5483
by: Kamal | last post by:
I am trying to send mail through smtp. smtp service is running on my machine. But every time during the smtpmail.send(msg) call gives "Could not access 'CDO.Message' object." error. Could some one help me out to resolve this issue. Thanks in advance, Kamal
1
2702
by: Jens Øster | last post by:
Hi I am writing a ASP.NET web application that must sent some e-mails. I get the exception “Could not access 'CDO.Message' object” when I call SmtpMail.Send. This only happens when I send e-mail addresses out side my company walls. When the e-mail is send on some one in my company it works perfect. I think it is a relay issue. Our system administrator will not allow relaying. In the ASP.Net web.config file I let the web application...
3
9258
by: Jens | last post by:
Hi I am writing a ASP.NET web application that must sent some e-mails. I get the exception “Could not access 'CDO.Message' object” when I call SmtpMail.Send. This only happens when I send e-mail addresses out side my company walls. When the e-mail is send on some one in my company it works perfect. I think it is a relay issue. Our system administrator will not allow relaying. In the ASP.Net web.config file I let the web application...
4
3978
by: Liz Patton | last post by:
Here's the exception: System.Exception: Unable to send mail: Could not access 'CDO.Message' object. ---> System.Web.HttpException: Could not access 'CDO.Message' object. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException (0x80004005): Unspecified error --- End of inner exception stack trace ---
1
5681
by: Phil W | last post by:
I have a server which hosts a fair amount of websites, and over the last couple of weeks I have been getting the error "Not enough space on temporary disk" on ASP.Net pages. The error doesn't always appear, but when it does it seems to be there for good until I restart the web services. I'm using OleDb and Access databases. The odd thing about all this is that the error appears on ASP.Net pages, but not on old ASP pages - despite the...
2
2411
by: chuckdfoster | last post by:
I am getting a "Could Not Access CDO.Message Object" Error when I try to use the following code to send an email via ASP.NET. When I run this on one machine it works, on another one it doesn't. Both have VS.NET installed and both have MS Outlook installed. What do I need done to the machine that doesn't work? Or is something wrong with the code? Dim email as New System.Web.Mail.Message email.To = "me@me.com" email.Subject = "Test...
5
15139
by: lds | last post by:
I am getting the following error: The "SendUsing" configuration value is invalid. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Runtime.InteropServices.COMException: The "SendUsing" configuration value is invalid.
1
2459
by: Jason | last post by:
I am trying to send mail via SMTP, using VB.NET on XP. I keep getting this error: "Could not access 'CDO.Message' object." (I can send mail fine via VB6, using CDONTS.) I have added a reference to System.Web, and this is my code: Try WebMailMessage.From = Sender
2
16076
by: Jas Shultz | last post by:
I'm using Win2K3 Enterprise edition with the latest .NET framework installed. I have this problem with getting "out of disk space" errors. I have 35 Gigs of disk space free. It doesn't happen all the time but it does happen. When I installed Sharepoint Services I got the error and had to reboot and then everything was fine. I get it sometime when running aspx pages. It's very odd. Usually, I can just remove the application and readd it...
0
9698
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
9558
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10523
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9105
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing, and deploymentwithout human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7594
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5489
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5619
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3785
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2963
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.