From kost36 at otenet.gr Sat Dec 2 11:28:30 2017 From: kost36 at otenet.gr (Kostas Konstantinidis) Date: Sat, 2 Dec 2017 19:28:30 +0200 Subject: [AccessD] crosstab query by decades... Message-ID: <001001d36b92$fa6756b0$ef360410$@otenet.gr> Hi all, I use a crosstab query to count the total films (group by short and long) per year but what I need is to count the same in decades starting from 1914 to 2017 e.g 1914/1919 -- 4 1920/1929 -- 8 .... 2000/2017 -- 186 The 'year' is not a date but a simple number field. Any help how to do this? TRANSFORM Count(MT_films.[ID_films]) AS CountOfID_films SELECT MT_films.[kind_movie], Count(MT_films.[ID_films]) AS [Total Of ID_films] FROM MT_films GROUP BY MT_films.[kind_movie] PIVOT MT_films.year; Thank's /kostas From kost36 at otenet.gr Sat Dec 2 12:28:44 2017 From: kost36 at otenet.gr (Kostas Konstantinidis) Date: Sat, 2 Dec 2017 20:28:44 +0200 Subject: [AccessD] crosstab query by decades... In-Reply-To: <001001d36b92$fa6756b0$ef360410$@otenet.gr> References: <001001d36b92$fa6756b0$ef360410$@otenet.gr> Message-ID: <001101d36b9b$9eb23b60$dc16b220$@otenet.gr> Forget... solved replacing year with switch([year] between 1914 and 1919; "1914-1919".. etc) Sorry /kostas -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Kostas Konstantinidis Sent: Saturday, December 2, 2017 7:29 PM To: 'Access Developers discussion and problem solving' Subject: [AccessD] crosstab query by decades... Hi all, I use a crosstab query to count the total films (group by short and long) per year but what I need is to count the same in decades starting from 1914 to 2017 e.g 1914/1919 -- 4 1920/1929 -- 8 .... 2000/2017 -- 186 The 'year' is not a date but a simple number field. Any help how to do this? TRANSFORM Count(MT_films.[ID_films]) AS CountOfID_films SELECT MT_films.[kind_movie], Count(MT_films.[ID_films]) AS [Total Of ID_films] FROM MT_films GROUP BY MT_films.[kind_movie] PIVOT MT_films.year; Thank's /kostas -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From stuart at lexacorp.com.pg Sat Dec 2 15:38:27 2017 From: stuart at lexacorp.com.pg (Stuart McLachlan) Date: Sun, 03 Dec 2017 07:38:27 +1000 Subject: [AccessD] crosstab query by decades... In-Reply-To: <001101d36b9b$9eb23b60$dc16b220$@otenet.gr> References: <001001d36b92$fa6756b0$ef360410$@otenet.gr>, <001101d36b9b$9eb23b60$dc16b220$@otenet.gr> Message-ID: <5A231D53.16770.561132E@stuart.lexacorp.com.pg> For decades, I just GROUP BY INT(year/10)*10 as "DecadeBeginning" or you could use .INT(year/10) * 10 & " - " & Int(year/10) * 10 + 9 On 2 Dec 2017 at 20:28, Kostas Konstantinidis wrote: > Forget... solved replacing year with switch([year] between 1914 and > 1919; "1914-1919".. etc) > > Sorry > /kostas > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf > Of Kostas Konstantinidis Sent: Saturday, December 2, 2017 7:29 PM To: > 'Access Developers discussion and problem solving' > Subject: [AccessD] crosstab query by > decades... > > Hi all, > > I use a crosstab query to count the total films (group by short and > long) per year but what I need is to count the same in decades > starting from 1914 to 2017 e.g 1914/1919 -- 4 1920/1929 -- 8 .... > 2000/2017 -- 186 The 'year' is not a date but a simple number field. > Any help how to do this? > > TRANSFORM Count(MT_films.[ID_films]) AS CountOfID_films SELECT > MT_films.[kind_movie], Count(MT_films.[ID_films]) AS [Total Of > ID_films] FROM MT_films GROUP BY MT_films.[kind_movie] PIVOT > MT_films.year; > > Thank's > /kostas > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > From accessd at shaw.ca Sat Dec 2 19:47:18 2017 From: accessd at shaw.ca (Jim Lawrence) Date: Sat, 2 Dec 2017 18:47:18 -0700 (MST) Subject: [AccessD] crosstab query by decades... In-Reply-To: <5A231D53.16770.561132E@stuart.lexacorp.com.pg> References: <001001d36b92$fa6756b0$ef360410$@otenet.gr> <001101d36b9b$9eb23b60$dc16b220$@otenet.gr> <5A231D53.16770.561132E@stuart.lexacorp.com.pg> Message-ID: <376474655.100531159.1512265638343.JavaMail.zimbra@shaw.ca> Your good. :-) Jim ----- Original Message ----- From: "stuart" To: "Access Developers discussion and problem solving" Sent: Saturday, December 2, 2017 1:38:27 PM Subject: Re: [AccessD] crosstab query by decades... For decades, I just GROUP BY INT(year/10)*10 as "DecadeBeginning" or you could use .INT(year/10) * 10 & " - " & Int(year/10) * 10 + 9 On 2 Dec 2017 at 20:28, Kostas Konstantinidis wrote: > Forget... solved replacing year with switch([year] between 1914 and > 1919; "1914-1919".. etc) > > Sorry > /kostas > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf > Of Kostas Konstantinidis Sent: Saturday, December 2, 2017 7:29 PM To: > 'Access Developers discussion and problem solving' > Subject: [AccessD] crosstab query by > decades... > > Hi all, > > I use a crosstab query to count the total films (group by short and > long) per year but what I need is to count the same in decades > starting from 1914 to 2017 e.g 1914/1919 -- 4 1920/1929 -- 8 .... > 2000/2017 -- 186 The 'year' is not a date but a simple number field. > Any help how to do this? > > TRANSFORM Count(MT_films.[ID_films]) AS CountOfID_films SELECT > MT_films.[kind_movie], Count(MT_films.[ID_films]) AS [Total Of > ID_films] FROM MT_films GROUP BY MT_films.[kind_movie] PIVOT > MT_films.year; > > Thank's > /kostas > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From kost36 at otenet.gr Sun Dec 3 01:40:08 2017 From: kost36 at otenet.gr (Kostas Konstantinidis) Date: Sun, 3 Dec 2017 09:40:08 +0200 Subject: [AccessD] crosstab query by decades... In-Reply-To: <5A231D53.16770.561132E@stuart.lexacorp.com.pg> References: <001001d36b92$fa6756b0$ef360410$@otenet.gr>, <001101d36b9b$9eb23b60$dc16b220$@otenet.gr> <5A231D53.16770.561132E@stuart.lexacorp.com.pg> Message-ID: <002101d36c09$f2f2a4d0$d8d7ee70$@otenet.gr> HI Stuart, That's better... Thank's /kostas -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Stuart McLachlan Sent: Saturday, December 2, 2017 11:38 PM To: Access Developers discussion and problem solving Subject: Re: [AccessD] crosstab query by decades... For decades, I just GROUP BY INT(year/10)*10 as "DecadeBeginning" or you could use .INT(year/10) * 10 & " - " & Int(year/10) * 10 + 9 On 2 Dec 2017 at 20:28, Kostas Konstantinidis wrote: > Forget... solved replacing year with switch([year] between 1914 and > 1919; "1914-1919".. etc) > > Sorry > /kostas > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf > Of Kostas Konstantinidis Sent: Saturday, December 2, 2017 7:29 PM To: > 'Access Developers discussion and problem solving' > Subject: [AccessD] crosstab query by > decades... > > Hi all, > > I use a crosstab query to count the total films (group by short and > long) per year but what I need is to count the same in decades > starting from 1914 to 2017 e.g 1914/1919 -- 4 1920/1929 -- 8 .... > 2000/2017 -- 186 The 'year' is not a date but a simple number field. > Any help how to do this? > > TRANSFORM Count(MT_films.[ID_films]) AS CountOfID_films SELECT > MT_films.[kind_movie], Count(MT_films.[ID_films]) AS [Total Of > ID_films] FROM MT_films GROUP BY MT_films.[kind_movie] PIVOT > MT_films.year; > > Thank's > /kostas > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From Lambert.Heenan at aig.com Mon Dec 4 11:42:11 2017 From: Lambert.Heenan at aig.com (Heenan, Lambert) Date: Mon, 4 Dec 2017 17:42:11 +0000 Subject: [AccessD] Odd Error - Embarrassing Workaround In-Reply-To: <042301d36865$58b3a470$0a1aed50$@bchacc.com> References: <042301d36865$58b3a470$0a1aed50$@bchacc.com> Message-ID: Sounds like it's time to decompile the application. :-) Lambert -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Rocky Smolin Sent: Tuesday, November 28, 2017 11:24 AM To: 'Access Developers discussion and problem solving'; 'Off Topic' Subject: [AccessD] Odd Error - Embarrassing Workaround Dear Lists: In the code below which is in the after update event of a combo box, I want to position the form to the selected vendor in the combo box list. Cookie cutter. Done it a hundred times: Private Sub cboVendors_AfterUpdate() If IsNull(cboVendors) Then Exit Sub lngID = Val(Me.cboVendors.Column(0)) Set rsMe = Me.RecordsetClone rsMe.FindFirst "fldVendorID= " & lngID If rsMe.NoMatch = True Then MsgBox "Record Not Found", vbExclamation Else Me.Bookmark = rsMe.Bookmark End If Me.cmdExit.SetFocus Me.cboVendors.Visible = False End sub The code's a little more wordy than it needs to be because I've been trying various fixes which, while they shouldn't work, often do in Access. J It blows up on Me.Bookmark = rsMe.Bookmark with an error 2001: You canceled the previous operation. So here's the odd thing: if I click Debug and see that line highlighted, then click F5, the code carries on and displays the selected record. I've got a workaround that's so esthetically and professionally offensive that I hesitate to show it here, but we're all friends, right? Private Sub cboVendors_AfterUpdate() If IsNull(cboVendors) Then Exit Sub lngID = Val(Me.cboVendors.Column(0)) Set rsMe = Me.RecordsetClone rsMe.FindFirst "fldVendorID= " & lngID If rsMe.NoMatch = True Then MsgBox "Record Not Found", vbExclamation Else On Error Resume Next Me.Bookmark = rsMe.Bookmark Me.Bookmark = rsMe.Bookmark On Error GoTo 0 End If Me.cmdExit.SetFocus Me.cboVendors.Visible = False End Sub All I did was add the On Error line and issue the Bookmark a second time. The second line apparently works. Can anyone help me avoid the embarrassment of having to explain to the next programmer on this app why that code is there? Does anyone know what the problem is and perhaps a fix? I already tried recompile. And also ran it through the decorrupter. MTIA Rocky Smolin (semi-ret.) Beach Access Software 760-683-5777 https://urldefense.proofpoint.com/v2/url?u=http-3A__www.bchacc.com&d=DwICAg&c=kn4_INW_mBCDHV_xJEVJkg&r=pQuzU2JPOWFA8d1LR0ScRkf41KAmO3vze52XDXdA5D1EN8y5q3NCFsL309SJtnkO&m=r-hbS5KE6sbCpDw2bc8J-wJT_SsfrCq9ZBd-Ifmb9JY&s=TqJRBZo_vdhB6OnSJC5dM7FmCkxTzcDfsfL35PHzJPI&e= https://urldefense.proofpoint.com/v2/url?u=http-3A__www.e-2Dz-2Dmrp.com&d=DwICAg&c=kn4_INW_mBCDHV_xJEVJkg&r=pQuzU2JPOWFA8d1LR0ScRkf41KAmO3vze52XDXdA5D1EN8y5q3NCFsL309SJtnkO&m=r-hbS5KE6sbCpDw2bc8J-wJT_SsfrCq9ZBd-Ifmb9JY&s=doZLD3I7PyoL2vEM1kJb7xOiCvSA-CoLUxeRJWXH2Dc&e= Skype: rocky.smolin -- AccessD mailing list AccessD at databaseadvisors.com https://urldefense.proofpoint.com/v2/url?u=http-3A__databaseadvisors.com_mailman_listinfo_accessd&d=DwICAg&c=kn4_INW_mBCDHV_xJEVJkg&r=pQuzU2JPOWFA8d1LR0ScRkf41KAmO3vze52XDXdA5D1EN8y5q3NCFsL309SJtnkO&m=r-hbS5KE6sbCpDw2bc8J-wJT_SsfrCq9ZBd-Ifmb9JY&s=Mt1RALyfKo5SltLzOxb_dANFfpI_kPfOTZLwDViN9UA&e= Website: https://urldefense.proofpoint.com/v2/url?u=http-3A__www.databaseadvisors.com&d=DwICAg&c=kn4_INW_mBCDHV_xJEVJkg&r=pQuzU2JPOWFA8d1LR0ScRkf41KAmO3vze52XDXdA5D1EN8y5q3NCFsL309SJtnkO&m=r-hbS5KE6sbCpDw2bc8J-wJT_SsfrCq9ZBd-Ifmb9JY&s=RzMKFIG1D5hO-51ELlt4BhenYr9lw9k33E5Qg9vvA0M&e= From rockysmolin at bchacc.com Mon Dec 4 13:11:50 2017 From: rockysmolin at bchacc.com (Rocky Smolin) Date: Mon, 4 Dec 2017 11:11:50 -0800 Subject: [AccessD] Odd Error - Embarrassing Workaround In-Reply-To: References: <042301d36865$58b3a470$0a1aed50$@bchacc.com> Message-ID: <004701d36d33$bd5880d0$38098270$@bchacc.com> Decompiled, decorrupted, lit votive candle, nothing worked. Except that screwy workaround. R -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Heenan, Lambert Sent: Monday, December 04, 2017 9:42 AM To: 'Access Developers discussion and problem solving'; 'Off Topic' Subject: Re: [AccessD] Odd Error - Embarrassing Workaround Sounds like it's time to decompile the application. :-) Lambert -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Rocky Smolin Sent: Tuesday, November 28, 2017 11:24 AM To: 'Access Developers discussion and problem solving'; 'Off Topic' Subject: [AccessD] Odd Error - Embarrassing Workaround Dear Lists: In the code below which is in the after update event of a combo box, I want to position the form to the selected vendor in the combo box list. Cookie cutter. Done it a hundred times: Private Sub cboVendors_AfterUpdate() If IsNull(cboVendors) Then Exit Sub lngID = Val(Me.cboVendors.Column(0)) Set rsMe = Me.RecordsetClone rsMe.FindFirst "fldVendorID= " & lngID If rsMe.NoMatch = True Then MsgBox "Record Not Found", vbExclamation Else Me.Bookmark = rsMe.Bookmark End If Me.cmdExit.SetFocus Me.cboVendors.Visible = False End sub The code's a little more wordy than it needs to be because I've been trying various fixes which, while they shouldn't work, often do in Access. J It blows up on Me.Bookmark = rsMe.Bookmark with an error 2001: You canceled the previous operation. So here's the odd thing: if I click Debug and see that line highlighted, then click F5, the code carries on and displays the selected record. I've got a workaround that's so esthetically and professionally offensive that I hesitate to show it here, but we're all friends, right? Private Sub cboVendors_AfterUpdate() If IsNull(cboVendors) Then Exit Sub lngID = Val(Me.cboVendors.Column(0)) Set rsMe = Me.RecordsetClone rsMe.FindFirst "fldVendorID= " & lngID If rsMe.NoMatch = True Then MsgBox "Record Not Found", vbExclamation Else On Error Resume Next Me.Bookmark = rsMe.Bookmark Me.Bookmark = rsMe.Bookmark On Error GoTo 0 End If Me.cmdExit.SetFocus Me.cboVendors.Visible = False End Sub All I did was add the On Error line and issue the Bookmark a second time. The second line apparently works. Can anyone help me avoid the embarrassment of having to explain to the next programmer on this app why that code is there? Does anyone know what the problem is and perhaps a fix? I already tried recompile. And also ran it through the decorrupter. MTIA Rocky Smolin (semi-ret.) Beach Access Software 760-683-5777 https://urldefense.proofpoint.com/v2/url?u=http-3A__www.bchacc.com&d=DwICAg& c=kn4_INW_mBCDHV_xJEVJkg&r=pQuzU2JPOWFA8d1LR0ScRkf41KAmO3vze52XDXdA5D1EN8y5q 3NCFsL309SJtnkO&m=r-hbS5KE6sbCpDw2bc8J-wJT_SsfrCq9ZBd-Ifmb9JY&s=TqJRBZo_vdhB 6OnSJC5dM7FmCkxTzcDfsfL35PHzJPI&e= https://urldefense.proofpoint.com/v2/url?u=http-3A__www.e-2Dz-2Dmrp.com&d=Dw ICAg&c=kn4_INW_mBCDHV_xJEVJkg&r=pQuzU2JPOWFA8d1LR0ScRkf41KAmO3vze52XDXdA5D1E N8y5q3NCFsL309SJtnkO&m=r-hbS5KE6sbCpDw2bc8J-wJT_SsfrCq9ZBd-Ifmb9JY&s=doZLD3I 7PyoL2vEM1kJb7xOiCvSA-CoLUxeRJWXH2Dc&e= Skype: rocky.smolin -- AccessD mailing list AccessD at databaseadvisors.com https://urldefense.proofpoint.com/v2/url?u=http-3A__databaseadvisors.com_mai lman_listinfo_accessd&d=DwICAg&c=kn4_INW_mBCDHV_xJEVJkg&r=pQuzU2JPOWFA8d1LR0 ScRkf41KAmO3vze52XDXdA5D1EN8y5q3NCFsL309SJtnkO&m=r-hbS5KE6sbCpDw2bc8J-wJT_Ss frCq9ZBd-Ifmb9JY&s=Mt1RALyfKo5SltLzOxb_dANFfpI_kPfOTZLwDViN9UA&e= Website: https://urldefense.proofpoint.com/v2/url?u=http-3A__www.databaseadvisors.com &d=DwICAg&c=kn4_INW_mBCDHV_xJEVJkg&r=pQuzU2JPOWFA8d1LR0ScRkf41KAmO3vze52XDXd A5D1EN8y5q3NCFsL309SJtnkO&m=r-hbS5KE6sbCpDw2bc8J-wJT_SsfrCq9ZBd-Ifmb9JY&s=Rz MKFIG1D5hO-51ELlt4BhenYr9lw9k33E5Qg9vvA0M&e= -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From dbdoug at gmail.com Mon Dec 4 13:24:21 2017 From: dbdoug at gmail.com (Doug Steele) Date: Mon, 4 Dec 2017 11:24:21 -0800 Subject: [AccessD] Odd Error Workaround Message-ID: Votive candle? No, no! Swing a lizard around your head 3 times. Always works for me. A trick I learned from a previous manager. Doug Decompiled, decorrupted, lit votive candle, nothing worked. Except that screwy workaround. R From rockysmolin at bchacc.com Mon Dec 4 16:57:42 2017 From: rockysmolin at bchacc.com (Rocky Smolin) Date: Mon, 4 Dec 2017 14:57:42 -0800 Subject: [AccessD] Odd Error Workaround In-Reply-To: References: Message-ID: <008f01d36d53$5152cb50$f3f861f0$@bchacc.com> Damit! I knew there was another fix. Is full moon or graveyard required? This is Access 2010. R -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Doug Steele Sent: Monday, December 04, 2017 11:24 AM To: Access Developers discussion and problem solving Subject: [AccessD] Odd Error Workaround Votive candle? No, no! Swing a lizard around your head 3 times. Always works for me. A trick I learned from a previous manager. Doug Decompiled, decorrupted, lit votive candle, nothing worked. Except that screwy workaround. R -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From jimdettman at verizon.net Tue Dec 5 06:44:06 2017 From: jimdettman at verizon.net (Jim Dettman) Date: Tue, 5 Dec 2017 07:44:06 -0500 Subject: [AccessD] Odd Error - Embarrassing Workaround In-Reply-To: <042301d36865$58b3a470$0a1aed50$@bchacc.com> References: <042301d36865$58b3a470$0a1aed50$@bchacc.com> Message-ID: <077e01d36dc6$bd8b1fc0$38a15f40$@verizon.net> Rocky, <> Sounds like you are are in the middle of another event or operation. Hitting debug and then resuming allows the other event/operation to complete. Couple things: 1. I don't see a declare for lngID or rsMe. I would explicitly declare both if they are not declared elsewhere. 2. Change this: If IsNull(cboVendors) Then Exit Sub To If IsNull(Me.cboVendors) Then Exit Sub 3. Put Debug.Print "start" and Debug.Print "end" in each of the form events. Then execute until you get the error. Check the debug window when you do to see what last executed. Should give you a clue as to what is going on. 4. You could also try: dbEngine.Idle dbRefreshCache at the top of the routine. But I would try and figure this out....I don't think your workaround is going to hold up. Move to a faster / slower machine and could easily see a different result. Jim. -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Rocky Smolin Sent: Tuesday, November 28, 2017 11:24 AM To: 'Access Developers discussion and problem solving'; 'Off Topic' Subject: [AccessD] Odd Error - Embarrassing Workaround Dear Lists: In the code below which is in the after update event of a combo box, I want to position the form to the selected vendor in the combo box list. Cookie cutter. Done it a hundred times: Private Sub cboVendors_AfterUpdate() If IsNull(cboVendors) Then Exit Sub lngID = Val(Me.cboVendors.Column(0)) Set rsMe = Me.RecordsetClone rsMe.FindFirst "fldVendorID= " & lngID If rsMe.NoMatch = True Then MsgBox "Record Not Found", vbExclamation Else Me.Bookmark = rsMe.Bookmark End If Me.cmdExit.SetFocus Me.cboVendors.Visible = False End sub The code's a little more wordy than it needs to be because I've been trying various fixes which, while they shouldn't work, often do in Access. J It blows up on Me.Bookmark = rsMe.Bookmark with an error 2001: You canceled the previous operation. So here's the odd thing: if I click Debug and see that line highlighted, then click F5, the code carries on and displays the selected record. I've got a workaround that's so esthetically and professionally offensive that I hesitate to show it here, but we're all friends, right? Private Sub cboVendors_AfterUpdate() If IsNull(cboVendors) Then Exit Sub lngID = Val(Me.cboVendors.Column(0)) Set rsMe = Me.RecordsetClone rsMe.FindFirst "fldVendorID= " & lngID If rsMe.NoMatch = True Then MsgBox "Record Not Found", vbExclamation Else On Error Resume Next Me.Bookmark = rsMe.Bookmark Me.Bookmark = rsMe.Bookmark On Error GoTo 0 End If Me.cmdExit.SetFocus Me.cboVendors.Visible = False End Sub All I did was add the On Error line and issue the Bookmark a second time. The second line apparently works. Can anyone help me avoid the embarrassment of having to explain to the next programmer on this app why that code is there? Does anyone know what the problem is and perhaps a fix? I already tried recompile. And also ran it through the decorrupter. MTIA Rocky Smolin (semi-ret.) Beach Access Software 760-683-5777 www.bchacc.com www.e-z-mrp.com Skype: rocky.smolin -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From rockysmolin at bchacc.com Tue Dec 5 08:03:02 2017 From: rockysmolin at bchacc.com (Rocky Smolin) Date: Tue, 5 Dec 2017 06:03:02 -0800 Subject: [AccessD] Odd Error - Embarrassing Workaround In-Reply-To: <077e01d36dc6$bd8b1fc0$38a15f40$@verizon.net> References: <042301d36865$58b3a470$0a1aed50$@bchacc.com> <077e01d36dc6$bd8b1fc0$38a15f40$@verizon.net> Message-ID: <011a01d36dd1$c3e05dd0$4ba11970$@bchacc.com> Thanks. I'll give that a roll. r -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Jim Dettman Sent: Tuesday, December 05, 2017 4:44 AM To: 'Access Developers discussion and problem solving'; 'Off Topic' Subject: Re: [AccessD] Odd Error - Embarrassing Workaround Rocky, <> Sounds like you are are in the middle of another event or operation. Hitting debug and then resuming allows the other event/operation to complete. Couple things: 1. I don't see a declare for lngID or rsMe. I would explicitly declare both if they are not declared elsewhere. 2. Change this: If IsNull(cboVendors) Then Exit Sub To If IsNull(Me.cboVendors) Then Exit Sub 3. Put Debug.Print "start" and Debug.Print "end" in each of the form events. Then execute until you get the error. Check the debug window when you do to see what last executed. Should give you a clue as to what is going on. 4. You could also try: dbEngine.Idle dbRefreshCache at the top of the routine. But I would try and figure this out....I don't think your workaround is going to hold up. Move to a faster / slower machine and could easily see a different result. Jim. -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Rocky Smolin Sent: Tuesday, November 28, 2017 11:24 AM To: 'Access Developers discussion and problem solving'; 'Off Topic' Subject: [AccessD] Odd Error - Embarrassing Workaround Dear Lists: In the code below which is in the after update event of a combo box, I want to position the form to the selected vendor in the combo box list. Cookie cutter. Done it a hundred times: Private Sub cboVendors_AfterUpdate() If IsNull(cboVendors) Then Exit Sub lngID = Val(Me.cboVendors.Column(0)) Set rsMe = Me.RecordsetClone rsMe.FindFirst "fldVendorID= " & lngID If rsMe.NoMatch = True Then MsgBox "Record Not Found", vbExclamation Else Me.Bookmark = rsMe.Bookmark End If Me.cmdExit.SetFocus Me.cboVendors.Visible = False End sub The code's a little more wordy than it needs to be because I've been trying various fixes which, while they shouldn't work, often do in Access. J It blows up on Me.Bookmark = rsMe.Bookmark with an error 2001: You canceled the previous operation. So here's the odd thing: if I click Debug and see that line highlighted, then click F5, the code carries on and displays the selected record. I've got a workaround that's so esthetically and professionally offensive that I hesitate to show it here, but we're all friends, right? Private Sub cboVendors_AfterUpdate() If IsNull(cboVendors) Then Exit Sub lngID = Val(Me.cboVendors.Column(0)) Set rsMe = Me.RecordsetClone rsMe.FindFirst "fldVendorID= " & lngID If rsMe.NoMatch = True Then MsgBox "Record Not Found", vbExclamation Else On Error Resume Next Me.Bookmark = rsMe.Bookmark Me.Bookmark = rsMe.Bookmark On Error GoTo 0 End If Me.cmdExit.SetFocus Me.cboVendors.Visible = False End Sub All I did was add the On Error line and issue the Bookmark a second time. The second line apparently works. Can anyone help me avoid the embarrassment of having to explain to the next programmer on this app why that code is there? Does anyone know what the problem is and perhaps a fix? I already tried recompile. And also ran it through the decorrupter. MTIA Rocky Smolin (semi-ret.) Beach Access Software 760-683-5777 www.bchacc.com www.e-z-mrp.com Skype: rocky.smolin -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From rockysmolin at bchacc.com Tue Dec 5 22:17:49 2017 From: rockysmolin at bchacc.com (Rocky Smolin) Date: Tue, 5 Dec 2017 20:17:49 -0800 Subject: [AccessD] Peter's Shrinker/Stretcher Message-ID: <01fb01d36e49$2d5cc9c0$88165d40$@bchacc.com> Is anyone using Peter's Shrinker/Stretcher? Have good/bad experience with it? I got it, tried it, am running into some problems, got no response from Peter. Anybody have good/bad experience with FMS resizer? TIA Rocky Smolin Beach Access Software 760-683-5777 www.bchacc.com www.e-z-mrp.com Skype: rocky.smolin From gustav at cactus.dk Wed Dec 6 01:18:02 2017 From: gustav at cactus.dk (Gustav Brock) Date: Wed, 6 Dec 2017 07:18:02 +0000 Subject: [AccessD] Peter's Shrinker/Stretcher Message-ID: Hi Rocky No, but you could check it out with the free trial: http://www.fmsinc.com/MicrosoftAccess/controls/free-trial.htm though it is stated that: The trial version controls are not licensed. This means that you cannot insert the controls in you own application. which to me renders the trial useless. /gustav -----Oprindelig meddelelse----- Fra: AccessD [mailto:accessd-bounces at databaseadvisors.com] P? vegne af Rocky Smolin Sendt: 6. december 2017 05:18 Til: 'Access Developers discussion and problem solving' Emne: [AccessD] Peter's Shrinker/Stretcher Is anyone using Peter's Shrinker/Stretcher? Have good/bad experience with it? I got it, tried it, am running into some problems, got no response from Peter. Anybody have good/bad experience with FMS resizer? TIA Rocky Smolin Beach Access Software 760-683-5777 www.bchacc.com www.e-z-mrp.com Skype: rocky.smolin From rockysmolin at bchacc.com Wed Dec 6 10:12:46 2017 From: rockysmolin at bchacc.com (Rocky Smolin) Date: Wed, 6 Dec 2017 08:12:46 -0800 Subject: [AccessD] Peter's Shrinker/Stretcher In-Reply-To: References: Message-ID: <024a01d36ead$0df11fa0$29d35ee0$@bchacc.com> Yeah, the demo was useless for proof of concept. So I bought a license - it was cheap enough. (The client will pay in any event :o)). But still no response from Peter after three days. Very disappointing as when it works it's pretty slick. The client has asked me to investigate FRM's screen resizer. So that's next up. Anyone have experience using VMS's resizer? Rocky Smolin Beach Access Software 760-683-5777 www.bchacc.com www.e-z-mrp.com Skype: rocky.smolin -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Gustav Brock Sent: Tuesday, December 05, 2017 11:18 PM To: Access Developers discussion and problem solving Subject: Re: [AccessD] Peter's Shrinker/Stretcher Hi Rocky No, but you could check it out with the free trial: http://www.fmsinc.com/MicrosoftAccess/controls/free-trial.htm though it is stated that: The trial version controls are not licensed. This means that you cannot insert the controls in you own application. which to me renders the trial useless. /gustav -----Oprindelig meddelelse----- Fra: AccessD [mailto:accessd-bounces at databaseadvisors.com] P? vegne af Rocky Smolin Sendt: 6. december 2017 05:18 Til: 'Access Developers discussion and problem solving' Emne: [AccessD] Peter's Shrinker/Stretcher Is anyone using Peter's Shrinker/Stretcher? Have good/bad experience with it? I got it, tried it, am running into some problems, got no response from Peter. Anybody have good/bad experience with FMS resizer? TIA Rocky Smolin Beach Access Software 760-683-5777 www.bchacc.com www.e-z-mrp.com Skype: rocky.smolin -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From rockysmolin at bchacc.com Wed Dec 6 10:51:54 2017 From: rockysmolin at bchacc.com (Rocky Smolin) Date: Wed, 6 Dec 2017 08:51:54 -0800 Subject: [AccessD] Peter's Shrinker/Stretcher In-Reply-To: <024a01d36ead$0df11fa0$29d35ee0$@bchacc.com> References: <024a01d36ead$0df11fa0$29d35ee0$@bchacc.com> Message-ID: <025e01d36eb2$85797540$906c5fc0$@bchacc.com> That's FMS not FRM. Also That's FMS not VRM. Getting old ain't for sissies. R -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Rocky Smolin Sent: Wednesday, December 06, 2017 8:13 AM To: 'Access Developers discussion and problem solving' Subject: Re: [AccessD] Peter's Shrinker/Stretcher Yeah, the demo was useless for proof of concept. So I bought a license - it was cheap enough. (The client will pay in any event :o)). But still no response from Peter after three days. Very disappointing as when it works it's pretty slick. The client has asked me to investigate FRM's screen resizer. So that's next up. Anyone have experience using VMS's resizer? Rocky Smolin Beach Access Software 760-683-5777 www.bchacc.com www.e-z-mrp.com Skype: rocky.smolin -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Gustav Brock Sent: Tuesday, December 05, 2017 11:18 PM To: Access Developers discussion and problem solving Subject: Re: [AccessD] Peter's Shrinker/Stretcher Hi Rocky No, but you could check it out with the free trial: http://www.fmsinc.com/MicrosoftAccess/controls/free-trial.htm though it is stated that: The trial version controls are not licensed. This means that you cannot insert the controls in you own application. which to me renders the trial useless. /gustav -----Oprindelig meddelelse----- Fra: AccessD [mailto:accessd-bounces at databaseadvisors.com] P? vegne af Rocky Smolin Sendt: 6. december 2017 05:18 Til: 'Access Developers discussion and problem solving' Emne: [AccessD] Peter's Shrinker/Stretcher Is anyone using Peter's Shrinker/Stretcher? Have good/bad experience with it? I got it, tried it, am running into some problems, got no response from Peter. Anybody have good/bad experience with FMS resizer? TIA Rocky Smolin Beach Access Software 760-683-5777 www.bchacc.com www.e-z-mrp.com Skype: rocky.smolin -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From bensonforums at gmail.com Sun Dec 10 22:20:57 2017 From: bensonforums at gmail.com (Bill Benson) Date: Sun, 10 Dec 2017 23:20:57 -0500 Subject: [AccessD] Excel 2013 CopyFromRecordset "Interface not registered" error when copying Ac2013 DAO recordset to a range In-Reply-To: <0b62238b-79a3-a61e-2580-7845aa22f43a@Gmail.com> References: <0b62238b-79a3-a61e-2580-7845aa22f43a@Gmail.com> Message-ID: The infrastructure team built a new VDI image, and CopyFromRecordset now works again, hooray. I know very little about Access databases in general, and far less about ADO, so I am glad I did not need to rewrite this tool to use ADO. I wasn't able to use an ADO connection, because the database needs to be opened with exclusive access in order to create and delete tables, compact on close, and other activities. Maybe alternative routines could have been devised, but not worth the investment. I did try a couple of workarounds including (1) output query results to temp tables, then copied the database to another location, using ADO against the snapshot (2) outputting queries using DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel12Xml, "QryTempUpdate", strWBNAME then opening the output file and copying its data to the same range I had been populating with CopyFromRecordset. But on balance, CopyFromRecordset is just so efficient, I feel we dodged a bullet with the new VDI image no longer having the same issue. From bensonforums at gmail.com Thu Dec 14 11:36:55 2017 From: bensonforums at gmail.com (Bill Benson) Date: Thu, 14 Dec 2017 12:36:55 -0500 Subject: [AccessD] a bit OT: Survey responses, answers to question of "how often" Message-ID: I am trying to put together a survey generator tool, and it seems impossible to come up with a complete list of possible responses to questions about frequency. I know context is important, but I am trying to create a permanent, comprehensive list. I don't know how data polling groups manage this, to me I have gotten this far and I am already burned out. I was thinking perhaps to start with three separate tables, one with answers for how many; another for depiction of what the item is quantified (minutes, hours, days), and another for what time period is being observed (hour, day, morning, afternoon, evening, week, weekend, month, quarter, year). But even trying that out I could not handle all the nuances required to generate even a partial list like shown below (which is only just getting started). Any ideas where to turn? Measures of occurrence ----------------------------------------- once per hour twice per hour a few times per hour many times per hour continuously daily once in a while once per day a couple times per day a few times per day several times per day constantly during the day once in the morning twice in the morning a few times in the morning several times in the morning constantly during the morning once in the afternoon twice in the afternoon a few times in the afternoon several times in the afternoon constantly during the afternoon once in the evening twice in the evening a few times in the evening several times in the evening constantly during the evening once in the night twice in the night a few times in the night several times in the night constantly during the night once per month once per quarter once per year 24/7 24/7/365 1 day per week two days per week three days per week four days per week five days per week six days per week seven days per week every week day every weekend occasionally during the week occasionally during the month sometimes during the year on occasion once in a while frequently seldom never always sometimes From gustav at cactus.dk Sat Dec 23 11:21:18 2017 From: gustav at cactus.dk (Gustav Brock) Date: Sat, 23 Dec 2017 17:21:18 +0000 Subject: [AccessD] OT: Merry Christmas! Message-ID: Hi all A bit quiet here, but to the devoted collection of old farts still lurking: Merry Christmas from Denmark! There's no "Frosty the Snowman" here as we have about 10 degrees Celsius which is unusual high. And it will not change before January. Oh well. /gustav From kost36 at otenet.gr Sat Dec 23 13:44:43 2017 From: kost36 at otenet.gr (Kostas Konstantinidis) Date: Sat, 23 Dec 2017 21:44:43 +0200 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> Merry Christmas to all from Greece - Crete - Chania 9 degrees today something means very cold for here ? kostas -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Gustav Brock Sent: Saturday, December 23, 2017 7:21 PM To: Access Developers discussion and problem solving Subject: [AccessD] OT: Merry Christmas! Hi all A bit quiet here, but to the devoted collection of old farts still lurking: Merry Christmas from Denmark! There's no "Frosty the Snowman" here as we have about 10 degrees Celsius which is unusual high. And it will not change before January. Oh well. /gustav -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From mwp.reid at qub.ac.uk Sat Dec 23 14:10:13 2017 From: mwp.reid at qub.ac.uk (Martin Reid) Date: Sat, 23 Dec 2017 20:10:13 +0000 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: <976E500DD0AF35409874A413967BFAECA0A135E3@EX2K10-MBX5.ads.qub.ac.uk> Merry Christmas from Ireland Martin Sent from my Windows Phone ________________________________ From: Gustav Brock Sent: ?23/?12/?2017 17:26 To: Access Developers discussion and problem solving Subject: [AccessD] OT: Merry Christmas! Hi all A bit quiet here, but to the devoted collection of old farts still lurking: Merry Christmas from Denmark! There's no "Frosty the Snowman" here as we have about 10 degrees Celsius which is unusual high. And it will not change before January. Oh well. /gustav -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From jackandpat.d at gmail.com Sat Dec 23 14:09:55 2017 From: jackandpat.d at gmail.com (jack drawbridge) Date: Sat, 23 Dec 2017 15:09:55 -0500 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> References: <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> Message-ID: Merry Christmas to all from Eastern Canada -7C at the moment jack On Sat, Dec 23, 2017 at 2:44 PM, Kostas Konstantinidis wrote: > Merry Christmas to all from Greece - Crete - Chania > > 9 degrees today something means very cold for here ? > > > > kostas > > > > > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of > Gustav Brock > Sent: Saturday, December 23, 2017 7:21 PM > To: Access Developers discussion and problem solving < > accessd at databaseadvisors.com> > Subject: [AccessD] OT: Merry Christmas! > > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees Celsius > which is unusual high. And it will not change before January. Oh well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors. > com > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > From bensonforums at gmail.com Sat Dec 23 15:00:51 2017 From: bensonforums at gmail.com (Bill Benson) Date: Sat, 23 Dec 2017 16:00:51 -0500 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: <976E500DD0AF35409874A413967BFAECA0A135E3@EX2K10-MBX5.ads.qub.ac.uk> References: <976E500DD0AF35409874A413967BFAECA0A135E3@EX2K10-MBX5.ads.qub.ac.uk> Message-ID: And from Schenectady . On Sat, Dec 23, 2017 at 3:10 PM, Martin Reid wrote: > Merry Christmas from Ireland > > Martin > > Sent from my Windows Phone > ________________________________ > From: Gustav Brock > Sent: ?23/?12/?2017 17:26 > To: Access Developers discussion and problem solving databaseadvisors.com> > Subject: [AccessD] OT: Merry Christmas! > > Hi all > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > There's no "Frosty the Snowman" here as we have about 10 degrees Celsius > which is unusual high. And it will not change before January. Oh well. > > /gustav > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > From kathryn at bassett.net Sat Dec 23 15:17:07 2017 From: kathryn at bassett.net (Kathryn Bassett) Date: Sat, 23 Dec 2017 13:17:07 -0800 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: <976E500DD0AF35409874A413967BFAECA0A135E3@EX2K10-MBX5.ads.qub.ac.uk> Message-ID: <013701d37c33$63feb6d0$2bfc2470$@bassett.net> And Pasadena California Kathryn > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf > Of Bill Benson > Sent: Saturday, 23 Dec 2017 1:01 PM > To: Access Developers discussion and problem solving > Subject: Re: [AccessD] OT: Merry Christmas! > > And from Schenectady > Longyear/dp/0312942397>. > > On Sat, Dec 23, 2017 at 3:10 PM, Martin Reid wrote: > > > Merry Christmas from Ireland > > > > Martin > > > > Sent from my Windows Phone > > ________________________________ > > From: Gustav Brock > > Sent: ?23/?12/?2017 17:26 > > To: Access Developers discussion and problem solving > databaseadvisors.com> > > Subject: [AccessD] OT: Merry Christmas! > > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > > lurking: Merry Christmas from Denmark! > > --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From stuart at lexacorp.com.pg Sat Dec 23 15:18:20 2017 From: stuart at lexacorp.com.pg (Stuart McLachlan) Date: Sun, 24 Dec 2017 07:18:20 +1000 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> References: , <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> Message-ID: <5A3EC81C.26862.3132403D@stuart.lexacorp.com.pg> And the same to all from Port Moresy where it's about 26?C at 7:00am with an expected high of around 32?C. -- Stuart On 23 Dec 2017 at 21:44, Kostas Konstantinidis wrote: > Merry Christmas to all from Greece - Crete - Chania > > 9 degrees today something means very cold for here > > > > kostas > > > > > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf > Of Gustav Brock Sent: Saturday, December 23, 2017 7:21 PM To: Access > Developers discussion and problem solving > Subject: [AccessD] OT: Merry Christmas! > > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees > Celsius which is unusual high. And it will not change before January. > Oh well. > > > > /gustav > From hkotsch at arcor.de Sat Dec 23 15:20:03 2017 From: hkotsch at arcor.de (Helmut Kotsch) Date: Sat, 23 Dec 2017 22:20:03 +0100 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> Message-ID: <000801d37c33$cda5fc60$68f1f520$@de> Merry Christmas from the Rhine-River in Germany. 10 C or 50 F. Higher than normal Helmut -----Urspr?ngliche Nachricht----- Von: AccessD [mailto:accessd-bounces at databaseadvisors.com] Im Auftrag von jack drawbridge Gesendet: Samstag, 23. Dezember 2017 21:10 An: Access Developers discussion and problem solving Betreff: Re: [AccessD] OT: Merry Christmas! Merry Christmas to all from Eastern Canada -7C at the moment jack On Sat, Dec 23, 2017 at 2:44 PM, Kostas Konstantinidis wrote: > Merry Christmas to all from Greece - Crete - Chania > > 9 degrees today something means very cold for here ? > > > > kostas > > > > > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of > Gustav Brock > Sent: Saturday, December 23, 2017 7:21 PM > To: Access Developers discussion and problem solving < > accessd at databaseadvisors.com> > Subject: [AccessD] OT: Merry Christmas! > > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees Celsius > which is unusual high. And it will not change before January. Oh well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors. > com > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From ssharkins at gmail.com Sat Dec 23 15:25:29 2017 From: ssharkins at gmail.com (Susan Harkins) Date: Sat, 23 Dec 2017 16:25:29 -0500 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: <00cf01d37c34$8ff09a50$afd1cef0$@gmail.com> Merry Christmas to you and yours! It's raining here, which is ... winter in central Kentucky. ? Susan H. Hi all A bit quiet here, but to the devoted collection of old farts still lurking: Merry Christmas from Denmark! There's no "Frosty the Snowman" here as we have about 10 degrees Celsius which is unusual high. And it will not change before January. Oh well. /gustav -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From jbartow at winhaven.net Sat Dec 23 21:12:15 2017 From: jbartow at winhaven.net (John Bartow) Date: Sun, 24 Dec 2017 03:12:15 +0000 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: Merry Christmas Gustav! And Merry Christmas to all! John B. (From Winneconne Wisconsin where it is snowy and cold, just the way we like our Christmas :-) Sent from my Windows Phone ________________________________ From: Gustav Brock Sent: ?12/?23/?2017 11:23 AM To: Access Developers discussion and problem solving Subject: [AccessD] OT: Merry Christmas! Hi all A bit quiet here, but to the devoted collection of old farts still lurking: Merry Christmas from Denmark! There's no "Frosty the Snowman" here as we have about 10 degrees Celsius which is unusual high. And it will not change before January. Oh well. /gustav -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From jwcolby at gmail.com Sat Dec 23 21:33:53 2017 From: jwcolby at gmail.com (John Colby) Date: Sat, 23 Dec 2017 22:33:53 -0500 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: And to all a good night.? From NC USA. On 12/23/2017 12:21 PM, Gustav Brock wrote: > Hi all > > A bit quiet here, but to the devoted collection of old farts still lurking: Merry Christmas from Denmark! > > There's no "Frosty the Snowman" here as we have about 10 degrees Celsius which is unusual high. And it will not change before January. Oh well. > > /gustav -- John W. Colby From paul at wordwright.org Sun Dec 24 04:14:52 2017 From: paul at wordwright.org (paul) Date: Sun, 24 Dec 2017 12:14:52 +0200 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> References: <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> Message-ID: On 23 December 2017 at 21:44, Kostas Konstantinidis wrote: > Merry Christmas to all from Greece - Crete - Chania > > 9 degrees today something means very cold for here ? > > > > kostas > > > > > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of > Gustav Brock > Sent: Saturday, December 23, 2017 7:21 PM > To: Access Developers discussion and problem solving < > accessd at databaseadvisors.com> > Subject: [AccessD] OT: Merry Christmas! > > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees Celsius > which is unusual high. And it will not change before January. Oh well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors. > com > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > And festive greetings from Cape Town (where I am working on a book project), sunny and warm, instead of chilly London. Great to see names pop up from the days (more than a dozen years ago now) when I almost depended on this excellent forum. Very good to see the new names, too, I hasten to add. Merry Christmas all, and best hopes for a really great year ahead. Salut paul Paul Rodgers From RRANTHON at sentara.com Sun Dec 24 06:06:03 2017 From: RRANTHON at sentara.com (RANDALL R ANTHONY) Date: Sun, 24 Dec 2017 12:06:03 +0000 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: <000801d37c33$cda5fc60$68f1f520$@de> References: <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> <000801d37c33$cda5fc60$68f1f520$@de> Message-ID: Merry Christmas from Virginia Beach, VA, 70 degree day yesterday, nice to play golf in shirtsleeves in December! -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Helmut Kotsch Sent: Saturday, December 23, 2017 4:20 PM To: 'Access Developers discussion and problem solving' Subject: Re: [AccessD] OT: Merry Christmas! Merry Christmas from the Rhine-River in Germany. 10 C or 50 F. Higher than normal Helmut -----Urspr?ngliche Nachricht----- Von: AccessD [mailto:accessd-bounces at databaseadvisors.com] Im Auftrag von jack drawbridge Gesendet: Samstag, 23. Dezember 2017 21:10 An: Access Developers discussion and problem solving Betreff: Re: [AccessD] OT: Merry Christmas! Merry Christmas to all from Eastern Canada -7C at the moment jack On Sat, Dec 23, 2017 at 2:44 PM, Kostas Konstantinidis wrote: > Merry Christmas to all from Greece - Crete - Chania > > 9 degrees today something means very cold for here ? > > > > kostas > > > > > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf > Of Gustav Brock > Sent: Saturday, December 23, 2017 7:21 PM > To: Access Developers discussion and problem solving < > accessd at databaseadvisors.com> > Subject: [AccessD] OT: Merry Christmas! > > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees > Celsius which is unusual high. And it will not change before January. Oh well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors. > com > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com . From pcs.accessd at gmail.com Sun Dec 24 06:10:16 2017 From: pcs.accessd at gmail.com (Borge Hansen) Date: Sun, 24 Dec 2017 12:10:16 +0000 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: Festive Season's greetings from sunny Gold Coast, Australia - blue skies, 27 Celsius degrees - top summer holiday season. /borge On Sun, 24 Dec 2017 at 3:24 am, Gustav Brock wrote: > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees Celsius > which is unusual high. And it will not change before January. Oh well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors.com > > From df.waters at outlook.com Sun Dec 24 10:24:00 2017 From: df.waters at outlook.com (Dan Waters) Date: Sun, 24 Dec 2017 16:24:00 +0000 Subject: [AccessD] Merry Christmas! In-Reply-To: References: Message-ID: Merry Christmas to Everyone! Here in Minneapolis it's now -6C (very normal for this time of year). But tomorrow the high temp will be -17C - a little low. Drink some warm [favoritedrinkhere]! Dan -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Gustav Brock Sent: December 23, 2017 11:21 To: Access Developers discussion and problem solving Subject: [AccessD] OT: Merry Christmas! Hi all A bit quiet here, but to the devoted collection of old farts still lurking: Merry Christmas from Denmark! There's no "Frosty the Snowman" here as we have about 10 degrees Celsius which is unusual high. And it will not change before January. Oh well. /gustav -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From rford at terra.com.br Sun Dec 24 14:35:15 2017 From: rford at terra.com.br (Roberto Ford Long) Date: Sun, 24 Dec 2017 18:35:15 -0200 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: <1082bad7-31d6-307f-3a14-26fabfc39bbb@terra.com.br> Merry Christmas to all!!! Form S?o Paulo, Brazil Roberto. Em 23/12/2017 15:21, Gustav Brock escreveu: > Hi all > > A bit quiet here, but to the devoted collection of old farts still lurking: Merry Christmas from Denmark! > > There's no "Frosty the Snowman" here as we have about 10 degrees Celsius which is unusual high. And it will not change before January. Oh well. > > /gustav From mcp2004 at mail.ru Mon Dec 25 10:47:56 2017 From: mcp2004 at mail.ru (=?UTF-8?B?U2FsYWtoZXRkaW5vdiBTaGFtaWw=?=) Date: Mon, 25 Dec 2017 19:47:56 +0300 Subject: [AccessD] =?utf-8?q?OT=3A_Merry_Christmas!?= In-Reply-To: <1082bad7-31d6-307f-3a14-26fabfc39bbb@terra.com.br> References: <1082bad7-31d6-307f-3a14-26fabfc39bbb@terra.com.br> Message-ID: <1514220476.711274012@f382.i.mail.ru> Merry post-Christmas time! ;)? (Sorry for my being late to greet you all with Christmas.) There is still some snow here but tomorrow it promise to start melting and it will keep rather warm for a couple of weeks according to the local weather forecast, so I'd better go now for skiing in the nearby park... Shamil >Sunday, December 24, 2017 11:38 PM +03:00 from Roberto Ford Long : > >Merry Christmas to all!!! >Form S?o Paulo, Brazil >Roberto. > >Em 23/12/2017 15:21, Gustav Brock escreveu: >> Hi all >> >> A bit quiet here, but to the devoted collection of old farts still lurking: Merry Christmas from Denmark! >> >> There's no "Frosty the Snowman" here as we have about 10 degrees Celsius which is unusual high. And it will not change before January. Oh well. >> >> /gustav > >-- >AccessD mailing list >AccessD at databaseadvisors.com >http://databaseadvisors.com/mailman/listinfo/accessd >Website: http://www.databaseadvisors.com From kathryn at bassett.net Mon Dec 25 12:51:19 2017 From: kathryn at bassett.net (Kathryn Bassett) Date: Mon, 25 Dec 2017 10:51:19 -0800 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: <1514220476.711274012@f382.i.mail.ru> References: <1082bad7-31d6-307f-3a14-26fabfc39bbb@terra.com.br> <1514220476.711274012@f382.i.mail.ru> Message-ID: <00ba01d37db1$5a417900$0ec46b00$@bassett.net> Shamil, for those of us in the US, your message arrived Christmas morning - good timing since you are ahead of us! Hope you had a good day. -- Kathryn Rhinehart Bassett (Pasadena CA) "Genealogy is my bag" "GH is my soap" kathryn at bassett.net http://bassett.net > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf > Of Salakhetdinov Shamil via AccessD > Sent: Monday, 25 Dec 2017 8:48 AM > To: Access Developers discussion and problem solving > Cc: Salakhetdinov Shamil > Subject: Re: [AccessD] OT: Merry Christmas! > > Merry post-Christmas time! ;) (Sorry for my being late to greet you all with > Christmas.) > > There is still some snow here but tomorrow it promise to start melting and it > will keep rather warm for a couple of weeks according to the local weather > forecast, so I'd better go now for skiing in the nearby park... Shamil --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus From carbonnb at gmail.com Tue Dec 26 08:44:30 2017 From: carbonnb at gmail.com (Bryan Carbonnell) Date: Tue, 26 Dec 2017 09:44:30 -0500 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: Merry Christmas all (a day late). My excuse for being late is we're celebrating Christmas with a mouse, duck and dog. We're at Disney World making memories with the girls. Your friendly neighbourhood listmaster. Bryan On Dec 23, 2017 12:24 PM, "Gustav Brock" wrote: > Hi all > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > There's no "Frosty the Snowman" here as we have about 10 degrees Celsius > which is unusual high. And it will not change before January. Oh well. > > /gustav > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > From paul at wordwright.org Tue Dec 26 08:59:07 2017 From: paul at wordwright.org (paul) Date: Tue, 26 Dec 2017 16:59:07 +0200 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: How's this for a pre-Christmas luncheon er, delight? A wonderful stroll in the Cape sun, and two lovelies approach ... baring blades. Our coder is mugged in the middle of Christmas day. More by an injured ego on my blog, SailingToPurgatory.com Merry Christmas! Cheers all paul Paul Rodgers On 26 December 2017 at 16:44, Bryan Carbonnell wrote: > Merry Christmas all (a day late). My excuse for being late is we're > celebrating Christmas with a mouse, duck and dog. We're at Disney World > making memories with the girls. > > Your friendly neighbourhood listmaster. > > Bryan > > On Dec 23, 2017 12:24 PM, "Gustav Brock" wrote: > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees Celsius > > which is unusual high. And it will not change before January. Oh well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors.com > > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > From jim at therareshop.com Tue Dec 26 10:42:50 2017 From: jim at therareshop.com (Jim Hale) Date: Tue, 26 Dec 2017 10:42:50 -0600 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: Message-ID: <042f01d37e68$91df5eb0$b59e1c10$@therareshop.com> Cool. How crowded is it? J -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Bryan Carbonnell Sent: Tuesday, December 26, 2017 8:45 AM To: Access Developers discussion and problem solving Subject: Re: [AccessD] OT: Merry Christmas! Merry Christmas all (a day late). My excuse for being late is we're celebrating Christmas with a mouse, duck and dog. We're at Disney World making memories with the girls. Your friendly neighbourhood listmaster. Bryan On Dec 23, 2017 12:24 PM, "Gustav Brock" wrote: > Hi all > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > There's no "Frosty the Snowman" here as we have about 10 degrees > Celsius which is unusual high. And it will not change before January. Oh well. > > /gustav > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From mwp.reid at qub.ac.uk Tue Dec 26 11:06:40 2017 From: mwp.reid at qub.ac.uk (Martin Reid) Date: Tue, 26 Dec 2017 17:06:40 +0000 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: <042f01d37e68$91df5eb0$b59e1c10$@therareshop.com> References: , <042f01d37e68$91df5eb0$b59e1c10$@therareshop.com> Message-ID: <976E500DD0AF35409874A413967BFAECA0A14104@EX2K10-MBX5.ads.qub.ac.uk> Cost us a fortune in Florida haaaa Martin Sent from my Windows Phone ________________________________ From: Jim Hale Sent: ?26/?12/?2017 16:47 To: 'Access Developers discussion and problem solving' Subject: Re: [AccessD] OT: Merry Christmas! Cool. How crowded is it? J -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Bryan Carbonnell Sent: Tuesday, December 26, 2017 8:45 AM To: Access Developers discussion and problem solving Subject: Re: [AccessD] OT: Merry Christmas! Merry Christmas all (a day late). My excuse for being late is we're celebrating Christmas with a mouse, duck and dog. We're at Disney World making memories with the girls. Your friendly neighbourhood listmaster. Bryan On Dec 23, 2017 12:24 PM, "Gustav Brock" wrote: > Hi all > > A bit quiet here, but to the devoted collection of old farts still > lurking: Merry Christmas from Denmark! > > There's no "Frosty the Snowman" here as we have about 10 degrees > Celsius which is unusual high. And it will not change before January. Oh well. > > /gustav > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From tinanfields at torchlake.com Tue Dec 26 16:00:59 2017 From: tinanfields at torchlake.com (Tina N Fields) Date: Tue, 26 Dec 2017 17:00:59 -0500 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: <02bb01d37c26$7c3d9b10$74b8d130$@otenet.gr> <000801d37c33$cda5fc60$68f1f520$@de> Message-ID: Merry Christmas (or day after) from northern Michigan, USA. Snow all day for the last several days. Temp about -10 F (~ -23 C) Best to you all, T Tina Norris Fields 231-322-2787 tinanfields-at-torchlake-dot-com On 12/24/2017 7:06 AM, RANDALL R ANTHONY wrote: > Merry Christmas from Virginia Beach, VA, 70 degree day yesterday, nice to play golf in shirtsleeves in December! > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Helmut Kotsch > Sent: Saturday, December 23, 2017 4:20 PM > To: 'Access Developers discussion and problem solving' > Subject: Re: [AccessD] OT: Merry Christmas! > > Merry Christmas from the Rhine-River in Germany. 10 C or 50 F. Higher than normal > > Helmut > > -----Urspr?ngliche Nachricht----- > Von: AccessD [mailto:accessd-bounces at databaseadvisors.com] Im Auftrag von jack drawbridge > Gesendet: Samstag, 23. Dezember 2017 21:10 > An: Access Developers discussion and problem solving > Betreff: Re: [AccessD] OT: Merry Christmas! > > Merry Christmas to all from Eastern Canada -7C at the moment > > jack > > On Sat, Dec 23, 2017 at 2:44 PM, Kostas Konstantinidis > wrote: > >> Merry Christmas to all from Greece - Crete - Chania >> >> 9 degrees today something means very cold for here ? >> >> >> >> kostas >> >> >> >> >> >> -----Original Message----- >> From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf >> Of Gustav Brock >> Sent: Saturday, December 23, 2017 7:21 PM >> To: Access Developers discussion and problem solving < >> accessd at databaseadvisors.com> >> Subject: [AccessD] OT: Merry Christmas! >> >> >> >> Hi all >> >> >> >> A bit quiet here, but to the devoted collection of old farts still >> lurking: Merry Christmas from Denmark! >> >> >> >> There's no "Frosty the Snowman" here as we have about 10 degrees >> Celsius which is unusual high. And it will not change before January. Oh well. >> >> >> >> /gustav >> >> -- >> >> AccessD mailing list >> >> AccessD at databaseadvisors.com >> >> >> http://databaseadvisors.com/mailman/listinfo/accessd >> >> Website: http://www.databaseadvisors. >> com >> >> -- >> AccessD mailing list >> AccessD at databaseadvisors.com >> http://databaseadvisors.com/mailman/listinfo/accessd >> Website: http://www.databaseadvisors.com >> > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > > From carbonnb at gmail.com Tue Dec 26 20:09:44 2017 From: carbonnb at gmail.com (Bryan Carbonnell) Date: Tue, 26 Dec 2017 21:09:44 -0500 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: <042f01d37e68$91df5eb0$b59e1c10$@therareshop.com> References: <042f01d37e68$91df5eb0$b59e1c10$@therareshop.com> Message-ID: Stupid busy. But we knew that going in. They closed Magic Kingdom to guests around 11 Christmas Day. They were at capacity. Thankfully we were at Hollywood Studios. Gotta love having a wife that can plan her way around crowds :) B On Dec 26, 2017 11:45 AM, "Jim Hale" wrote: > Cool. How crowded is it? > > J > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of > Bryan Carbonnell > Sent: Tuesday, December 26, 2017 8:45 AM > To: Access Developers discussion and problem solving > > Subject: Re: [AccessD] OT: Merry Christmas! > > Merry Christmas all (a day late). My excuse for being late is we're > celebrating Christmas with a mouse, duck and dog. We're at Disney World > making memories with the girls. > > Your friendly neighbourhood listmaster. > > Bryan > > On Dec 23, 2017 12:24 PM, "Gustav Brock" wrote: > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees > > Celsius which is unusual high. And it will not change before January. Oh > well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors.com > > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > From carbonnb at gmail.com Tue Dec 26 20:11:29 2017 From: carbonnb at gmail.com (Bryan Carbonnell) Date: Tue, 26 Dec 2017 21:11:29 -0500 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: <976E500DD0AF35409874A413967BFAECA0A14104@EX2K10-MBX5.ads.qub.ac.uk> References: <042f01d37e68$91df5eb0$b59e1c10$@therareshop.com> <976E500DD0AF35409874A413967BFAECA0A14104@EX2K10-MBX5.ads.qub.ac.uk> Message-ID: Costs us a fortune as well :) we're at around $1k a day including park tickets and deluxe dining plan. B On Dec 26, 2017 12:08 PM, "Martin Reid" wrote: > Cost us a fortune in Florida haaaa > > Martin > > Sent from my Windows Phone > ________________________________ > From: Jim Hale > Sent: ?26/?12/?2017 16:47 > To: 'Access Developers discussion and problem solving' databaseadvisors.com> > Subject: Re: [AccessD] OT: Merry Christmas! > > Cool. How crowded is it? > > J > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of > Bryan Carbonnell > Sent: Tuesday, December 26, 2017 8:45 AM > To: Access Developers discussion and problem solving > > Subject: Re: [AccessD] OT: Merry Christmas! > > Merry Christmas all (a day late). My excuse for being late is we're > celebrating Christmas with a mouse, duck and dog. We're at Disney World > making memories with the girls. > > Your friendly neighbourhood listmaster. > > Bryan > > On Dec 23, 2017 12:24 PM, "Gustav Brock" wrote: > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees > > Celsius which is unusual high. And it will not change before January. Oh > well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors.com > > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > From mwp.reid at qub.ac.uk Wed Dec 27 07:44:23 2017 From: mwp.reid at qub.ac.uk (Martin Reid) Date: Wed, 27 Dec 2017 13:44:23 +0000 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: <042f01d37e68$91df5eb0$b59e1c10$@therareshop.com> <976E500DD0AF35409874A413967BFAECA0A14104@EX2K10-MBX5.ads.qub.ac.uk>, Message-ID: <976E500DD0AF35409874A413967BFAECA0A14553@EX2K10-MBX5.ads.qub.ac.uk> We got 14 day all park tickets before we left. Think around 2.5/3k uk. Martin Sent from my Windows Phone ________________________________ From: Bryan Carbonnell Sent: ?27/?12/?2017 02:15 To: Access Developers discussion and problem solving Subject: Re: [AccessD] OT: Merry Christmas! Costs us a fortune as well :) we're at around $1k a day including park tickets and deluxe dining plan. B On Dec 26, 2017 12:08 PM, "Martin Reid" wrote: > Cost us a fortune in Florida haaaa > > Martin > > Sent from my Windows Phone > ________________________________ > From: Jim Hale > Sent: ?26/?12/?2017 16:47 > To: 'Access Developers discussion and problem solving' databaseadvisors.com> > Subject: Re: [AccessD] OT: Merry Christmas! > > Cool. How crowded is it? > > J > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of > Bryan Carbonnell > Sent: Tuesday, December 26, 2017 8:45 AM > To: Access Developers discussion and problem solving > > Subject: Re: [AccessD] OT: Merry Christmas! > > Merry Christmas all (a day late). My excuse for being late is we're > celebrating Christmas with a mouse, duck and dog. We're at Disney World > making memories with the girls. > > Your friendly neighbourhood listmaster. > > Bryan > > On Dec 23, 2017 12:24 PM, "Gustav Brock" wrote: > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees > > Celsius which is unusual high. And it will not change before January. Oh > well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors.com > > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From darryl at whittleconsulting.com.au Wed Dec 27 22:57:39 2017 From: darryl at whittleconsulting.com.au (Darryl Collins) Date: Thu, 28 Dec 2017 04:57:39 +0000 Subject: [AccessD] OT: Merry Christmas! In-Reply-To: References: <042f01d37e68$91df5eb0$b59e1c10$@therareshop.com> Message-ID: Hat tip and kudos to said wife. Nice one. -----Original Message----- From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Bryan Carbonnell Sent: Wednesday, 27 December 2017 1:10 PM To: Access Developers discussion and problem solving Subject: Re: [AccessD] OT: Merry Christmas! Stupid busy. But we knew that going in. They closed Magic Kingdom to guests around 11 Christmas Day. They were at capacity. Thankfully we were at Hollywood Studios. Gotta love having a wife that can plan her way around crowds :) B On Dec 26, 2017 11:45 AM, "Jim Hale" wrote: > Cool. How crowded is it? > > J > > -----Original Message----- > From: AccessD [mailto:accessd-bounces at databaseadvisors.com] On Behalf > Of Bryan Carbonnell > Sent: Tuesday, December 26, 2017 8:45 AM > To: Access Developers discussion and problem solving > > Subject: Re: [AccessD] OT: Merry Christmas! > > Merry Christmas all (a day late). My excuse for being late is we're > celebrating Christmas with a mouse, duck and dog. We're at Disney > World making memories with the girls. > > Your friendly neighbourhood listmaster. > > Bryan > > On Dec 23, 2017 12:24 PM, "Gustav Brock" wrote: > > > Hi all > > > > A bit quiet here, but to the devoted collection of old farts still > > lurking: Merry Christmas from Denmark! > > > > There's no "Frosty the Snowman" here as we have about 10 degrees > > Celsius which is unusual high. And it will not change before > > January. Oh > well. > > > > /gustav > > -- > > AccessD mailing list > > AccessD at databaseadvisors.com > > http://databaseadvisors.com/mailman/listinfo/accessd > > Website: http://www.databaseadvisors.com > > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com From jwcolby at gmail.com Sat Dec 30 12:12:01 2017 From: jwcolby at gmail.com (John Colby) Date: Sat, 30 Dec 2017 13:12:01 -0500 Subject: [AccessD] Raspbian in a VM Message-ID: <2e1fdaeb-6f21-dcc3-67f9-b82f18107f22@Gmail.com> I installed Raspbian in a Virtual box on my Windows 10 desktop. Took about an hour start to finish. https://grantwinney.com/how-to-create-a-raspberry-pi-virtual-machine-vm-in-virtualbox/ I actually have several early Raspberry Pi machines, just need to find them, set up a little workstation keyboard / mouse / monitor for them etc.? Kinda short on space where I am now.? I had them running a couple of years ago.? Also a BeagleBone black and a couple of Odroids IIRC.? All in a box somewhere. -- John W. Colby From bensonforums at gmail.com Sat Dec 30 20:58:20 2017 From: bensonforums at gmail.com (Bill Benson) Date: Sat, 30 Dec 2017 21:58:20 -0500 Subject: [AccessD] Raspbian in a VM In-Reply-To: <2e1fdaeb-6f21-dcc3-67f9-b82f18107f22@Gmail.com> References: <2e1fdaeb-6f21-dcc3-67f9-b82f18107f22@Gmail.com> Message-ID: And this post belongs on Access - D because? :) On Dec 30, 2017 1:14 PM, "John Colby" wrote: > I installed Raspbian in a Virtual box on my Windows 10 desktop. Took about > an hour start to finish. > > https://grantwinney.com/how-to-create-a-raspberry-pi-virtual > -machine-vm-in-virtualbox/ > > I actually have several early Raspberry Pi machines, just need to find > them, set up a little workstation keyboard / mouse / monitor for them etc. > Kinda short on space where I am now. I had them running a couple of years > ago. Also a BeagleBone black and a couple of Odroids IIRC. All in a box > somewhere. > > -- > John W. Colby > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > From jwcolby at gmail.com Sat Dec 30 21:10:11 2017 From: jwcolby at gmail.com (John Colby) Date: Sat, 30 Dec 2017 22:10:11 -0500 Subject: [AccessD] Raspbian in a VM In-Reply-To: References: <2e1fdaeb-6f21-dcc3-67f9-b82f18107f22@Gmail.com> Message-ID: <34b2a288-885c-0f5f-081d-2d339de15591@Gmail.com> Because AccessD is such a hotbed of activity that I figured we needed a distraction? On 12/30/2017 9:58 PM, Bill Benson wrote: > And this post belongs on Access - D because? > > :) > > On Dec 30, 2017 1:14 PM, "John Colby" wrote: > >> I installed Raspbian in a Virtual box on my Windows 10 desktop. Took about >> an hour start to finish. >> >> https://grantwinney.com/how-to-create-a-raspberry-pi-virtual >> -machine-vm-in-virtualbox/ >> >> I actually have several early Raspberry Pi machines, just need to find >> them, set up a little workstation keyboard / mouse / monitor for them etc. >> Kinda short on space where I am now. I had them running a couple of years >> ago. Also a BeagleBone black and a couple of Odroids IIRC. All in a box >> somewhere. >> >> -- >> John W. Colby >> >> -- >> AccessD mailing list >> AccessD at databaseadvisors.com >> http://databaseadvisors.com/mailman/listinfo/accessd >> Website: http://www.databaseadvisors.com >> -- John W. Colby From jwcolby at gmail.com Sat Dec 30 21:40:11 2017 From: jwcolby at gmail.com (John Colby) Date: Sat, 30 Dec 2017 22:40:11 -0500 Subject: [AccessD] Raspbian in a VM In-Reply-To: References: <2e1fdaeb-6f21-dcc3-67f9-b82f18107f22@Gmail.com> Message-ID: I am about to launch into a rebuild of several saxophones. Saxophones are very complicated mechanically, and adjusting them is done by felts and corks to regulate how far the pad cups move (and to dampen clicking and clacking)? as keys open and close the tone holes.? What I want to do on one of them is strip off all of the complicated keys and hinges and tubes, and replace all that crap with electro-mechanically driven actuators opening and closing the pad cups when keys are pressed.? Driven by a Raspberry Pi or similar SBC.? The result would be a real saxophone, but "fly by wire" instead of purely mechanical.? Adolph Sax will be turning over in his grave I am sure. I have an early 50s Martin Indiana that I bought on Ebay for $200 that is my intended guinea pig. As I mentioned, there have been thousands, perhaps tens of thousands (I haven't really counted) of Access related emails just in the month of December alone, and I just decided that the list could use a break from the tedium of all this non-stop Access drivel. ;) On 12/30/2017 9:58 PM, Bill Benson wrote: > And this post belongs on Access - D because? > > :) > > On Dec 30, 2017 1:14 PM, "John Colby" wrote: > >> I installed Raspbian in a Virtual box on my Windows 10 desktop. Took about >> an hour start to finish. >> >> https://grantwinney.com/how-to-create-a-raspberry-pi-virtual >> -machine-vm-in-virtualbox/ >> >> I actually have several early Raspberry Pi machines, just need to find >> them, set up a little workstation keyboard / mouse / monitor for them etc. >> Kinda short on space where I am now. I had them running a couple of years >> ago. Also a BeagleBone black and a couple of Odroids IIRC. All in a box >> somewhere. >> >> -- >> John W. Colby >> >> -- >> AccessD mailing list >> AccessD at databaseadvisors.com >> http://databaseadvisors.com/mailman/listinfo/accessd >> Website: http://www.databaseadvisors.com >> -- John W. Colby From fuller.artful at gmail.com Sun Dec 31 06:57:34 2017 From: fuller.artful at gmail.com (Arthur Fuller) Date: Sun, 31 Dec 2017 07:57:34 -0500 Subject: [AccessD] Raspbian in a VM In-Reply-To: References: <2e1fdaeb-6f21-dcc3-67f9-b82f18107f22@Gmail.com> Message-ID: To paraphrase Jared Lanier, musical instruments rank high in terms of complexity of construction. Saxes are complex, to be sure, but violins are deceptively simple. Adolphe Sax became famous for the saxophone, but also invented several other instruments. A. On Sat, Dec 30, 2017 at 10:40 PM, John Colby wrote: > I am about to launch into a rebuild of several saxophones. Saxophones are > very complicated mechanically, and adjusting them is done by felts and > corks to regulate how far the pad cups move (and to dampen clicking and > clacking) as keys open and close the tone holes. What I want to do on one > of them is strip off all of the complicated keys and hinges and tubes, and > replace all that crap with electro-mechanically driven actuators opening > and closing the pad cups when keys are pressed. Driven by a Raspberry Pi > or similar SBC. The result would be a real saxophone, but "fly by wire" > instead of purely mechanical. Adolph Sax will be turning over in his grave > I am sure. I have an early 50s Martin Indiana that I bought on Ebay for > $200 that is my intended guinea pig. > > As I mentioned, there have been thousands, perhaps tens of thousands (I > haven't really counted) of Access related emails just in the month of > December alone, and I just decided that the list could use a break from the > tedium of all this non-stop Access drivel. > > ;) > > On 12/30/2017 9:58 PM, Bill Benson wrote: > >> And this post belongs on Access - D because? >> >> :) >> >> On Dec 30, 2017 1:14 PM, "John Colby" wrote: >> >> I installed Raspbian in a Virtual box on my Windows 10 desktop. Took about >>> an hour start to finish. >>> >>> https://grantwinney.com/how-to-create-a-raspberry-pi-virtual >>> -machine-vm-in-virtualbox/ >>> >>> I actually have several early Raspberry Pi machines, just need to find >>> them, set up a little workstation keyboard / mouse / monitor for them >>> etc. >>> Kinda short on space where I am now. I had them running a couple of >>> years >>> ago. Also a BeagleBone black and a couple of Odroids IIRC. All in a box >>> somewhere. >>> >>> -- >>> John W. Colby >>> >>> -- >>> AccessD mailing list >>> AccessD at databaseadvisors.com >>> http://databaseadvisors.com/mailman/listinfo/accessd >>> Website: http://www.databaseadvisors.com >>> >>> > -- > John W. Colby > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com > -- Arthur