473,804 Members | 2,812 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

CompactDatabase fails with Invalid Argument error

Hello.

For years I've been using the DBEngine.Compac tDatabase code to make
backups of backend databases. But now I've struck a baffling problem
where I get an Invalid Argument error. This happens on an XPHome machine
with both A97 and A2000 installed.

I simplified the code and the error still occurs. In the following new
test database containing only this procedure, dbSource refers to a brand
new database with no objects which is closed. dbDest does not yet exist.
On the last line I get the error message 'Invalid Argument'. The same
happens if I leave the dbLangGeneral out.

Dim dbSource As String, dbDest As String

dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
dbDest = "C:\oj\aa\devel opment\DBDest.m db"

DBEngine.Compac tDatabase dbSource, dbDest, dbLangGeneral

Any suggestions?
Owen Jenkins
Nov 12 '05 #1
8 3376
I've since found that this problem is related to having A97 and A2000 on the
same machine. The compact process works OK in A2000 on a machine with only
A2000, and works OK in A97 on a machine with only A97. It also works OK in
A2000 on a machine with both A97 and A2000, but on the same machine, it
doesn't work in A97.

So having A2000 on the same machine, prevents the A97 compact process
working.

Any ideas why? It doesn't appear to be a references issue.

Owen

Owen Jenkins wrote:
Hello.

For years I've been using the DBEngine.Compac tDatabase code to make
backups of backend databases. But now I've struck a baffling problem
where I get an Invalid Argument error. This happens on an XPHome machine
with both A97 and A2000 installed.

I simplified the code and the error still occurs. In the following new
test database containing only this procedure, dbSource refers to a brand
new database with no objects which is closed. dbDest does not yet exist.
On the last line I get the error message 'Invalid Argument'. The same
happens if I leave the dbLangGeneral out.

Dim dbSource As String, dbDest As String

dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
dbDest = "C:\oj\aa\devel opment\DBDest.m db"

DBEngine.Compac tDatabase dbSource, dbDest, dbLangGeneral

Any suggestions?

Owen Jenkins


Nov 12 '05 #2
I duggest you go to your debug (immediate) window and type the following:

? dbLangGeneral

And tell me what it says there.
--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.
"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** *******@healthb ase.com.au...
I've since found that this problem is related to having A97 and A2000 on the same machine. The compact process works OK in A2000 on a machine with only
A2000, and works OK in A97 on a machine with only A97. It also works OK in
A2000 on a machine with both A97 and A2000, but on the same machine, it
doesn't work in A97.

So having A2000 on the same machine, prevents the A97 compact process
working.

Any ideas why? It doesn't appear to be a references issue.

Owen

Owen Jenkins wrote:
Hello.

For years I've been using the DBEngine.Compac tDatabase code to make
backups of backend databases. But now I've struck a baffling problem
where I get an Invalid Argument error. This happens on an XPHome machine
with both A97 and A2000 installed.

I simplified the code and the error still occurs. In the following new
test database containing only this procedure, dbSource refers to a brand
new database with no objects which is closed. dbDest does not yet exist.
On the last line I get the error message 'Invalid Argument'. The same
happens if I leave the dbLangGeneral out.

Dim dbSource As String, dbDest As String

dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
dbDest = "C:\oj\aa\devel opment\DBDest.m db"

DBEngine.Compac tDatabase dbSource, dbDest, dbLangGeneral

Any suggestions?

Owen Jenkins

Nov 12 '05 #3
? dbLangGeneral gives me

;LANGID=0x0409; CP=1252;COUNTRY =0

It's the same on all my machines (W95/A97, Win98/A2000, WinXPH/A97/A2000).

Owen

"Michael (michka) Kaplan [MS]" wrote:
I duggest you go to your debug (immediate) window and type the following:

? dbLangGeneral

And tell me what it says there.

--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.

"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** *******@healthb ase.com.au...
I've since found that this problem is related to having A97 and A2000 on

the
same machine. The compact process works OK in A2000 on a machine with only
A2000, and works OK in A97 on a machine with only A97. It also works OK in
A2000 on a machine with both A97 and A2000, but on the same machine, it
doesn't work in A97.

So having A2000 on the same machine, prevents the A97 compact process
working.

Any ideas why? It doesn't appear to be a references issue.

Owen

Owen Jenkins wrote:
Hello.

For years I've been using the DBEngine.Compac tDatabase code to make
backups of backend databases. But now I've struck a baffling problem
where I get an Invalid Argument error. This happens on an XPHome machine
with both A97 and A2000 installed.

I simplified the code and the error still occurs. In the following new
test database containing only this procedure, dbSource refers to a brand
new database with no objects which is closed. dbDest does not yet exist.
On the last line I get the error message 'Invalid Argument'. The same
happens if I leave the dbLangGeneral out.

Dim dbSource As String, dbDest As String

dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
dbDest = "C:\oj\aa\devel opment\DBDest.m db"

DBEngine.Compac tDatabase dbSource, dbDest, dbLangGeneral

Any suggestions?

Owen Jenkins


Nov 12 '05 #4
This parameter should be one of the dbSort constants, not one of the dbLang
constants (which are to be used only for database creation).
--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.
"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** *******@healthb ase.com.au...
? dbLangGeneral gives me

;LANGID=0x0409; CP=1252;COUNTRY =0

It's the same on all my machines (W95/A97, Win98/A2000, WinXPH/A97/A2000).

Owen

"Michael (michka) Kaplan [MS]" wrote:
I duggest you go to your debug (immediate) window and type the following:
? dbLangGeneral

And tell me what it says there.

--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.

"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** *******@healthb ase.com.au...
I've since found that this problem is related to having A97 and A2000 on
the
same machine. The compact process works OK in A2000 on a machine with

only A2000, and works OK in A97 on a machine with only A97. It also works OK in A2000 on a machine with both A97 and A2000, but on the same machine, it doesn't work in A97.

So having A2000 on the same machine, prevents the A97 compact process
working.

Any ideas why? It doesn't appear to be a references issue.

Owen

Owen Jenkins wrote:

> Hello.
>
> For years I've been using the DBEngine.Compac tDatabase code to make
> backups of backend databases. But now I've struck a baffling problem
> where I get an Invalid Argument error. This happens on an XPHome machine > with both A97 and A2000 installed.
>
> I simplified the code and the error still occurs. In the following new > test database containing only this procedure, dbSource refers to a brand > new database with no objects which is closed. dbDest does not yet exist. > On the last line I get the error message 'Invalid Argument'. The same > happens if I leave the dbLangGeneral out.
>
> Dim dbSource As String, dbDest As String
>
> dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
> dbDest = "C:\oj\aa\devel opment\DBDest.m db"
>
> DBEngine.Compac tDatabase dbSource, dbDest, dbLangGeneral
>
> Any suggestions?
>
> Owen Jenkins

Nov 12 '05 #5
Or better yet, do not even specify it unless you are trying to change the
collating order of the database.
--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.
"Michael (michka) Kaplan [MS]" <mi*****@online .microsoft.com> wrote in
message news:3f******** @news.microsoft .com...
This parameter should be one of the dbSort constants, not one of the dbLang constants (which are to be used only for database creation).
--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.
"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** *******@healthb ase.com.au...
? dbLangGeneral gives me

;LANGID=0x0409; CP=1252;COUNTRY =0

It's the same on all my machines (W95/A97, Win98/A2000, WinXPH/A97/A2000).

Owen

"Michael (michka) Kaplan [MS]" wrote:
I duggest you go to your debug (immediate) window and type the
following:
? dbLangGeneral

And tell me what it says there.

--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.

"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** *******@healthb ase.com.au...
> I've since found that this problem is related to having A97 and A2000 on
the
> same machine. The compact process works OK in A2000 on a machine
with
only > A2000, and works OK in A97 on a machine with only A97. It also works OK in > A2000 on a machine with both A97 and A2000, but on the same machine, it > doesn't work in A97.
>
> So having A2000 on the same machine, prevents the A97 compact
process > working.
>
> Any ideas why? It doesn't appear to be a references issue.
>
> Owen
>
> Owen Jenkins wrote:
>
> > Hello.
> >
> > For years I've been using the DBEngine.Compac tDatabase code to make > > backups of backend databases. But now I've struck a baffling problem > > where I get an Invalid Argument error. This happens on an XPHome

machine > > with both A97 and A2000 installed.
> >
> > I simplified the code and the error still occurs. In the following new > > test database containing only this procedure, dbSource refers to a brand > > new database with no objects which is closed. dbDest does not yet exist. > > On the last line I get the error message 'Invalid Argument'. The same > > happens if I leave the dbLangGeneral out.
> >
> > Dim dbSource As String, dbDest As String
> >
> > dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
> > dbDest = "C:\oj\aa\devel opment\DBDest.m db"
> >
> > DBEngine.Compac tDatabase dbSource, dbDest, dbLangGeneral
> >
> > Any suggestions?
> >
> > Owen Jenkins
>


Nov 12 '05 #6
I'm not sure what you mean that it should be a dbSort constant. And the problem
occurs even if I don't include the dbLangGeneral parameter at all, that is
DBEngine.Compac tDatabase dbSource, dbDest.

Owen

"Michael (michka) Kaplan [MS]" wrote:
Or better yet, do not even specify it unless you are trying to change the
collating order of the database.

--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.

"Michael (michka) Kaplan [MS]" <mi*****@online .microsoft.com> wrote in
message news:3f******** @news.microsoft .com...
This parameter should be one of the dbSort constants, not one of the

dbLang
constants (which are to be used only for database creation).
--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.
"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** *******@healthb ase.com.au...
? dbLangGeneral gives me

;LANGID=0x0409; CP=1252;COUNTRY =0

It's the same on all my machines (W95/A97, Win98/A2000, WinXPH/A97/A2000).
Owen

"Michael (michka) Kaplan [MS]" wrote:

> I duggest you go to your debug (immediate) window and type the

following:
>
> ? dbLangGeneral
>
> And tell me what it says there.
>
> --
> MichKa [MS]
> NLS Collation/Locale/Keyboard Development
> Globalization Infrastructure and Font Technologies
>
> This posting is provided "AS IS" with
> no warranties, and confers no rights.
>
> "Owen Jenkins" <oj@healthbase. com.au> wrote in message
> news:3F******** *******@healthb ase.com.au...
> > I've since found that this problem is related to having A97 and A2000
on
> the
> > same machine. The compact process works OK in A2000 on a machine

with
only
> > A2000, and works OK in A97 on a machine with only A97. It also works

OK in
> > A2000 on a machine with both A97 and A2000, but on the same machine,

it
> > doesn't work in A97.
> >
> > So having A2000 on the same machine, prevents the A97 compact

process > > working.
> >
> > Any ideas why? It doesn't appear to be a references issue.
> >
> > Owen
> >
> > Owen Jenkins wrote:
> >
> > > Hello.
> > >
> > > For years I've been using the DBEngine.Compac tDatabase code to make > > > backups of backend databases. But now I've struck a baffling problem > > > where I get an Invalid Argument error. This happens on an XPHome

machine
> > > with both A97 and A2000 installed.
> > >
> > > I simplified the code and the error still occurs. In the following

new
> > > test database containing only this procedure, dbSource refers to a

brand
> > > new database with no objects which is closed. dbDest does not yet

exist.
> > > On the last line I get the error message 'Invalid Argument'. The

same
> > > happens if I leave the dbLangGeneral out.
> > >
> > > Dim dbSource As String, dbDest As String
> > >
> > > dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
> > > dbDest = "C:\oj\aa\devel opment\DBDest.m db"
> > >
> > > DBEngine.Compac tDatabase dbSource, dbDest, dbLangGeneral
> > >
> > > Any suggestions?
> > >
> > > Owen Jenkins
> >



--
Owen Jenkins
oj@healthbase.c om.au
HealthBase Data Services
http://www.healthbase.com.au
PO Box 714, Randwick, NSW 2031
Tel & Fax: 61 2 9341 7792
-------------------------------------------
Nov 12 '05 #7
What I mean is that dbLangGeneral should only EVER be used during create.

Are you truly saying that the following code fails:

Dim dbSource As String
Dim dbDest As String

dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
dbDest = "C:\oj\aa\devel opment\DBDest.m db"

DBEngine.Compac tDatabase dbSource, dbDest

How about if you change the last line to:

DAO.DBEngine.Co mpactDatabase dbSource, dbDest
--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.
"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** ******@healthba se.com.au...
I'm not sure what you mean that it should be a dbSort constant. And the problem occurs even if I don't include the dbLangGeneral parameter at all, that is
DBEngine.Compac tDatabase dbSource, dbDest.

Owen

"Michael (michka) Kaplan [MS]" wrote:
Or better yet, do not even specify it unless you are trying to change the collating order of the database.

--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.

"Michael (michka) Kaplan [MS]" <mi*****@online .microsoft.com> wrote in
message news:3f******** @news.microsoft .com...
This parameter should be one of the dbSort constants, not one of the

dbLang
constants (which are to be used only for database creation).
--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.
"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** *******@healthb ase.com.au...
> ? dbLangGeneral gives me
>
> ;LANGID=0x0409; CP=1252;COUNTRY =0
>
> It's the same on all my machines (W95/A97, Win98/A2000,

WinXPH/A97/A2000).
>
> Owen
>
> "Michael (michka) Kaplan [MS]" wrote:
>
> > I duggest you go to your debug (immediate) window and type the
following:
> >
> > ? dbLangGeneral
> >
> > And tell me what it says there.
> >
> > --
> > MichKa [MS]
> > NLS Collation/Locale/Keyboard Development
> > Globalization Infrastructure and Font Technologies
> >
> > This posting is provided "AS IS" with
> > no warranties, and confers no rights.
> >
> > "Owen Jenkins" <oj@healthbase. com.au> wrote in message
> > news:3F******** *******@healthb ase.com.au...
> > > I've since found that this problem is related to having A97 and

A2000
on
> > the
> > > same machine. The compact process works OK in A2000 on a machine

with
only
> > > A2000, and works OK in A97 on a machine with only A97. It also works OK in
> > > A2000 on a machine with both A97 and A2000, but on the same machine, it
> > > doesn't work in A97.
> > >
> > > So having A2000 on the same machine, prevents the A97 compact

process
> > > working.
> > >
> > > Any ideas why? It doesn't appear to be a references issue.
> > >
> > > Owen
> > >
> > > Owen Jenkins wrote:
> > >
> > > > Hello.
> > > >
> > > > For years I've been using the DBEngine.Compac tDatabase code to

make
> > > > backups of backend databases. But now I've struck a baffling

problem
> > > > where I get an Invalid Argument error. This happens on an XPHome machine
> > > > with both A97 and A2000 installed.
> > > >
> > > > I simplified the code and the error still occurs. In the following new
> > > > test database containing only this procedure, dbSource refers to a brand
> > > > new database with no objects which is closed. dbDest does not yet exist.
> > > > On the last line I get the error message 'Invalid Argument'. The same
> > > > happens if I leave the dbLangGeneral out.
> > > >
> > > > Dim dbSource As String, dbDest As String
> > > >
> > > > dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
> > > > dbDest = "C:\oj\aa\devel opment\DBDest.m db"
> > > >
> > > > DBEngine.Compac tDatabase dbSource, dbDest, dbLangGeneral
> > > >
> > > > Any suggestions?
> > > >
> > > > Owen Jenkins
> > >
>


--
Owen Jenkins
oj@healthbase.c om.au
HealthBase Data Services
http://www.healthbase.com.au
PO Box 714, Randwick, NSW 2031
Tel & Fax: 61 2 9341 7792
-------------------------------------------

Nov 12 '05 #8
I'd love to report success with DAO.DBEngine, but alas, same error.

Yes, the exact code below fails on the last line with error 3001 - Invalid
argument.

The db with the code has only this code in it - no other modules. The dbSource
exists and is empty. The dbDest does not exist. I have references to VBA, Access
8.0 and DAO 3.51. I also have Access 2000 on the same machine, but double
clicking on an mdb file currently opens it in A97. The same setup works in
A2000.

Owen

"Michael (michka) Kaplan [MS]" wrote:
What I mean is that dbLangGeneral should only EVER be used during create.

Are you truly saying that the following code fails:

Dim dbSource As String
Dim dbDest As String

dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
dbDest = "C:\oj\aa\devel opment\DBDest.m db"

DBEngine.Compac tDatabase dbSource, dbDest

How about if you change the last line to:

DAO.DBEngine.Co mpactDatabase dbSource, dbDest

--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.

"Owen Jenkins" <oj@healthbase. com.au> wrote in message
news:3F******** ******@healthba se.com.au...
I'm not sure what you mean that it should be a dbSort constant. And the

problem
occurs even if I don't include the dbLangGeneral parameter at all, that is
DBEngine.Compac tDatabase dbSource, dbDest.

Owen

"Michael (michka) Kaplan [MS]" wrote:
Or better yet, do not even specify it unless you are trying to change the collating order of the database.

--
MichKa [MS]
NLS Collation/Locale/Keyboard Development
Globalization Infrastructure and Font Technologies

This posting is provided "AS IS" with
no warranties, and confers no rights.

"Michael (michka) Kaplan [MS]" <mi*****@online .microsoft.com> wrote in
message news:3f******** @news.microsoft .com...
> This parameter should be one of the dbSort constants, not one of the
dbLang
> constants (which are to be used only for database creation).
>
>
> --
> MichKa [MS]
> NLS Collation/Locale/Keyboard Development
> Globalization Infrastructure and Font Technologies
>
> This posting is provided "AS IS" with
> no warranties, and confers no rights.
>
>
> "Owen Jenkins" <oj@healthbase. com.au> wrote in message
> news:3F******** *******@healthb ase.com.au...
> > ? dbLangGeneral gives me
> >
> > ;LANGID=0x0409; CP=1252;COUNTRY =0
> >
> > It's the same on all my machines (W95/A97, Win98/A2000,
WinXPH/A97/A2000).
> >
> > Owen
> >
> > "Michael (michka) Kaplan [MS]" wrote:
> >
> > > I duggest you go to your debug (immediate) window and type the
> following:
> > >
> > > ? dbLangGeneral
> > >
> > > And tell me what it says there.
> > >
> > > --
> > > MichKa [MS]
> > > NLS Collation/Locale/Keyboard Development
> > > Globalization Infrastructure and Font Technologies
> > >
> > > This posting is provided "AS IS" with
> > > no warranties, and confers no rights.
> > >
> > > "Owen Jenkins" <oj@healthbase. com.au> wrote in message
> > > news:3F******** *******@healthb ase.com.au...
> > > > I've since found that this problem is related to having A97 and
A2000
> on
> > > the
> > > > same machine. The compact process works OK in A2000 on a machine
with
> only
> > > > A2000, and works OK in A97 on a machine with only A97. It also works > OK in
> > > > A2000 on a machine with both A97 and A2000, but on the same machine, > it
> > > > doesn't work in A97.
> > > >
> > > > So having A2000 on the same machine, prevents the A97 compact
process
> > > > working.
> > > >
> > > > Any ideas why? It doesn't appear to be a references issue.
> > > >
> > > > Owen
> > > >
> > > > Owen Jenkins wrote:
> > > >
> > > > > Hello.
> > > > >
> > > > > For years I've been using the DBEngine.Compac tDatabase code to
make
> > > > > backups of backend databases. But now I've struck a baffling
problem
> > > > > where I get an Invalid Argument error. This happens on an XPHome > machine
> > > > > with both A97 and A2000 installed.
> > > > >
> > > > > I simplified the code and the error still occurs. In the following > new
> > > > > test database containing only this procedure, dbSource refers to a > brand
> > > > > new database with no objects which is closed. dbDest does not yet > exist.
> > > > > On the last line I get the error message 'Invalid Argument'. The > same
> > > > > happens if I leave the dbLangGeneral out.
> > > > >
> > > > > Dim dbSource As String, dbDest As String
> > > > >
> > > > > dbSource = "C:\oj\aa\devel opment\DBSource .mdb"
> > > > > dbDest = "C:\oj\aa\devel opment\DBDest.m db"
> > > > >
> > > > > DBEngine.Compac tDatabase dbSource, dbDest, dbLangGeneral
> > > > >
> > > > > Any suggestions?
> > > > >
> > > > > Owen Jenkins
> > > >
> >
>
>


--
Owen Jenkins
oj@healthbase.c om.au
HealthBase Data Services
http://www.healthbase.com.au
PO Box 714, Randwick, NSW 2031
Tel & Fax: 61 2 9341 7792
-------------------------------------------


--
Owen Jenkins
oj@healthbase.c om.au
HealthBase Data Services
http://www.healthbase.com.au
PO Box 714, Randwick, NSW 2031
Tel & Fax: 61 2 9341 7792
-------------------------------------------
Nov 12 '05 #9

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

Similar topics

0
5283
by: Mara | last post by:
Hi, I have very serious problem with query in Access. I have, in my DB, a lot of forms with some buttons that I use to do query. When I press that buttons and query start I have "Invalid Argument" error because memo field lenght is greater than 128 char. If the type field is memo why I have this error? How I make to resolve this problem?
1
9133
by: shalinmangar | last post by:
Hi, I have created two javascript classes in the following way. //Script tag starts here function ClassA(textBoxID, objB) { this.textBox = document.getElementById(textBoxID); this.objB = objB;
1
1790
by: Eric | last post by:
When I run my script it gives error on the following line: strEmail = Right(strEmail, (Len(strEmail) - 1)) I enclose my code and the sample text file too Thanks, ----------------------------------------------------------------------------- Option Compare Database Option Explicit Private Sub Command26_Click()
8
5914
by: matt1856 | last post by:
I have a database that I have been using for years. I installed some updates and now I get a "invalid argument" error when I try to open the database. I have tried to run the "compact and repair" program within access, but I just get the same error. Does anyone have any ideas? I am running Windows XP with Access 2003.
1
1740
by: Adam G | last post by:
Ahoy. I keep getting an "Invalid Argument" error whenever I try to Make Table query in Access. The query looks fine as a Select Query but cannot be saved nor made into a Make Table query. Thoughts on this?
1
1653
by: mdhameed2007 | last post by:
hi this is hameed i have Lots of Query to Run in office 2000 Access Query and Invalid Argument Error is coming when i am run the Query plz help me to
1
4650
by: max.aginaga | last post by:
Hi everyone I've come across the following problem: on two different linux machines, both running python 2.5 (r25:51908), I have the same file 'd.dat'. The md5 checksums are the same. Now, on one machine the following code works while on the other...
0
3279
by: shekharban | last post by:
Hi, Below is the raw socket program for sending routing header in ipv6 domain. My source address is fe80::21d:9ff:fe17:58c7 and destination address is fe80::21d:9ff:fe17:5d0e in the below example. When i run this i am getting invalid argument with sendmsg, with error number 22. Could any one please help me out with this. #include <sys/types.h> #include <netinet/in.h> #include <netinet/ip6.h> #include <errno.h> #include <string.h>
0
9576
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
10568
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...
1
10311
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10074
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7613
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
6847
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
5647
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4292
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
3
2988
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.