Sabtu, 30 November 2019

[AccessDevelopers] File - Monthly_Notices.txt

 


Monthly notices:

Hi Kids!:

Don't forget to check out our "Links" section at the website for helpful sites. Also take a peek at books that others have found worthwhile in our books database under the 'Database' link of the main AccessDevelopers page. Feel free to add any books or links that you have found useful.

__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (185)

Please zip all files prior to uploading to Files section.

.

__,_._,___

Rabu, 27 November 2019

Fw: [MS_AccessPros] MAX AND STANDARD DEVIATION

 

Hi Duane and all,

kindly help with the modification I need to make to the query below if I only want to return the records having the highest ( or lowest) value in field 6 when field 7 for all such records are the same.

I simplified the case to ease the solution.

Thanks.

Ade

----- Forwarded message -----
From: Duane Hookom duanehookom@hotmail.com [MS_Access_Professionals] <ms_access_professionals@yahoogroups.com>
To: "ms_access_professionals@yahoogroups.com" <ms_access_professionals@yahoogroups.com>
Sent: Monday, 9 March 2015, 13:20:57 GMT
Subject: RE: [MS_AccessPros] MAX AND STANDARD DEVIATION

 

Ade,
 
Any time you wish to calculate across fields, it suggests an un-normalized table structure. For your current table (if you can't change your structure), I would suggest first adding a primary key field if you don't have one and then creating a normalizing union query.
 
SELECT PKField, 1 as Fld, Field1 as TheValue
FROM tblTransactions
UNION ALL
SELECT PKField, 2, Field2
FROM tblTransactions
UNION ALL
SELECT PKField, 3, Field3
FROM tblTransactions
UNION ALL
SELECT PKField, 4, Field4
FROM tblTransactions
UNION ALL
SELECT PKField, 5, Field5
FROM tblTransactions
UNION ALL
SELECT PKField, 6, Field6
FROM tblTransactions
UNION ALL
SELECT PKField, 7, Field7
FROM tblTransactions;
 
You can then use this query in a totals query and group by the PKField and use SQL aggregate functions for your calculations.
 
SELECT PKField, Max(Thevalue) as MaxValue, Stdev(TheValue) as StandDev
FROM quniTransactions
GROUP BY PKField;
 
Duane Hookom MVP
MS Access

 

To: MS_Access_Professionals@yahoogroups.com
From: MS_Access_Professionals@yahoogroups.com
Date: Mon, 9 Mar 2015 10:59:52 +0000
Subject: [MS_AccessPros] MAX AND STANDARD DEVIATION



Hello all,

just to see if you could help out with applying the Max and StDev function across a record.

For ease of reference, hypothetical but relevant transactions are shown below.

Field1Field2Field3Field4Field5Field6Field7
Record112152519372014
Record2185021174538
Record32153347293031


Thanks.

Ade



__._,_.___

Posted by: Adeboyejo Oyenuga <aoye_99@yahoo.co.uk>
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)

.

__,_._,___

[MSAccessProfessionals] Fw: [MS_AccessPros] MAX AND STANDARD DEVIATION



----- Forwarded message -----
From: Adeboyejo Oyenuga <aoye_99@yahoo.co.uk>
To: MSAccessProfessionals <msaccessprofessionals+owner@groups.io>
Sent: Wednesday, 27 November 2019, 12:08:47 GMT
Subject: Fw: [MS_AccessPros] MAX AND STANDARD DEVIATION

Hi Duane and all,

kindly help with the modification I need to make to the query below if I only want to return the records having the highest ( or lowest) value in field 6 when field 7 for all such records are the same.

I simplified the case to ease the solution.

Thanks.

Ade

----- Forwarded message -----
From: Duane Hookom duanehookom@hotmail.com [MS_Access_Professionals] <ms_access_professionals@yahoogroups.com>
To: "ms_access_professionals@yahoogroups.com" <ms_access_professionals@yahoogroups.com>
Sent: Monday, 9 March 2015, 13:20:57 GMT
Subject: RE: [MS_AccessPros] MAX AND STANDARD DEVIATION

 

Ade,
 
Any time you wish to calculate across fields, it suggests an un-normalized table structure. For your current table (if you can't change your structure), I would suggest first adding a primary key field if you don't have one and then creating a normalizing union query.
 
SELECT PKField, 1 as Fld, Field1 as TheValue
FROM tblTransactions
UNION ALL
SELECT PKField, 2, Field2
FROM tblTransactions
UNION ALL
SELECT PKField, 3, Field3
FROM tblTransactions
UNION ALL
SELECT PKField, 4, Field4
FROM tblTransactions
UNION ALL
SELECT PKField, 5, Field5
FROM tblTransactions
UNION ALL
SELECT PKField, 6, Field6
FROM tblTransactions
UNION ALL
SELECT PKField, 7, Field7
FROM tblTransactions;
 
You can then use this query in a totals query and group by the PKField and use SQL aggregate functions for your calculations.
 
SELECT PKField, Max(Thevalue) as MaxValue, Stdev(TheValue) as StandDev
FROM quniTransactions
GROUP BY PKField;
 
Duane Hookom MVP
MS Access

 

To: MS_Access_Professionals@yahoogroups.com
From: MS_Access_Professionals@yahoogroups.com
Date: Mon, 9 Mar 2015 10:59:52 +0000
Subject: [MS_AccessPros] MAX AND STANDARD DEVIATION



Hello all,

just to see if you could help out with applying the Max and StDev function across a record.

For ease of reference, hypothetical but relevant transactions are shown below.

Field1Field2Field3Field4Field5Field6Field7
Record112152519372014
Record2185021174538
Record32153347293031


Thanks.

Ade



__._,_.___

Posted by: Duane Hookom <duanehookom@hotmail.com>
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (2)

.

__,_._,___

Selasa, 19 November 2019

Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

I had some issues with the internet connection  when trying to install updates.

On Tue, Nov 19, 2019 at 3:49 PM Duane Hookom <duanehookom@hotmail.com> wrote:
https://www.google.com/search?q=how+to+uninstall+windows+updates&rlz=1C1GCEB_enUS761US761&oq=how+to+uninstall+windows+updates



From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Jonathan Camilleri <camilleri.jon@gmail.com>
Sent: Tuesday, November 19, 2019 5:02 AM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption
 
I usually read the instruction booklet accompanying the software.

On Tue, Nov 19, 2019 at 11:27 AM Giorgio Rovelli via Groups.Io <giorgio_rovelli=virgilio.it@groups.io> wrote:

How do you uninstall the latest Office updates?

Giorgio


On November 19, 2019 at 3:41 AM stephenmconklin <StephenMConklin@hotmail.com> wrote:

You can un-install all the latest Office updates (dated 11/13/2019) to recover from this. Set the computer to opt out of the updates after that.
This worked for me on multiple computers with 2013 runtime and full.
Good luck,
Steve


From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Bill Mosca <wrmosca@myself.com>
Sent: Monday, November 18, 2019 2:57:54 PM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

On Fri, Nov 15, 2019 at 06:11 PM, Patricia Mapes wrote:
You can install the patch if you have sufficient permissions. MS is aware.



On Nov 15, 2019, at 5:05 AM, pdk444444@yahoo.co.uk [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:

 


A couple of days ago I started getting query corruption messages on my update queries - it seems there is a fault in the latest software update patch. What can be done about it?


From what I have seen, MS released a patch for 2016. 2010 and 2013 have not been released yet. 
 
--
Regards,
Bill Mosca, Founder - MS_Access_Professionals
Microsoft Office Access MVP 2010-2016
My nothing-to-do-with-Access blog


 



--
Jonathan Camilleri

Mobile (MT): ++356 7982 7113
E-mail: camilleri.jon@gmail.com
Please consider your environmental responsibility before printing this e-mail.
 
I usually reply to emails within 2 business days.  If it's urgent, give me a call.



--
Jonathan Camilleri

Mobile (MT): ++356 7982 7113
E-mail: camilleri.jon@gmail.com
Please consider your environmental responsibility before printing this e-mail.
 
I usually reply to emails within 2 business days.  If it's urgent, give me a call.

_._,_._,_

Groups.io Links:

You receive all messages sent to this group.

View/Reply Online (#115382) | Reply To Group | Reply To Sender | Mute This Topic | New Topic

Your Subscription | Contact Group Owner | Unsubscribe [sugeng.panjalu.access@blogger.com]

_._,_._,_

Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

Hello Today  we face the same problem and With office 365 was also working:

 

Forcing the last update

And fix the issue

 

 

Da: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> Per conto di Duane Hookom
Inviato: martedì 19 novembre 2019 15:50
A: MSAccessProfessionals@groups.io
Oggetto: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

 

https://www.google.com/search?q=how+to+uninstall+windows+updates&rlz=1C1GCEB_enUS761US761&oq=how+to+uninstall+windows+updates

 

 


From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Jonathan Camilleri <camilleri.jon@gmail.com>
Sent: Tuesday, November 19, 2019 5:02 AM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

 

I usually read the instruction booklet accompanying the software.

 

On Tue, Nov 19, 2019 at 11:27 AM Giorgio Rovelli via Groups.Io <giorgio_rovelli=virgilio.it@groups.io> wrote:

How do you uninstall the latest Office updates?

Giorgio

 

On November 19, 2019 at 3:41 AM stephenmconklin <StephenMConklin@hotmail.com> wrote:

You can un-install all the latest Office updates (dated 11/13/2019) to recover from this. Set the computer to opt out of the updates after that.

This worked for me on multiple computers with 2013 runtime and full.

Good luck,

Steve


From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Bill Mosca <wrmosca@myself.com>
Sent: Monday, November 18, 2019 2:57:54 PM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

 

On Fri, Nov 15, 2019 at 06:11 PM, Patricia Mapes wrote:

You can install the patch if you have sufficient permissions. MS is aware.

 

 

On Nov 15, 2019, at 5:05 AM, pdk444444@yahoo.co.uk [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:

 

 

A couple of days ago I started getting query corruption messages on my update queries - it seems there is a fault in the latest software update patch. What can be done about it?

 

From what I have seen, MS released a patch for 2016. 2010 and 2013 have not been released yet. 
 
--

Regards,

Bill Mosca, Founder - MS_Access_Professionals

Microsoft Office Access MVP 2010-2016

My nothing-to-do-with-Access blog

 


 



--

Jonathan Camilleri

Mobile (MT): ++356 7982 7113
E-mail: camilleri.jon@gmail.com
Please consider your environmental responsibility before printing this e-mail.
 
I usually reply to emails within 2 business days.  If it's urgent, give me a call.

 

Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

https://www.google.com/search?q=how+to+uninstall+windows+updates&rlz=1C1GCEB_enUS761US761&oq=how+to+uninstall+windows+updates



From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Jonathan Camilleri <camilleri.jon@gmail.com>
Sent: Tuesday, November 19, 2019 5:02 AM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption
 
I usually read the instruction booklet accompanying the software.

On Tue, Nov 19, 2019 at 11:27 AM Giorgio Rovelli via Groups.Io <giorgio_rovelli=virgilio.it@groups.io> wrote:

How do you uninstall the latest Office updates?

Giorgio


On November 19, 2019 at 3:41 AM stephenmconklin <StephenMConklin@hotmail.com> wrote:

You can un-install all the latest Office updates (dated 11/13/2019) to recover from this. Set the computer to opt out of the updates after that.
This worked for me on multiple computers with 2013 runtime and full.
Good luck,
Steve


From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Bill Mosca <wrmosca@myself.com>
Sent: Monday, November 18, 2019 2:57:54 PM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

On Fri, Nov 15, 2019 at 06:11 PM, Patricia Mapes wrote:
You can install the patch if you have sufficient permissions. MS is aware.



On Nov 15, 2019, at 5:05 AM, pdk444444@yahoo.co.uk [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:

 


A couple of days ago I started getting query corruption messages on my update queries - it seems there is a fault in the latest software update patch. What can be done about it?


From what I have seen, MS released a patch for 2016. 2010 and 2013 have not been released yet. 
 
--
Regards,
Bill Mosca, Founder - MS_Access_Professionals
Microsoft Office Access MVP 2010-2016
My nothing-to-do-with-Access blog


 



--
Jonathan Camilleri

Mobile (MT): ++356 7982 7113
E-mail: camilleri.jon@gmail.com
Please consider your environmental responsibility before printing this e-mail.
 
I usually reply to emails within 2 business days.  If it's urgent, give me a call.

Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

I usually read the instruction booklet accompanying the software.

On Tue, Nov 19, 2019 at 11:27 AM Giorgio Rovelli via Groups.Io <giorgio_rovelli=virgilio.it@groups.io> wrote:

How do you uninstall the latest Office updates?

Giorgio


On November 19, 2019 at 3:41 AM stephenmconklin <StephenMConklin@hotmail.com> wrote:

You can un-install all the latest Office updates (dated 11/13/2019) to recover from this. Set the computer to opt out of the updates after that.
This worked for me on multiple computers with 2013 runtime and full.
Good luck,
Steve


From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Bill Mosca <wrmosca@myself.com>
Sent: Monday, November 18, 2019 2:57:54 PM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

On Fri, Nov 15, 2019 at 06:11 PM, Patricia Mapes wrote:
You can install the patch if you have sufficient permissions. MS is aware.



On Nov 15, 2019, at 5:05 AM, pdk444444@yahoo.co.uk [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:

 


A couple of days ago I started getting query corruption messages on my update queries - it seems there is a fault in the latest software update patch. What can be done about it?


From what I have seen, MS released a patch for 2016. 2010 and 2013 have not been released yet. 
 
--
Regards,
Bill Mosca, Founder - MS_Access_Professionals
Microsoft Office Access MVP 2010-2016
My nothing-to-do-with-Access blog


 



--
Jonathan Camilleri

Mobile (MT): ++356 7982 7113
E-mail: camilleri.jon@gmail.com
Please consider your environmental responsibility before printing this e-mail.
 
I usually reply to emails within 2 business days.  If it's urgent, give me a call.

_._,_._,_

Groups.io Links:

You receive all messages sent to this group.

View/Reply Online (#115379) | Reply To Group | Reply To Sender | Mute This Topic | New Topic

Your Subscription | Contact Group Owner | Unsubscribe [sugeng.panjalu.access@blogger.com]

_._,_._,_

Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

How do you uninstall the latest Office updates?

Giorgio


On November 19, 2019 at 3:41 AM stephenmconklin <StephenMConklin@hotmail.com> wrote:

You can un-install all the latest Office updates (dated 11/13/2019) to recover from this. Set the computer to opt out of the updates after that.
This worked for me on multiple computers with 2013 runtime and full.
Good luck,
Steve


From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Bill Mosca <wrmosca@myself.com>
Sent: Monday, November 18, 2019 2:57:54 PM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

On Fri, Nov 15, 2019 at 06:11 PM, Patricia Mapes wrote:
You can install the patch if you have sufficient permissions. MS is aware.



On Nov 15, 2019, at 5:05 AM, pdk444444@yahoo.co.uk [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:

 


A couple of days ago I started getting query corruption messages on my update queries - it seems there is a fault in the latest software update patch. What can be done about it?


From what I have seen, MS released a patch for 2016. 2010 and 2013 have not been released yet. 
 
--
Regards,
Bill Mosca, Founder - MS_Access_Professionals
Microsoft Office Access MVP 2010-2016
My nothing-to-do-with-Access blog


 

Senin, 18 November 2019

Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

You can un-install all the latest Office updates (dated 11/13/2019) to recover from this. Set the computer to opt out of the updates after that.
This worked for me on multiple computers with 2013 runtime and full.
Good luck,
Steve


From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Bill Mosca <wrmosca@myself.com>
Sent: Monday, November 18, 2019 2:57:54 PM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption
 
On Fri, Nov 15, 2019 at 06:11 PM, Patricia Mapes wrote:
You can install the patch if you have sufficient permissions. MS is aware.

 

On Nov 15, 2019, at 5:05 AM, pdk444444@yahoo.co.uk [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:

 

 

A couple of days ago I started getting query corruption messages on my update queries - it seems there is a fault in the latest software update patch. What can be done about it?

 

From what I have seen, MS released a patch for 2016. 2010 and 2013 have not been released yet. 
 
--
Regards,
Bill Mosca, Founder - MS_Access_Professionals
Microsoft Office Access MVP 2010-2016
My nothing-to-do-with-Access blog
 

Re: [MSAccessProfessionals] [MS_AccessPros] Query corruption

On Fri, Nov 15, 2019 at 06:11 PM, Patricia Mapes wrote:
You can install the patch if you have sufficient permissions. MS is aware.

 

On Nov 15, 2019, at 5:05 AM, pdk444444@yahoo.co.uk [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:

 

 

A couple of days ago I started getting query corruption messages on my update queries - it seems there is a fault in the latest software update patch. What can be done about it?

 

From what I have seen, MS released a patch for 2016. 2010 and 2013 have not been released yet. 
 
--
Regards,
Bill Mosca, Founder - MS_Access_Professionals
Microsoft Office Access MVP 2010-2016
My nothing-to-do-with-Access blog
 
_._,_._,_

Groups.io Links:

You receive all messages sent to this group.

View/Reply Online (#115376) | Reply To Group | Reply To Sender | Mute This Topic | New Topic

Your Subscription | Contact Group Owner | Unsubscribe [sugeng.panjalu.access@blogger.com]

_._,_._,_

Re: [MSAccessProfessionals] test message

48 65 6c 6c 6f 20 57 4f 72 6c 64
_._,_._,_

Groups.io Links:

You receive all messages sent to this group.

View/Reply Online (#115375) | Reply To Group | Reply To Sender | Mute This Topic | New Topic

Your Subscription | Contact Group Owner | Unsubscribe [sugeng.panjalu.access@blogger.com]

_._,_._,_

Re: [MS_AccessPros] Re: The Update query issue

 

Thank You, I was able to find the problem. I needed to rewrite the query and add that to the line of code.

Jim Wagner


On Friday, November 15, 2019, 1:49:05 PM MST, Jim Wagner luvmymelody@yahoo.com [MS_Access_Professionals] <ms_access_professionals@yahoogroups.com> wrote:


 

The user has the KB installed. I will try the step into

Jim Wagner


On Friday, November 15, 2019, 1:45:28 PM MST, wrmosca@comcast.net [MS_Access_Professionals] <ms_access_professionals@yahoogroups.com> wrote:


 

Oops! I found your closing paren. Follow Duane's advice. But find out if the user has the bad Office Update KB installed (see earlier posting).-Bill


---In MS_Access_Professionals@yahoogroups.com, <wrmosca@comcast.net> wrote :

Jim - I see a wayward parenthesis right before DateDiff. Either remove it or put a closing paren after ProcessEventEndDt = False
If (DateDiff("d", EventEndDt, currDate) > 0) And ProcessedInv = True And ProcessEventEndDt = False Then

-Bill

---In MS_Access_Professionals@yahoogroups.com, <luvmymelody@yahoo.com> wrote :

Hello all,


I am having issues with a line of code for the UPDATE statement. I have created a query and then created the update query and pasted the sql statement into the line of code and modified it to be relevant and it is still not working. can someone give me some direction please. It is a mission critical database and the user is calling my boss and complaining



Thank You


Jim Wagner


here is the code. it is crashing on the


Do While Not rs2.EOF
    Id = rs2!EventID
    ProcessedInv = rs2!ProcessedInv
    ProcessEventEndDt = rs2!ProcessEventEndDt
    EventEndDt = rs2!EventEndDt
   ' MsgBox "INner Loop" & EventEndDt & currDate & Id, vbInformation
   'if the event is over but the inventory is not put back, the loop in run
    If (DateDiff("d", EventEndDt, currDate) > 0) And ProcessedInv = True And ProcessEventEndDt = False Then
   
       ' MsgBox "INnermost Loop" & EventEndDt & currDate & Id, vbInformation
        cntr = 0
        Set RS = Form_frmMainEvents.SubformEventDetails.Form.Recordset
        RS.MoveFirst
        Do While Not RS.EOF
       '  MsgBox "INnermost Loop" & EventEndDt & currDate & Id, vbInformation
            Q1 = Form_frmMainEvents![SubformEventDetails].Form![quantity]
            colName1 = Form_frmMainEvents![SubformEventDetails].Form![Item_Name]
            Lcntr = DateDiff("d", rs2!DeliveryDt, rs2!EventEndDt) + 1
            For cntr = 0 To Lcntr - 1
                invDate = DateAdd("d", cntr, rs2!DeliveryDt)
                CurrentDb.Execute " Update Tbl_InvDetails set [" & colName1 & "] = [" & colName1 & "] + " & Q1 & " where Tbl_InvDetails.InvDate = #" & invDate & "#  ", dbFailOnError
            Next
            RS.MoveNext
        Loop

__._,_.___

Posted by: Jim Wagner <luvmymelody@yahoo.com>
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (8)

.

__,_._,___

You have been added to MSAccessProfessionals@groups.io

Hello,

The owner of the ms_access_professionals Yahoo Group has moved the group to Groups.io, a new Groups service. You have been subscribed to the new group using your email address sugeng.panjalu.access@blogger.com. The title of the new group is MS Access Professionals, and messages can be sent to it at MSAccessProfessionals@groups.io. The group homepage is located here.

Groups at Groups.io are similar to Yahoo Groups, but we have several new features and we encourage you to explore the Groups.io website. If you have never registered with Groups.io before, your account will not have a password set yet. To log in, you can use the 'Email me a link to login' button to have a link emailed to you that will let you log into the website.

You do not have to do anything to continue being a member of this group. If you do not wish to be a member of MSAccessProfessionals, click here to unsubscribe and you will be unsubscribed immediately.

If you have any questions, please contact support@groups.io.

Cheers,
The Groups.io Team

Minggu, 17 November 2019

[AccessDevelopers] Closing down of this Access Developers Yahoo Group

 

Yahoo groups are changing and soon won't include file storage and some other functionality. I am a moderator of this and another similar group. I think some other members of this group might also be a member of the other group.


There is a replacement MS Access group that you might be interested in joining at https://groups.io/g/MSAccessProfessionals.


If you wish to continue reading/writing posts consider joining this alternative. It is bound to be a bit more active than this group has been in recent years.


Regards,

Duane


__._,_.___

Posted by: duanehookom@hotmail.com
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)

Please zip all files prior to uploading to Files section.

.

__,_._,___