From ssharkins at gmail.com Mon Mar 4 11:56:52 2019 From: ssharkins at gmail.com (Susan Harkins) Date: Mon, 4 Mar 2019 12:56:52 -0500 Subject: [dba-Tech] Office 64-bit and ActiveX controls Message-ID: <00d301d4d2b3$a6acd2f0$f40678d0$@gmail.com> Does anyone know if Office 64-bit version can handle ActiveX controls yet? I've done a bit a research and not learning anything new. Susan H. From m.i.davis at verizon.net Mon Mar 4 19:27:17 2019 From: m.i.davis at verizon.net (Mary Davis) Date: Tue, 5 Mar 2019 01:27:17 +0000 (UTC) Subject: [dba-Tech] Access query References: <218247909.3575376.1551749237134.ref@mail.yahoo.com> Message-ID: <218247909.3575376.1551749237134@mail.yahoo.com> I hope I'm posting my question in the right place. I'm trying to use a query to match 2 tables: accounts and contacts.The account ID is case sensitive.? (it comes from SalesForce.) I thought I found a way to add criteria to a simple query to look for case sensitive ID matches.? But I'm not able to figure out how to run this.Is this possible?? If so, can you provide me some instructions??? This is what I came up with. SELECT [I&P-44-4-accounts].[Account ID], [I&P-44-4-contacts].[Account ID]FROM [I&P-44-4-accounts] INNER JOIN [I&P-44-4-contacts] ON [I&P-44-4-accounts].[Account ID] = [I&P-44-4-contacts].[Account ID]WHERE (((StrComp([I&P-44-4-accounts.account id],[I&P-44-4-contacts].[account id]))=0)); thanks very much for your help. MaryWilmington Delaware From stuart at lexacorp.com.pg Mon Mar 4 23:41:52 2019 From: stuart at lexacorp.com.pg (Stuart McLachlan) Date: Tue, 05 Mar 2019 15:41:52 +1000 Subject: [dba-Tech] Access query In-Reply-To: <218247909.3575376.1551749237134@mail.yahoo.com> References: <218247909.3575376.1551749237134.ref@mail.yahoo.com>, <218247909.3575376.1551749237134@mail.yahoo.com> Message-ID: <5C7E0C20.21139.24B69F7A@stuart.lexacorp.com.pg> The inner join is taking effect before the StrComp() so you are not getting any matches. Try removing the inner join. SELECT [I&P-44-4-accounts].[Account ID], [I&P-44-4-contacts].[Account ID] FROM [I&P-44-4-accounts] ,[I&P-44-4-contacts] WHERE (((StrComp([I&P-44-4-accounts.account id],[I&P-44-4-contacts].[account id]))=0)); On 5 Mar 2019 at 1:27, Mary Davis wrote: > I hope I'm posting my question in the right place. > I'm trying to use a query to match 2 tables: accounts and contacts.The > account ID is case sensitive.? (it comes from SalesForce.) I thought > I found a way to add criteria to a simple query to look for case > sensitive ID matches.? But I'm not able to figure out how to run > this.Is this possible?? If so, can you provide me some > instructions??? This is what I came up with. SELECT > [I&P-44-4-accounts].[Account ID], [I&P-44-4-contacts].[Account ID]FROM > [I&P-44-4-accounts] INNER JOIN [I&P-44-4-contacts] ON > [I&P-44-4-accounts].[Account ID] = [I&P-44-4-contacts].[Account > ID]WHERE (((StrComp([I&P-44-4-accounts.account > id],[I&P-44-4-contacts].[account id]))=0)); > > thanks very much for your help. > MaryWilmington Delaware > _______________________________________________ > dba-Tech mailing list > dba-Tech at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/dba-tech > Website: http://www.databaseadvisors.com From rockysmolin at bchacc.com Tue Mar 5 10:28:01 2019 From: rockysmolin at bchacc.com (Rocky Smolin) Date: Tue, 5 Mar 2019 08:28:01 -0800 Subject: [dba-Tech] Access query In-Reply-To: <218247909.3575376.1551749237134@mail.yahoo.com> References: <218247909.3575376.1551749237134.ref@mail.yahoo.com> <218247909.3575376.1551749237134@mail.yahoo.com> Message-ID: <00c701d4d370$67359630$35a0c290$@bchacc.com> Mary: Here's a couple of links that address your problem of creating a case sensitive query: https://www.oreilly.com/library/view/access-cookbook/0596000847/ch01s14.html https://stackoverflow.com/questions/10046627/how-to-write-case-sensitive-query-for-ms-access If this doesn't get you where you want to go, write back and we'll think of something else. :) HTH Rocky Smolin Beach Access Software 760-683-5777 www.bchacc.com www.e-z-mrp.com Skype: rocky.smolin -----Original Message----- From: dba-Tech [mailto:dba-tech-bounces at databaseadvisors.com] On Behalf Of Mary Davis Sent: Monday, March 04, 2019 5:27 PM To: dba-tech at databaseadvisors.com Subject: [dba-Tech] Access query I hope I'm posting my question in the right place. I'm trying to use a query to match 2 tables: accounts and contacts.The account ID is case sensitive. (it comes from SalesForce.) I thought I found a way to add criteria to a simple query to look for case sensitive ID matches. But I'm not able to figure out how to run this.Is this possible? If so, can you provide me some instructions? This is what I came up with. SELECT [I&P-44-4-accounts].[Account ID], [I&P-44-4-contacts].[Account ID]FROM [I&P-44-4-accounts] INNER JOIN [I&P-44-4-contacts] ON [I&P-44-4-accounts].[Account ID] = [I&P-44-4-contacts].[Account ID]WHERE (((StrComp([I&P-44-4-accounts.account id],[I&P-44-4-contacts].[account id]))=0)); thanks very much for your help. MaryWilmington Delaware _______________________________________________ dba-Tech mailing list dba-Tech at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/dba-tech Website: http://www.databaseadvisors.com From fuller.artful at gmail.com Wed Mar 13 19:47:47 2019 From: fuller.artful at gmail.com (Arthur Fuller) Date: Wed, 13 Mar 2019 20:47:47 -0400 Subject: [dba-Tech] MediaMonkey Message-ID: Slowly but surely, I crawl my way to comfort in Linux.I am determined. Is there a Linux equivalent to MediaMonkey? -- Arthur From accessd at shaw.ca Mon Mar 18 11:06:09 2019 From: accessd at shaw.ca (Jim Lawrence) Date: Mon, 18 Mar 2019 10:06:09 -0600 (MDT) Subject: [dba-Tech] Encrypted safe document transfers In-Reply-To: <19813703.117483006.1548663006111.JavaMail.zimbra@shaw.ca> References: <19813703.117483006.1548663006111.JavaMail.zimbra@shaw.ca> Message-ID: <652927931.64829147.1552925169391.JavaMail.zimbra@shaw.ca> Firefox has introduced a free end to end encrypted file share application: https://thehackernews.com/2019/03/firefox-send-encrypted-file-share.html The app comes with a couple OS code models that can be embedded within your own websites. Jim