PC Review


Reply
Thread Tools Rate Thread

2683 There is no object in this control error

 
 
=?Utf-8?B?TG91dmVycmls?=
Guest
Posts: n/a
 
      1st Nov 2007
I have a calendar pop up form which has the following code in it:

mvCal.Value = CDate(Date)

On my PC it works fine but on transferring to the customer I get the
following error when the execution hits the line of code above:

"2683 There is no object in this control"

The microsoft calendar control 2007 reference is checked on the accdb file
I'm running (the one which works fine on my PC), however if you open access
from the problem PC's program menu and create a new database this reference
is not even on the list of available references.

Both PC's are running vista and office professional 2007.

Can anyone help

Thanks Lou

 
Reply With Quote
 
 
 
 
Allen Browne
Guest
Posts: n/a
 
      1st Nov 2007
What is "Date"?
Do you have a field by that name?
A text box?
Or is the system date, in which case it is a Date data type and doesn't need
CDate(). (Note that Date is a reserved word both in VBA and in JET.)

What is vbCal?
Is it the name of a calendar control?
Or is it the name of a field?

Why do you need a calendar in Access 2007?
Did you realize the new version automatically displays a little calendar
beside a text box that's bound to a Date/Time field, so you don't need an
external control?

If you really want a popup calendar, would you consider using a little
Access form that has none of the problems of external controls? If so, see:
http://allenbrowne.com/ser-51.html

Have you added your database folder to the list of trusted locations under:
Office Button | Access Options | Trust Center | Trust Center Settings

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Louverril" <(E-Mail Removed)> wrote in message
news:7FE6B45D-E2A5-44E0-A7B0-(E-Mail Removed)...
>I have a calendar pop up form which has the following code in it:
>
> mvCal.Value = CDate(Date)
>
> On my PC it works fine but on transferring to the customer I get the
> following error when the execution hits the line of code above:
>
> "2683 There is no object in this control"
>
> The microsoft calendar control 2007 reference is checked on the accdb file
> I'm running (the one which works fine on my PC), however if you open
> access
> from the problem PC's program menu and create a new database this
> reference
> is not even on the list of available references.
>
> Both PC's are running vista and office professional 2007.
>
> Can anyone help
>
> Thanks Lou


 
Reply With Quote
 
=?Utf-8?B?TG91dmVycmls?=
Guest
Posts: n/a
 
      1st Nov 2007
The code works perfectly well on my PC. Very very well.
I do need this function it does some fancy stuff adding weeks to a date - I
don't see why I should change it when it works fine on other PC's!!

It is mvCal not VbCal.

And to be honest I'm not sure what it is because someone else gave me that
part - but as I say it works fine on my PC! Could it be corruption?

Thanks
Lou

"Allen Browne" wrote:

> What is "Date"?
> Do you have a field by that name?
> A text box?
> Or is the system date, in which case it is a Date data type and doesn't need
> CDate(). (Note that Date is a reserved word both in VBA and in JET.)
>
> What is vbCal?
> Is it the name of a calendar control?
> Or is it the name of a field?
>
> Why do you need a calendar in Access 2007?
> Did you realize the new version automatically displays a little calendar
> beside a text box that's bound to a Date/Time field, so you don't need an
> external control?
>
> If you really want a popup calendar, would you consider using a little
> Access form that has none of the problems of external controls? If so, see:
> http://allenbrowne.com/ser-51.html
>
> Have you added your database folder to the list of trusted locations under:
> Office Button | Access Options | Trust Center | Trust Center Settings
>
> --
> Allen Browne - Microsoft MVP. Perth, Western Australia
> Tips for Access users - http://allenbrowne.com/tips.html
> Reply to group, rather than allenbrowne at mvps dot org.
>
> "Louverril" <(E-Mail Removed)> wrote in message
> news:7FE6B45D-E2A5-44E0-A7B0-(E-Mail Removed)...
> >I have a calendar pop up form which has the following code in it:
> >
> > mvCal.Value = CDate(Date)
> >
> > On my PC it works fine but on transferring to the customer I get the
> > following error when the execution hits the line of code above:
> >
> > "2683 There is no object in this control"
> >
> > The microsoft calendar control 2007 reference is checked on the accdb file
> > I'm running (the one which works fine on my PC), however if you open
> > access
> > from the problem PC's program menu and create a new database this
> > reference
> > is not even on the list of available references.
> >
> > Both PC's are running vista and office professional 2007.
> >
> > Can anyone help
> >
> > Thanks Lou

>
>

 
Reply With Quote
 
Allen Browne
Guest
Posts: n/a
 
      1st Nov 2007
Visual Basic uses the vb prefix for constants that are defined in the Visual
Basic library.

AFAIK, there is no vbCal defined in the VB library.

Since I don't understand what your code is doing, I can't suggest how to fix
it.

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Louverril" <(E-Mail Removed)> wrote in message
news:A47CE6E3-5503-426E-8DC9-(E-Mail Removed)...
> The code works perfectly well on my PC. Very very well.
> I do need this function it does some fancy stuff adding weeks to a date -
> I
> don't see why I should change it when it works fine on other PC's!!
>
> It is mvCal not VbCal.
>
> And to be honest I'm not sure what it is because someone else gave me that
> part - but as I say it works fine on my PC! Could it be corruption?
>
> Thanks
> Lou
>
> "Allen Browne" wrote:
>
>> What is "Date"?
>> Do you have a field by that name?
>> A text box?
>> Or is the system date, in which case it is a Date data type and doesn't
>> need
>> CDate(). (Note that Date is a reserved word both in VBA and in JET.)
>>
>> What is vbCal?
>> Is it the name of a calendar control?
>> Or is it the name of a field?
>>
>> Why do you need a calendar in Access 2007?
>> Did you realize the new version automatically displays a little calendar
>> beside a text box that's bound to a Date/Time field, so you don't need an
>> external control?
>>
>> If you really want a popup calendar, would you consider using a little
>> Access form that has none of the problems of external controls? If so,
>> see:
>> http://allenbrowne.com/ser-51.html
>>
>> Have you added your database folder to the list of trusted locations
>> under:
>> Office Button | Access Options | Trust Center | Trust Center Settings
>>
>> --
>> Allen Browne - Microsoft MVP. Perth, Western Australia
>> Tips for Access users - http://allenbrowne.com/tips.html
>> Reply to group, rather than allenbrowne at mvps dot org.
>>
>> "Louverril" <(E-Mail Removed)> wrote in message
>> news:7FE6B45D-E2A5-44E0-A7B0-(E-Mail Removed)...
>> >I have a calendar pop up form which has the following code in it:
>> >
>> > mvCal.Value = CDate(Date)
>> >
>> > On my PC it works fine but on transferring to the customer I get the
>> > following error when the execution hits the line of code above:
>> >
>> > "2683 There is no object in this control"
>> >
>> > The microsoft calendar control 2007 reference is checked on the accdb
>> > file
>> > I'm running (the one which works fine on my PC), however if you open
>> > access
>> > from the problem PC's program menu and create a new database this
>> > reference
>> > is not even on the list of available references.
>> >
>> > Both PC's are running vista and office professional 2007.
>> >
>> > Can anyone help
>> >
>> > Thanks Lou

>>
>>


 
Reply With Quote
 
=?Utf-8?B?TG91dmVycmls?=
Guest
Posts: n/a
 
      1st Nov 2007
Allen,

Also if I try to run the code in mdb form (in 2007 still) I get that
mscomct2.ocx version 2.0 has a missing reference.
If I just take this out - uncheck it - I get the error mentioned also in MDB
format.

Don't know whether this is relevant.

Can't stress enough the whole thing works on my PC - so it some reference or
corruption or something.

Note: The same accdb file on the same memory stick has the same references
on my PC as when run on the problem PC.

Lou

"Allen Browne" wrote:

> What is "Date"?
> Do you have a field by that name?
> A text box?
> Or is the system date, in which case it is a Date data type and doesn't need
> CDate(). (Note that Date is a reserved word both in VBA and in JET.)
>
> What is vbCal?
> Is it the name of a calendar control?
> Or is it the name of a field?
>
> Why do you need a calendar in Access 2007?
> Did you realize the new version automatically displays a little calendar
> beside a text box that's bound to a Date/Time field, so you don't need an
> external control?
>
> If you really want a popup calendar, would you consider using a little
> Access form that has none of the problems of external controls? If so, see:
> http://allenbrowne.com/ser-51.html
>
> Have you added your database folder to the list of trusted locations under:
> Office Button | Access Options | Trust Center | Trust Center Settings
>
> --
> Allen Browne - Microsoft MVP. Perth, Western Australia
> Tips for Access users - http://allenbrowne.com/tips.html
> Reply to group, rather than allenbrowne at mvps dot org.
>
> "Louverril" <(E-Mail Removed)> wrote in message
> news:7FE6B45D-E2A5-44E0-A7B0-(E-Mail Removed)...
> >I have a calendar pop up form which has the following code in it:
> >
> > mvCal.Value = CDate(Date)
> >
> > On my PC it works fine but on transferring to the customer I get the
> > following error when the execution hits the line of code above:
> >
> > "2683 There is no object in this control"
> >
> > The microsoft calendar control 2007 reference is checked on the accdb file
> > I'm running (the one which works fine on my PC), however if you open
> > access
> > from the problem PC's program menu and create a new database this
> > reference
> > is not even on the list of available references.
> >
> > Both PC's are running vista and office professional 2007.
> >
> > Can anyone help
> >
> > Thanks Lou

>
>

 
Reply With Quote
 
=?Utf-8?B?TG91dmVycmls?=
Guest
Posts: n/a
 
      1st Nov 2007
Allen,

The mvCal is a calendar control which has the following in the Class section
of teh properties sheet in form design view.

MSComCtl2.MonthView.2

So this must be what is missing on the other OC?? Where do I get it from :-)

Thanks for trying to help.

Lou

"Allen Browne" wrote:

> Visual Basic uses the vb prefix for constants that are defined in the Visual
> Basic library.
>
> AFAIK, there is no vbCal defined in the VB library.
>
> Since I don't understand what your code is doing, I can't suggest how to fix
> it.
>
> --
> Allen Browne - Microsoft MVP. Perth, Western Australia
> Tips for Access users - http://allenbrowne.com/tips.html
> Reply to group, rather than allenbrowne at mvps dot org.
>
> "Louverril" <(E-Mail Removed)> wrote in message
> news:A47CE6E3-5503-426E-8DC9-(E-Mail Removed)...
> > The code works perfectly well on my PC. Very very well.
> > I do need this function it does some fancy stuff adding weeks to a date -
> > I
> > don't see why I should change it when it works fine on other PC's!!
> >
> > It is mvCal not VbCal.
> >
> > And to be honest I'm not sure what it is because someone else gave me that
> > part - but as I say it works fine on my PC! Could it be corruption?
> >
> > Thanks
> > Lou
> >
> > "Allen Browne" wrote:
> >
> >> What is "Date"?
> >> Do you have a field by that name?
> >> A text box?
> >> Or is the system date, in which case it is a Date data type and doesn't
> >> need
> >> CDate(). (Note that Date is a reserved word both in VBA and in JET.)
> >>
> >> What is vbCal?
> >> Is it the name of a calendar control?
> >> Or is it the name of a field?
> >>
> >> Why do you need a calendar in Access 2007?
> >> Did you realize the new version automatically displays a little calendar
> >> beside a text box that's bound to a Date/Time field, so you don't need an
> >> external control?
> >>
> >> If you really want a popup calendar, would you consider using a little
> >> Access form that has none of the problems of external controls? If so,
> >> see:
> >> http://allenbrowne.com/ser-51.html
> >>
> >> Have you added your database folder to the list of trusted locations
> >> under:
> >> Office Button | Access Options | Trust Center | Trust Center Settings
> >>
> >> --
> >> Allen Browne - Microsoft MVP. Perth, Western Australia
> >> Tips for Access users - http://allenbrowne.com/tips.html
> >> Reply to group, rather than allenbrowne at mvps dot org.
> >>
> >> "Louverril" <(E-Mail Removed)> wrote in message
> >> news:7FE6B45D-E2A5-44E0-A7B0-(E-Mail Removed)...
> >> >I have a calendar pop up form which has the following code in it:
> >> >
> >> > mvCal.Value = CDate(Date)
> >> >
> >> > On my PC it works fine but on transferring to the customer I get the
> >> > following error when the execution hits the line of code above:
> >> >
> >> > "2683 There is no object in this control"
> >> >
> >> > The microsoft calendar control 2007 reference is checked on the accdb
> >> > file
> >> > I'm running (the one which works fine on my PC), however if you open
> >> > access
> >> > from the problem PC's program menu and create a new database this
> >> > reference
> >> > is not even on the list of available references.
> >> >
> >> > Both PC's are running vista and office professional 2007.
> >> >
> >> > Can anyone help
> >> >
> >> > Thanks Lou
> >>
> >>

>
>

 
Reply With Quote
 
=?Utf-8?B?TG91dmVycmls?=
Guest
Posts: n/a
 
      1st Nov 2007
Allen,

Have found from Google search that mscomctl2.mothview.2 is part of
mscomct2.ocx found in C:\windows\system32.

Can I just copy this file to the problem PC?

Lou

"Allen Browne" wrote:

> Visual Basic uses the vb prefix for constants that are defined in the Visual
> Basic library.
>
> AFAIK, there is no vbCal defined in the VB library.
>
> Since I don't understand what your code is doing, I can't suggest how to fix
> it.
>
> --
> Allen Browne - Microsoft MVP. Perth, Western Australia
> Tips for Access users - http://allenbrowne.com/tips.html
> Reply to group, rather than allenbrowne at mvps dot org.
>
> "Louverril" <(E-Mail Removed)> wrote in message
> news:A47CE6E3-5503-426E-8DC9-(E-Mail Removed)...
> > The code works perfectly well on my PC. Very very well.
> > I do need this function it does some fancy stuff adding weeks to a date -
> > I
> > don't see why I should change it when it works fine on other PC's!!
> >
> > It is mvCal not VbCal.
> >
> > And to be honest I'm not sure what it is because someone else gave me that
> > part - but as I say it works fine on my PC! Could it be corruption?
> >
> > Thanks
> > Lou
> >
> > "Allen Browne" wrote:
> >
> >> What is "Date"?
> >> Do you have a field by that name?
> >> A text box?
> >> Or is the system date, in which case it is a Date data type and doesn't
> >> need
> >> CDate(). (Note that Date is a reserved word both in VBA and in JET.)
> >>
> >> What is vbCal?
> >> Is it the name of a calendar control?
> >> Or is it the name of a field?
> >>
> >> Why do you need a calendar in Access 2007?
> >> Did you realize the new version automatically displays a little calendar
> >> beside a text box that's bound to a Date/Time field, so you don't need an
> >> external control?
> >>
> >> If you really want a popup calendar, would you consider using a little
> >> Access form that has none of the problems of external controls? If so,
> >> see:
> >> http://allenbrowne.com/ser-51.html
> >>
> >> Have you added your database folder to the list of trusted locations
> >> under:
> >> Office Button | Access Options | Trust Center | Trust Center Settings
> >>
> >> --
> >> Allen Browne - Microsoft MVP. Perth, Western Australia
> >> Tips for Access users - http://allenbrowne.com/tips.html
> >> Reply to group, rather than allenbrowne at mvps dot org.
> >>
> >> "Louverril" <(E-Mail Removed)> wrote in message
> >> news:7FE6B45D-E2A5-44E0-A7B0-(E-Mail Removed)...
> >> >I have a calendar pop up form which has the following code in it:
> >> >
> >> > mvCal.Value = CDate(Date)
> >> >
> >> > On my PC it works fine but on transferring to the customer I get the
> >> > following error when the execution hits the line of code above:
> >> >
> >> > "2683 There is no object in this control"
> >> >
> >> > The microsoft calendar control 2007 reference is checked on the accdb
> >> > file
> >> > I'm running (the one which works fine on my PC), however if you open
> >> > access
> >> > from the problem PC's program menu and create a new database this
> >> > reference
> >> > is not even on the list of available references.
> >> >
> >> > Both PC's are running vista and office professional 2007.
> >> >
> >> > Can anyone help
> >> >
> >> > Thanks Lou
> >>
> >>

>
>

 
Reply With Quote
 
=?Utf-8?B?TG91dmVycmls?=
Guest
Posts: n/a
 
      1st Nov 2007
Allen,

I htink I can just copy the mscomct2.ocx file to teh problem PC but
apparently I have to register it.

Is this the correct format?

regsvr32.exe \windows\system32\mscomct2.ocx

many postings say you can use Tools Register from form design view but I
can't find this on teh tools part of teh ribbon on Access 2007?


Lou

"Allen Browne" wrote:

> Visual Basic uses the vb prefix for constants that are defined in the Visual
> Basic library.
>
> AFAIK, there is no vbCal defined in the VB library.
>
> Since I don't understand what your code is doing, I can't suggest how to fix
> it.
>
> --
> Allen Browne - Microsoft MVP. Perth, Western Australia
> Tips for Access users - http://allenbrowne.com/tips.html
> Reply to group, rather than allenbrowne at mvps dot org.
>
> "Louverril" <(E-Mail Removed)> wrote in message
> news:A47CE6E3-5503-426E-8DC9-(E-Mail Removed)...
> > The code works perfectly well on my PC. Very very well.
> > I do need this function it does some fancy stuff adding weeks to a date -
> > I
> > don't see why I should change it when it works fine on other PC's!!
> >
> > It is mvCal not VbCal.
> >
> > And to be honest I'm not sure what it is because someone else gave me that
> > part - but as I say it works fine on my PC! Could it be corruption?
> >
> > Thanks
> > Lou
> >
> > "Allen Browne" wrote:
> >
> >> What is "Date"?
> >> Do you have a field by that name?
> >> A text box?
> >> Or is the system date, in which case it is a Date data type and doesn't
> >> need
> >> CDate(). (Note that Date is a reserved word both in VBA and in JET.)
> >>
> >> What is vbCal?
> >> Is it the name of a calendar control?
> >> Or is it the name of a field?
> >>
> >> Why do you need a calendar in Access 2007?
> >> Did you realize the new version automatically displays a little calendar
> >> beside a text box that's bound to a Date/Time field, so you don't need an
> >> external control?
> >>
> >> If you really want a popup calendar, would you consider using a little
> >> Access form that has none of the problems of external controls? If so,
> >> see:
> >> http://allenbrowne.com/ser-51.html
> >>
> >> Have you added your database folder to the list of trusted locations
> >> under:
> >> Office Button | Access Options | Trust Center | Trust Center Settings
> >>
> >> --
> >> Allen Browne - Microsoft MVP. Perth, Western Australia
> >> Tips for Access users - http://allenbrowne.com/tips.html
> >> Reply to group, rather than allenbrowne at mvps dot org.
> >>
> >> "Louverril" <(E-Mail Removed)> wrote in message
> >> news:7FE6B45D-E2A5-44E0-A7B0-(E-Mail Removed)...
> >> >I have a calendar pop up form which has the following code in it:
> >> >
> >> > mvCal.Value = CDate(Date)
> >> >
> >> > On my PC it works fine but on transferring to the customer I get the
> >> > following error when the execution hits the line of code above:
> >> >
> >> > "2683 There is no object in this control"
> >> >
> >> > The microsoft calendar control 2007 reference is checked on the accdb
> >> > file
> >> > I'm running (the one which works fine on my PC), however if you open
> >> > access
> >> > from the problem PC's program menu and create a new database this
> >> > reference
> >> > is not even on the list of available references.
> >> >
> >> > Both PC's are running vista and office professional 2007.
> >> >
> >> > Can anyone help
> >> >
> >> > Thanks Lou
> >>
> >>

>
>

 
Reply With Quote
 
Allen Browne
Guest
Posts: n/a
 
      1st Nov 2007
To register a library, use regsvr32 at the command prompt.

Once it is registered, press Ctrl+G in Access.
It opens the code window.
You can then use the Tools menu to register the library.

The best solution is to avoid unnecessary libraries, because they cause
exactly the versioning problems you are trying to solve.

More info about solving reference problems:
http://allenbrowne.com/ser-38.html

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Louverril" <(E-Mail Removed)> wrote in message
news:11F896B6-9487-4DD1-BB1A-(E-Mail Removed)...
> Allen,
>
> I htink I can just copy the mscomct2.ocx file to teh problem PC but
> apparently I have to register it.
>
> Is this the correct format?
>
> regsvr32.exe \windows\system32\mscomct2.ocx
>
> many postings say you can use Tools Register from form design view but I
> can't find this on teh tools part of teh ribbon on Access 2007?
>
>
> Lou
>
> "Allen Browne" wrote:
>
>> Visual Basic uses the vb prefix for constants that are defined in the
>> Visual
>> Basic library.
>>
>> AFAIK, there is no vbCal defined in the VB library.
>>
>> Since I don't understand what your code is doing, I can't suggest how to
>> fix
>> it.
>>
>> "Louverril" <(E-Mail Removed)> wrote in message
>> news:A47CE6E3-5503-426E-8DC9-(E-Mail Removed)...
>> > The code works perfectly well on my PC. Very very well.
>> > I do need this function it does some fancy stuff adding weeks to a
>> > date -
>> > I
>> > don't see why I should change it when it works fine on other PC's!!
>> >
>> > It is mvCal not VbCal.
>> >
>> > And to be honest I'm not sure what it is because someone else gave me
>> > that
>> > part - but as I say it works fine on my PC! Could it be corruption?
>> >
>> > Thanks
>> > Lou
>> >
>> > "Allen Browne" wrote:
>> >
>> >> What is "Date"?
>> >> Do you have a field by that name?
>> >> A text box?
>> >> Or is the system date, in which case it is a Date data type and
>> >> doesn't
>> >> need
>> >> CDate(). (Note that Date is a reserved word both in VBA and in JET.)
>> >>
>> >> What is vbCal?
>> >> Is it the name of a calendar control?
>> >> Or is it the name of a field?
>> >>
>> >> Why do you need a calendar in Access 2007?
>> >> Did you realize the new version automatically displays a little
>> >> calendar
>> >> beside a text box that's bound to a Date/Time field, so you don't need
>> >> an
>> >> external control?
>> >>
>> >> If you really want a popup calendar, would you consider using a little
>> >> Access form that has none of the problems of external controls? If so,
>> >> see:
>> >> http://allenbrowne.com/ser-51.html
>> >>
>> >> Have you added your database folder to the list of trusted locations
>> >> under:
>> >> Office Button | Access Options | Trust Center | Trust Center
>> >> Settings
>> >>
>> >> "Louverril" <(E-Mail Removed)> wrote in message
>> >> news:7FE6B45D-E2A5-44E0-A7B0-(E-Mail Removed)...
>> >> >I have a calendar pop up form which has the following code in it:
>> >> >
>> >> > mvCal.Value = CDate(Date)
>> >> >
>> >> > On my PC it works fine but on transferring to the customer I get the
>> >> > following error when the execution hits the line of code above:
>> >> >
>> >> > "2683 There is no object in this control"
>> >> >
>> >> > The microsoft calendar control 2007 reference is checked on the
>> >> > accdb
>> >> > file
>> >> > I'm running (the one which works fine on my PC), however if you open
>> >> > access
>> >> > from the problem PC's program menu and create a new database this
>> >> > reference
>> >> > is not even on the list of available references.
>> >> >
>> >> > Both PC's are running vista and office professional 2007.
>> >> >
>> >> > Can anyone help
>> >> >
>> >> > Thanks Lou


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Run Time error 2683 Mike Microsoft Access Form Coding 1 7th May 2010 09:35 PM
Error "object reference not set to instance of an object" when trying to set datasource property of a bound column in datagrid control Martin Widmer Microsoft VB .NET 0 23rd Jan 2006 09:24 AM
runtime error 2683 "There's no object in this control" =?Utf-8?B?U2VlbWk=?= Microsoft Access 1 27th Jun 2005 05:02 PM
No object in control error 2683 Mary Microsoft Access Form Coding 2 16th Mar 2004 02:30 PM
No object in control error 2683 Mary Microsoft Access Forms 0 15th Mar 2004 08:42 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:20 PM.