473,657 Members | 2,351 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

File in use error

I am recieving an error about not being able to use a file because it is
already in use. Based on the error, I think it is referring to my DB, but I
don't know how to avoid the error or why it is happening. Here is the error:
Server Error in '/LVBEP' Application.
--------------------------------------------------------------------------------

Could not use ''; file already in use.
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.Data.Ole Db.OleDbExcepti on: Could not use ''; file
already in use.

Source Error:

Line 41: Dim memberadapter As New OleDb.OleDbData Adapter("SELECT *
FROM members ORDER BY name", "PROVIDER=Micro soft.Jet.OLEDB. 4.0;DATA SOURCE="
& Server.MapPath( "LVBEP.mdb" ))
Line 42:
Line 43: memberadapter.F ill(members)
Line 44: datEditMembers. DataSource = members
Line 45: datEditMembers. DataBind()

Source File: C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb Line: 43

Stack Trace:

[OleDbException (0x80004005): Could not use ''; file already in use.]
System.Data.Ole Db.OleDbConnect ion.ProcessResu lts(Int32 hr) +20
System.Data.Ole Db.OleDbConnect ion.InitializeP rovider() +57
System.Data.Ole Db.OleDbConnect ion.Open() +203
System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection connection,
ConnectionState & originalState) +44
System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32 startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior) +77
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet) +38
LVBEP.memberadm in.RefreshMembe rs() in
C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 43
LVBEP.memberadm in.Page_Init(Ob ject sender, EventArgs e) in
C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 27
System.Web.UI.C ontrol.OnInit(E ventArgs e) +67
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +241
System.Web.UI.P age.ProcessRequ estMain() +197

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.432 2.2032; ASP.NET
Version:1.1.432 2.2032
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/
Nov 19 '05 #1
9 3728
Make sure your Access database file is NOT open in Windows. I.e., make
sure you are closed out of it. I don't know if that's the cause of YOUR
error, but I do know that things can get 'funky' if you have Access
opened, inspecting/modifying your database, and you try to work with it
via an ASP.NET page...

hth

Nathan Sokalski wrote:
I am recieving an error about not being able to use a file because it is
already in use. Based on the error, I think it is referring to my DB, but I
don't know how to avoid the error or why it is happening. Here is the error:
Server Error in '/LVBEP' Application.
--------------------------------------------------------------------------------

Could not use ''; file already in use.
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.Data.Ole Db.OleDbExcepti on: Could not use ''; file
already in use.

Source Error:

Line 41: Dim memberadapter As New OleDb.OleDbData Adapter("SELECT *
FROM members ORDER BY name", "PROVIDER=Micro soft.Jet.OLEDB. 4.0;DATA SOURCE="
& Server.MapPath( "LVBEP.mdb" ))
Line 42:
Line 43: memberadapter.F ill(members)
Line 44: datEditMembers. DataSource = members
Line 45: datEditMembers. DataBind()

Source File: C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb Line: 43

Stack Trace:

[OleDbException (0x80004005): Could not use ''; file already in use.]
System.Data.Ole Db.OleDbConnect ion.ProcessResu lts(Int32 hr) +20
System.Data.Ole Db.OleDbConnect ion.InitializeP rovider() +57
System.Data.Ole Db.OleDbConnect ion.Open() +203
System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection connection,
ConnectionState & originalState) +44
System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32 startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior) +77
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet) +38
LVBEP.memberadm in.RefreshMembe rs() in
C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 43
LVBEP.memberadm in.Page_Init(Ob ject sender, EventArgs e) in
C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 27
System.Web.UI.C ontrol.OnInit(E ventArgs e) +67
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +241
System.Web.UI.P age.ProcessRequ estMain() +197

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.432 2.2032; ASP.NET
Version:1.1.432 2.2032

--

Scott Mitchell [ASP.NET MVP]
mi******@4GuysF romRolla.com
http://www.4GuysFromRolla.com/ScottMitchell
Nov 19 '05 #2
I did not have Access (or any other programs that use Access or any Access
DBs) open at the time. I even tried restarting my computer to make sure
nothing was running in the background, but it did not help.
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"Scott Mitchell [MVP]" <mi******@4guys fromrolla.com> wrote in message
news:UN******** *****@newssvr11 .news.prodigy.c om...
Make sure your Access database file is NOT open in Windows. I.e., make
sure you are closed out of it. I don't know if that's the cause of YOUR
error, but I do know that things can get 'funky' if you have Access
opened, inspecting/modifying your database, and you try to work with it
via an ASP.NET page...

hth

Nathan Sokalski wrote:
I am recieving an error about not being able to use a file because it is
already in use. Based on the error, I think it is referring to my DB, but
I don't know how to avoid the error or why it is happening. Here is the
error:
Server Error in '/LVBEP' Application.
--------------------------------------------------------------------------------

Could not use ''; file already in use.
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.Data.Ole Db.OleDbExcepti on: Could not use '';
file already in use.

Source Error:

Line 41: Dim memberadapter As New OleDb.OleDbData Adapter("SELECT
* FROM members ORDER BY name", "PROVIDER=Micro soft.Jet.OLEDB. 4.0;DATA
SOURCE=" & Server.MapPath( "LVBEP.mdb" ))
Line 42:
Line 43: memberadapter.F ill(members)
Line 44: datEditMembers. DataSource = members
Line 45: datEditMembers. DataBind()

Source File: C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb Line: 43

Stack Trace:

[OleDbException (0x80004005): Could not use ''; file already in use.]
System.Data.Ole Db.OleDbConnect ion.ProcessResu lts(Int32 hr) +20
System.Data.Ole Db.OleDbConnect ion.InitializeP rovider() +57
System.Data.Ole Db.OleDbConnect ion.Open() +203
System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection connection,
ConnectionState & originalState) +44
System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +77
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet) +38
LVBEP.memberadm in.RefreshMembe rs() in
C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 43
LVBEP.memberadm in.Page_Init(Ob ject sender, EventArgs e) in
C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 27
System.Web.UI.C ontrol.OnInit(E ventArgs e) +67
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +241
System.Web.UI.P age.ProcessRequ estMain() +197

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.432 2.2032;
ASP.NET Version:1.1.432 2.2032

--

Scott Mitchell [ASP.NET MVP]
mi******@4GuysF romRolla.com
http://www.4GuysFromRolla.com/ScottMitchell

Nov 19 '05 #3
"Nathan Sokalski" <nj********@hot mail.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Source File: C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb Line: 43


1) Is Server.MapPath( "LVBEP.mdb" ) pointing to a valid database?

2) Does the ASPNET account have sufficient permissions to do what you want
i.e. specifically to create the .ldb file which Jet uses for locking
purposes?
Nov 19 '05 #4
Yes, it is pointing to a valid DB (not to mention if the DB was not ther it
would say something like file could not be found). I have also given the
ASPNET machine account access to the database. I have used the database
before in this application, but something, I don't know what, caused it to
start giving this error. I am simply having trouble finding the source of
the error (where/what in my code is causing the problem?) Thanks.
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:%2******** **********@TK2M SFTNGP12.phx.gb l...
"Nathan Sokalski" <nj********@hot mail.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Source File: C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb Line: 43


1) Is Server.MapPath( "LVBEP.mdb" ) pointing to a valid database?

2) Does the ASPNET account have sufficient permissions to do what you want
i.e. specifically to create the .ldb file which Jet uses for locking
purposes?

Nov 19 '05 #5
If you right click on the access DB and choose for properties is the
checkbox 'read-only' checked?
If so uncheck it.
"Nathan Sokalski" <nj********@hot mail.com> wrote in message
news:Oo******** ******@TK2MSFTN GP15.phx.gbl...
I did not have Access (or any other programs that use Access or any Access
DBs) open at the time. I even tried restarting my computer to make sure
nothing was running in the background, but it did not help.
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"Scott Mitchell [MVP]" <mi******@4guys fromrolla.com> wrote in message
news:UN******** *****@newssvr11 .news.prodigy.c om...
Make sure your Access database file is NOT open in Windows. I.e., make
sure you are closed out of it. I don't know if that's the cause of YOUR
error, but I do know that things can get 'funky' if you have Access
opened, inspecting/modifying your database, and you try to work with it
via an ASP.NET page...

hth

Nathan Sokalski wrote:
I am recieving an error about not being able to use a file because it is already in use. Based on the error, I think it is referring to my DB, but I don't know how to avoid the error or why it is happening. Here is the
error:
Server Error in '/LVBEP' Application.
-------------------------------------------------------------------------

-------

Could not use ''; file already in use.
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.Data.Ole Db.OleDbExcepti on: Could not use '';
file already in use.

Source Error:

Line 41: Dim memberadapter As New OleDb.OleDbData Adapter("SELECT * FROM members ORDER BY name", "PROVIDER=Micro soft.Jet.OLEDB. 4.0;DATA
SOURCE=" & Server.MapPath( "LVBEP.mdb" ))
Line 42:
Line 43: memberadapter.F ill(members)
Line 44: datEditMembers. DataSource = members
Line 45: datEditMembers. DataBind()

Source File: C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb Line: 43

Stack Trace:

[OleDbException (0x80004005): Could not use ''; file already in use.]
System.Data.Ole Db.OleDbConnect ion.ProcessResu lts(Int32 hr) +20
System.Data.Ole Db.OleDbConnect ion.InitializeP rovider() +57
System.Data.Ole Db.OleDbConnect ion.Open() +203
System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection connection,
ConnectionState & originalState) +44
System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +304
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior) +77
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet) +38
LVBEP.memberadm in.RefreshMembe rs() in
C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 43
LVBEP.memberadm in.Page_Init(Ob ject sender, EventArgs e) in
C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 27
System.Web.UI.C ontrol.OnInit(E ventArgs e) +67
System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +241
System.Web.UI.P age.ProcessRequ estMain() +197
-------------------------------------------------------------------------

-------
Version Information: Microsoft .NET Framework Version:1.1.432 2.2032;
ASP.NET Version:1.1.432 2.2032

--

Scott Mitchell [ASP.NET MVP]
mi******@4GuysF romRolla.com
http://www.4GuysFromRolla.com/ScottMitchell


Nov 19 '05 #6
Bob
Nathan:

Make sure your closing your connection after you access your data in your
code.

Look for a file LVBEP..ldb on the server in the same dir as the LVBEP.mdb
file. If it it's there, delete it.

If you have access to the IIS Administrator, open the IIS Admin.

Right click the site and click properties. Click the "home Directory" tab
and click the "Unload" button then delete the LVBEP.ldb file.

Then try your connection again. As I said, make extra sure your closing the
connection in your code.

MyOLEDBConnecti on.Open()

Fill your dataAdapters

MyOLEDBConnecti on.Close()

By chance, your not developing against a DB that is also in production are
you?

Make sure your Access file is not in the root. Put it in a sub dir of the
root and don't give the "Everyone" account read permissions.

Be sure not to load data directly into a session object. Use sessions
sparingly.

HTH

Bob
Nov 19 '05 #7
When the Access databse file is opened..i think it also opens
anothe file called ldb ir something try deleting it..
Not really sure if that would help but i had the same issues before
Patrick

"Nathan Sokalski" <nj********@hot mail.com> wrote in message
news:Od******** *****@tk2msftng p13.phx.gbl...
Yes, it is pointing to a valid DB (not to mention if the DB was not ther it would say something like file could not be found). I have also given the
ASPNET machine account access to the database. I have used the database
before in this application, but something, I don't know what, caused it to
start giving this error. I am simply having trouble finding the source of
the error (where/what in my code is causing the problem?) Thanks.
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:%2******** **********@TK2M SFTNGP12.phx.gb l...
"Nathan Sokalski" <nj********@hot mail.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Source File: C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb Line: 43


1) Is Server.MapPath( "LVBEP.mdb" ) pointing to a valid database?

2) Does the ASPNET account have sufficient permissions to do what you want i.e. specifically to create the .ldb file which Jet uses for locking
purposes?


Nov 19 '05 #8
ReadOnly was not checked.
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"Pipo" <No****@me.co m> wrote in message
news:OS******** ********@TK2MSF TNGP10.phx.gbl. ..
If you right click on the access DB and choose for properties is the
checkbox 'read-only' checked?
If so uncheck it.
"Nathan Sokalski" <nj********@hot mail.com> wrote in message
news:Oo******** ******@TK2MSFTN GP15.phx.gbl...
I did not have Access (or any other programs that use Access or any
Access
DBs) open at the time. I even tried restarting my computer to make sure
nothing was running in the background, but it did not help.
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"Scott Mitchell [MVP]" <mi******@4guys fromrolla.com> wrote in message
news:UN******** *****@newssvr11 .news.prodigy.c om...
> Make sure your Access database file is NOT open in Windows. I.e., make
> sure you are closed out of it. I don't know if that's the cause of
> YOUR
> error, but I do know that things can get 'funky' if you have Access
> opened, inspecting/modifying your database, and you try to work with it
> via an ASP.NET page...
>
> hth
>
>
>
> Nathan Sokalski wrote:
>> I am recieving an error about not being able to use a file because it is >> already in use. Based on the error, I think it is referring to my DB, but >> I don't know how to avoid the error or why it is happening. Here is
>> the
>> error:
>> Server Error in '/LVBEP' Application.

------------------------------------------------------------------------- ------- >>
>> Could not use ''; file already in use.
>> 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.Data.Ole Db.OleDbExcepti on: Could not use '';
>> file already in use.
>>
>> Source Error:
>>
>> Line 41: Dim memberadapter As New OleDb.OleDbData Adapter("SELECT >> * FROM members ORDER BY name", "PROVIDER=Micro soft.Jet.OLEDB. 4.0;DATA
>> SOURCE=" & Server.MapPath( "LVBEP.mdb" ))
>> Line 42:
>> Line 43: memberadapter.F ill(members)
>> Line 44: datEditMembers. DataSource = members
>> Line 45: datEditMembers. DataBind()
>>
>> Source File: C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb Line: 43
>>
>> Stack Trace:
>>
>> [OleDbException (0x80004005): Could not use ''; file already in use.]
>> System.Data.Ole Db.OleDbConnect ion.ProcessResu lts(Int32 hr) +20
>> System.Data.Ole Db.OleDbConnect ion.InitializeP rovider() +57
>> System.Data.Ole Db.OleDbConnect ion.Open() +203
>> System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection
>> connection,
>> ConnectionState & originalState) +44
>> System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
>> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
>> CommandBehavior behavior) +304
>> System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
>> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
>> CommandBehavior behavior) +77
>> System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet) +38
>> LVBEP.memberadm in.RefreshMembe rs() in
>> C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 43
>> LVBEP.memberadm in.Page_Init(Ob ject sender, EventArgs e) in
>> C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb: 27
>> System.Web.UI.C ontrol.OnInit(E ventArgs e) +67
>> System.Web.UI.C ontrol.InitRecu rsive(Control namingContainer ) +241
>> System.Web.UI.P age.ProcessRequ estMain() +197
>>
>>
>>

------------------------------------------------------------------------- ------- >> Version Information: Microsoft .NET Framework Version:1.1.432 2.2032;
>> ASP.NET Version:1.1.432 2.2032
>
>
> --
>
> Scott Mitchell [ASP.NET MVP]
> mi******@4GuysF romRolla.com
> http://www.4GuysFromRolla.com/ScottMitchell



Nov 19 '05 #9
I do not have a file by that name.
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"Patrick.O. Ige" <pa********@opt usnet.com.au> wrote in message
news:uR******** ******@tk2msftn gp13.phx.gbl...
When the Access databse file is opened..i think it also opens
anothe file called ldb ir something try deleting it..
Not really sure if that would help but i had the same issues before
Patrick

"Nathan Sokalski" <nj********@hot mail.com> wrote in message
news:Od******** *****@tk2msftng p13.phx.gbl...
Yes, it is pointing to a valid DB (not to mention if the DB was not ther

it
would say something like file could not be found). I have also given the
ASPNET machine account access to the database. I have used the database
before in this application, but something, I don't know what, caused it
to
start giving this error. I am simply having trouble finding the source of
the error (where/what in my code is causing the problem?) Thanks.
--
Nathan Sokalski
nj********@hotm ail.com
http://www.nathansokalski.com/

"Mark Rae" <ma**@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:%2******** **********@TK2M SFTNGP12.phx.gb l...
> "Nathan Sokalski" <nj********@hot mail.com> wrote in message
> news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
>
>> Source File: C:\Inetpub\wwwr oot\LVBEP\membe radmin.aspx.vb Line: 43
>
> 1) Is Server.MapPath( "LVBEP.mdb" ) pointing to a valid database?
>
> 2) Does the ASPNET account have sufficient permissions to do what you want > i.e. specifically to create the .ldb file which Jet uses for locking
> purposes?
>



Nov 19 '05 #10

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

Similar topics

9
3198
by: Hans-Joachim Widmaier | last post by:
Hi all. Handling files is an extremely frequent task in programming, so most programming languages have an abstraction of the basic files offered by the underlying operating system. This is indeed also true for our language of choice, Python. Its file type allows some extraordinary convenient access like: for line in open("blah"): handle_line(line)
1
4343
by: jase_dukerider | last post by:
Hi I have an assignment to hand in shortly for which I am after some guidance. The task is to read a WAV file, request a fade in /out time for the track from the user and the do the fade by modifying the binary file then writing it as a new file I have attached my code so far but do not know how to do the fade and how to write it as a new file. Please help! #include <stdio.h> #include <stdlib.h> #include <string.h>
7
13385
by: Mark | last post by:
Hello, I have researched and tried every thing I have found on the web, in groups and MS KB articles. Here is what I have. I have a Windows 2000 Domain Controller all service packs and every thing else from windows update. ..NET 1.0 and 1.1 installed on the server. Actually .NET was installed before the server was made a DC.
13
4297
by: Sky Sigal | last post by:
I have created an IHttpHandler that waits for uploads as attachments for a webmail interface, and saves it to a directory that is defined in config.xml. My question is the following: assuming that this is suppossed to end up as a component for others to use, and therefore I do NOT have access to their global.cs::Session_End() how do I cleanup files that were uploaded -- but obviously left stranded when the users aborted/gave up writting...
6
4128
by: tshad | last post by:
I have an upload file input as: <input id="MyFile" style="width:300px" type="File" runat="Server"> This works fine, but I find that if my page doesn't pass validation during postback, the page comes back with all the data intact, except for the upload object. The text box for "MyFile" (my example) is always cleared. Why is that and is there a way to stop that from happening? Thanks,
2
2563
by: Dan | last post by:
Hi, I know this code is not entirely javascript, but bare with me. Can you please tell me why this does not work: page: filemanager.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
4
4181
by: pank7 | last post by:
hi everyone, I have a program here to test the file IO(actually output) with buffer turned on and off. What I want to see is that there will be obvious differece in time. Here I have an input file scales 1.1M, what I did is just copy it to another output file(ten times). But I don't think I see any difference. My file system is ext3, with debian sarge(kernel-2.6.8). Here is the main part of my program:
68
6795
by: Martin Joergensen | last post by:
Hi, I have some files which has the following content: 0 0 0 0 0 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 0 0 0 0 0 0 0
1
6476
by: laredotornado | last post by:
Hi, I'm using PHP 4.4.4 on Apache 2 on Fedora Core 5. PHP was installed using Apache's apxs and the php library was installed to /usr/local/php. However, when I set my "error_reporting" setting to be "E_ALL", notices are still not getting reported. The perms on my file are 664, with owner root and group root. The php.ini file is located at /usr/local/lib/php/php.ini. Any ideas why the setting does not seem to be having an effect? ...
1
47445
KevinADC
by: KevinADC | last post by:
Note: You may skip to the end of the article if all you want is the perl code. Introduction Many websites have a form or a link you can use to download a file. You click a form button or click on a link and after a moment or two a file download dialog box pops-up in your web browser and prompts you for some instructions, such as “open” or “save“. I’m going to show you how to do that using a perl script. What You Need Any recent...
0
8827
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
8732
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7337
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 project—planning, coding, testing, and deployment—without 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...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4159
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
4318
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2732
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1959
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1622
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.