Unless a process has a file in the Temp folder open it's safe to delete anything in there.
In fact, it can be a good idea security-wise to empty the Temp folder regularly.
I use a utility called TempCleaner to empty my temp directory on bootup - you'll find it here http://www.ipaw.net/index.php
Hi,
Short version of this question first:-
Is it possible to configure WinXP Pro so that it automatically executes a batch file (or other type of script) whenever it resumes from standby mode?
Longer version:-
I use a PCI latency utility to override the default PCI latencies on my PC...
D'oh!
This string is being constructed in VB or Acces VBA isn't it?
If Access, try:
"TimeSheet.MonthYear = '" & format(formonth, "dd mmm yyyy") & "'"
I don't know off-hand what the VB equivelent of Access' format function is, but if your code is running in VB...
Hi,
At the very least, error trapping keeps your application up and running (especially important if it has been compiled as an mde), without presenting your user with too many unfriendly system dialog boxes.
A very simple error trap would look like this:
public sub MyProc()
dim strMsg as...
This is driving me nuts!
I'm trying to open an ADO connection to an Excel file, so that I can load the contents of the Excel file into an ADO recordset.
The code looks like this...
adoCNN_XL.ConnectionString = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" &...
Hi,
Open the form in acDialog mode, e.g.
' Open a form that will effect the rowsource of me.lstitems
docmd.openform "myForm",,,,,acDialog
' The following line will not execute until frmMyForm has closed
me.lstItems.requery
Hi,
If you could persuade your users to be disciplined in naming their queries, e.g. by prefixing them all with user_, then you could clean them up programtically.
Public Sub RemoveOldQueries(dtmCreatedBefore As Date)
Dim daoDB As DAO.Database
Dim daoQDF As DAO.QueryDef
Set...
Hi,
Try this query...
SELECT FilmTitle,
iif((Responsibility like "*produced*" or Responsibility like "*direct*"), "", Responsibility)
FROM YourTable
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.