Tata tertib dan peraturan
Mailing List: belajar-access@yahoogroups.com
1. Mailing list ini membahas mengenai pemrograman Microsoft Access.
2. Tidak diperkenankan mem-posting topik yang tidak ada kaitannya sama sekali dengan pemrograman MS Access, peluang kerja atau tawaran kerja sama dengan keahlian di bidang MS Access, atau pengajaran/kursus MS Acces. Pelanggaran terhadap aturan ini akan di-ban dari keanggotaan milis ini.
3. Mohon berdiskusi dengan baik, dengan semangat membangun, demi kemajuan kita bersama. Hindarilah perbantahan (flame) yang bisa menjadi pertengkaran yang tidak perlu.
4 Hindari reply permintaan one-liner seperti 'saya minta juga dong', 'saya setuju', dan lain-lain yang tidak perlu.
5. Sedapat mungkin memberikan data-data yang lengkap dalam mengajukan suatu masalah untuk memudahkan rekan-rekan sesama member mengidentifikasi dan mencarikan solusi, termasuk memberikan subject yang sesuai dengan isi email, tidak dengan kata-kata seperti "tologing dong", "pusing...", "ada yang bisa bantu..", dll.
Moderator
Jumat, 01 Juli 2011
[belajar-access] File - Tata Tertib dan Aturan.txt
[MS_AccessPros] Re: How to make my report
The file name is "Fire Service Pro"
--- In MS_Access_Professionals@yahoogroups.com, "rivera_vazquez_edgar" <xtintores@...> wrote:
>
> Hey Crystal...
>
> I'm not too shure as to how to proceed with your advice. I don't understand what you mean by going to the sources. I'll post a sample of the db in asistance needed so you can see what I have. That code you gave me kinda makes scence but I don't know where to put it or what to do with it...
>
> Edgar
>
>
> --- In MS_Access_Professionals@yahoogroups.com, Crystal <strive4peace2008@> wrote:
> >
> > Hi Edgar,
> >
> > it is nice to hear such enthusiasm! Rather than building on queries that are already there... go to the sources. I say that since I am not familiar with your database ... it is just too easy to make too many queries! Later on, after the development is to a plateau (never done ;), you can optimize the queries you are using.
> >
> > try something like this:
> >
> > SELECT fieldname1, fieldname2, fieldname3, ServiceDate
> > FROM tblInventory
> > WHERE
> > Month(tblInventorytblInventory ServiceDate) = 7
> > AND Year(tblInventory.ServiceDate) = 2011
> > AND CustID IN (SELECT CustID FROM Addresses WHERE City = "San Juan")
> > AND CustID IN (SELECT CustID FROM Customers WHERE IsActive=True)
> >
> > WHERE
> > - ServiceDate is the fieldname in tblInventory that you are filtering on
> > - City is the city field in your Addresses table
> > - IsActive is in your Customers table.
> > - IsActive=True represents the logic to get active customers
> >
> > Once you get the query working, add other tables to the design to get other information like customer name
> >
> > ~~~
> >
> > this is not the most efficient way ... the master of SQL is John so if he gives you something different, I'd go with it ;)
> >
> >
> > Warm Regards,
> > Crystal
> >
> > Access Basics by Crystal (Bill Mosca's site)
> > http://thatlldoit.com
> > Free 100-page book that covers essentials in Access
> >
> > *
> > (: have an awesome day :)
> > *
> >
> >
> > --- On Thu, 6/30/11, rivera_vazquez_edgar wrote:
> >
> >
> > > Hello again to everyone!
> > >
> > > I've taken off like a rocket with this database, and
> > > there's no stopping me! That is, if you guys give your usual
> > > support...
> > >
> > > I need to make my report. I call it "The Rute" because it
> > > should be made up of all the customers that have a service
> > > due for the current month in a given city, so I know who to
> > > visit. So I need a single report for every city I choose to
> > > print. But the thing is, I need to figure out how to
> > > structure the report so I know what queries to make.
> > >
> > > The idea I have is the following, please correct me:
> > >
> > > Make a report using qryActiveCustomers with a subform using
> > > tblAddress to show the address for each active customer and
> > > a sub-subform for the inventory of that particular
> > > address. The thing is, the tblInventory is the one
> > > that has the service due date in the field "NxtServDate".
> > > How would I filter it so I only get, for example all the
> > > customers in the city of San Juan with a next service date
> > > of July? The parent form would have to be filtered by the
> > > grandchild form, is this posible? If so, How?
> > >
> > > I'm thinking of using a user input in the qryActiveCustomer
> > > to ask for the City name...
> > >
> > >
> >
>
[MS_AccessPros] New file uploaded to MS_Access_Professionals
Hello,
This email message is a notification to let you know that
a file has been uploaded to the Files area of the MS_Access_Professionals
group.
File : /2_AssistanceNeeded/Fire Service Pro.accdb
Uploaded by : rivera_vazquez_edgar <xtintores@yahoo.com>
Description : Edgar's database
You can access this file at the URL:
http://groups.yahoo.com/group/MS_Access_Professionals/files/2_AssistanceNeeded/Fire%20Service%20Pro.accdb
To learn more about file sharing for your group, please visit:
http://help.yahoo.com/l/us/yahoo/groups/original/members/web/index.html
Regards,
rivera_vazquez_edgar <xtintores@yahoo.com>
[MS_AccessPros] Re: How to make my report
Hey Crystal...
I'm not too shure as to how to proceed with your advice. I don't understand what you mean by going to the sources. I'll post a sample of the db in asistance needed so you can see what I have. That code you gave me kinda makes scence but I don't know where to put it or what to do with it...
Edgar
--- In MS_Access_Professionals@yahoogroups.com, Crystal <strive4peace2008@...> wrote:
>
> Hi Edgar,
>
> it is nice to hear such enthusiasm! Rather than building on queries that are already there... go to the sources. I say that since I am not familiar with your database ... it is just too easy to make too many queries! Later on, after the development is to a plateau (never done ;), you can optimize the queries you are using.
>
> try something like this:
>
> SELECT fieldname1, fieldname2, fieldname3, ServiceDate
> FROM tblInventory
> WHERE
> Month(tblInventorytblInventory ServiceDate) = 7
> AND Year(tblInventory.ServiceDate) = 2011
> AND CustID IN (SELECT CustID FROM Addresses WHERE City = "San Juan")
> AND CustID IN (SELECT CustID FROM Customers WHERE IsActive=True)
>
> WHERE
> - ServiceDate is the fieldname in tblInventory that you are filtering on
> - City is the city field in your Addresses table
> - IsActive is in your Customers table.
> - IsActive=True represents the logic to get active customers
>
> Once you get the query working, add other tables to the design to get other information like customer name
>
> ~~~
>
> this is not the most efficient way ... the master of SQL is John so if he gives you something different, I'd go with it ;)
>
>
> Warm Regards,
> Crystal
>
> Access Basics by Crystal (Bill Mosca's site)
> http://thatlldoit.com
> Free 100-page book that covers essentials in Access
>
> *
> (: have an awesome day :)
> *
>
>
> --- On Thu, 6/30/11, rivera_vazquez_edgar wrote:
>
>
> > Hello again to everyone!
> >
> > I've taken off like a rocket with this database, and
> > there's no stopping me! That is, if you guys give your usual
> > support...
> >
> > I need to make my report. I call it "The Rute" because it
> > should be made up of all the customers that have a service
> > due for the current month in a given city, so I know who to
> > visit. So I need a single report for every city I choose to
> > print. But the thing is, I need to figure out how to
> > structure the report so I know what queries to make.
> >
> > The idea I have is the following, please correct me:
> >
> > Make a report using qryActiveCustomers with a subform using
> > tblAddress to show the address for each active customer and
> > a sub-subform for the inventory of that particular
> > address. The thing is, the tblInventory is the one
> > that has the service due date in the field "NxtServDate".
> > How would I filter it so I only get, for example all the
> > customers in the city of San Juan with a next service date
> > of July? The parent form would have to be filtered by the
> > grandchild form, is this posible? If so, How?
> >
> > I'm thinking of using a user input in the qryActiveCustomer
> > to ask for the City name...
> >
> >
>
[belajar-access] menampilkan data di form
Dear Master Access
Assallamu'alaikum wr.wb
mohon bantuan, bagaimana coding vba untuk menampilkan data di form dari tabel/query
terima kasih sebelum dan sesudahnya,
Re: [belajar-access] Eksperimen Access Vs Mysql
Untuk itulah mas saya bener2 pengen bimbingan dari para senior, dan juga rekan2 lain..
Saya coba attach-kan file2 yg saya pakai eksperimen dgn maksud sebanyak mungkin yang mencoba dan kemudian
mau share hasilnya ke milis, mungkin hasil yang saya dapat salah.
Mungkin betul mas seharusnya Access nya juga di ODBC kan, cuma saya pikir kenapa harus di ODBC kalau langsung bisa.
Entah dimana letak salah eksperimen saya ini, saya juga heran mas hasilnya seperti itu, terutama pada hasil eksperimen ke 3
membuka form, form yang berasal dari Link Mysql tidak bisa dibuka karena laptop hang, sedangkan yang link mdb gak ada masalah
sama sekali Terus move last juga cepat di link mdb. Kemudian besar file FE mencolok sekali, yang Link MySql bisa 6 kali besar FE
yang link mdb.
Mohon bimbingannya mas Hari.
Regards
Hendra
From: hari yanto <har_i20002000@yahoo.com>
To: belajar-access@yahoogroups.com
Sent: Fri, July 1, 2011 1:19:14 PM
Subject: Re: [belajar-access] Eksperimen Access Vs Mysql
Cara membandingkannya mungkin harus dilihat lagi. Kalau pakai ODBC untuk link ke database MySql, Ms Accespun harus dilakukan dengan cara serupa. Pengalaman saya, kok berbeda ya. Ms Acces dan MySql saya taruh di server. Koneksi pakai ODBC. Hasilnya, akses ke database MySql jauh lebih cepat dibandingkan Ms Access. Lebih-lebih kalau melakukan penghitungan. Hariyanto (Surabaya) --- On Fri, 1/7/11, Aksan Kurdin <aksan.kurdin@gmail.com> wrote:
|
[AccessDevelopers] Re: Finding outlook email items and selectively forwarding them
Mike,
I suppose you mean the Private Sub cmdScan_Click() in frmTest calls the GetEmailSpecificsFromOutlook sub but I see it run to completion, where's the problem?
Giorgio
--- In AccessDevelopers@yahoogroups.com, Mike Wolfstone <mikewolfstone@...> wrote:
>
> Giorgio,
> The code to email forward is in the .bas moduule.
> The code is not complete. I build my automation apps so I can test them along
> the way and then clean out the chaff.
> The Scan (sub) logic calls the .bas module and that's where I have the problem.
> Mike
>
>
>
>
> ________________________________
> From: GiorgioR <giorgio_rovelli@...>
> To: AccessDevelopers@yahoogroups.com
> Sent: Thu, June 30, 2011 6:00:32 AM
> Subject: [AccessDevelopers] Re: Finding outlook email items and selectively
> forwarding them
>
> Â
> Hi Mike, have you written the code to send the chosen item anywhere in the VBA
> code or do you need that?
> Giorgio
>
> --- In AccessDevelopers@yahoogroups.com, "mikewolfstone" <mikewolfstone@>
> wrote:
> >
> > I uploaded the file. It is named FindTeamCust.mdb with a tag of
> >ForwardEmailSelectively.
> > Thanks for any help you can provide.
> >
> > --- In AccessDevelopers@yahoogroups.com, "giorgio_rovelli" <giorgio_rovelli@>
> >wrote:
> > >
> > > Hi, can you upload the mdb/accdb to the Files section?
> > >
> > > --- In AccessDevelopers@yahoogroups.com, "mikewolfstone" <mikewolfstone@>
> >wrote:
> > > >
> > > > I have an Access program that reads the outlook inbox and extracts certain
> >data (subject, objectID, received date) and builds a list of those items. It
> >then selects specific conditions in the subject and further selects those for
> >email forwarding. I can get to that point and identify the item to forward, but
> >the Outlook API doesn't fit the documentation. I need to send (forward) an inbox
> >item to a new email address. Any thoughts?
> > > > The error I get on the activeinspector.currentitem.forward statement is
> >"Method is not supported by the object"
> > > >
> > >
> >
>
Please zip all files prior to uploading to Files section.