Jumat, 01 Juli 2011

[belajar-access] File - Tata Tertib dan Aturan.txt

 


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

__._,_.___
Recent Activity:
SPAM IS PROHIBITED
.

__,_._,___

[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...
> > >
> > >
> >
>

__._,_.___
Recent Activity:
.

__,_._,___

[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>


__._,_.___
Recent Activity:
.

__,_._,___

[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...
> >
> >
>

__._,_.___
Recent Activity:
.

__,_._,___

[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,

__._,_.___
Recent Activity:
SPAM IS PROHIBITED
.

__,_._,___

Re: [belajar-access] Eksperimen Access Vs Mysql

 

Terima kasih Mas Hari yanto...
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:

From: Aksan Kurdin <aksan.kurdin@gmail.com>
Subject: Re: [belajar-access] Eksperimen Access Vs Mysql
To: belajar-access@yahoogroups.com
Date: Friday, 1 July, 2011, 9:47 AM

 
Jangan lupa pastikan untuk menuju ke record terakhir.
Kecepatan buka access di form sebenarnya asynchronized, artinya, data belum habis dibaca / ditarik dari database, access sudah menampilkannya ke form, sementara itu access tetap melakukan pembacaan database secara background.
Coba kita langsung menuju ke record terakhir (tombol move last dari navigation button, atau metode movelast), akan terasa waktu sebenarnya access membutuhkan untuk loading data seluruhnya.

aksan kurdin




On 7/1/2011 8:22 AM, Hendra Agestha Hamid wrote:
 

Dear warga Milis,,,

 

Bermula dari obrolan saya dari Mas Aksan untuk melakukan eksperimen sendiri, akhirnya singkat kata saya mendapatkan ide dari situ utk melakukan eksperimen2 lain (Thanx Mas Aksan… )

 

Saya buat suatu BE (db2.mdb) dgn  mengambil Northwind sbg sumber datanya, dengan bantuan Querry Append akhirnya saya bisa membuat data yg banyak sekali pada sebuah Table Order, hingga mencapai 215000 lebih record, Untuk meringkas cerita saya, terciptalah 88 Tabel Northwind di BE db2.mdb. Saya namakan BE ini BE1 sehingga :

 

BE1 = db2.mdb (berisi 88 Tabel, pada salah satu Tabel order mempunyai 215040 record)

 

Kemudian BE1 (db2.mdb) tsb saya transfer ke MySql, singkatnya sehingga menjadi :

 

BE2 = db2_MySql (adalah DB MySql yang berisi 88 Tabel hasil ekspor db2.mdb, pada salah satu Tabel order mempunyai 215040 record)

 

kemudian saya buat 2 FE utk melink masing2 BE diatas, yaitu :

 

FE1 =  NWLink_Mdb.mdb.(berisi 88 Link Tabel dari BE1) --- Link Tabel to mdb type.

FE2 = NWLink_MySql.mdb (berisi 88 Link Tabel dari BE2) --- Link Tabel to MySql type (ODBC)

 

pada masing2 FE saya buat 2 Form, yg pertama Form "Order3" yaitu untuk menampung data pada Tabel Order3 yang berisi 215040 record.

Kemudian Form kedua yaitu Form "Query3" yang menampung data dari Query3 yaitu hasil SELECT tabel2 : Order3, Customer3, Employee3, Shipper3 sehingga akhirnya pada Query3 tsb berisi 215040 record dan 45 Field…(pokoknya saya coba se"brutal" mungkin deh …).

 

Berikut hasil eksperimen2 saya ( LT = Link Tabel to…)

1. Experimen Besar File FE :

FE1 (LT to mdb), besar file 400 KB, sedangkan FE2 (LT to Mysql) besar file 2,39 MB atau 6 kali FE1.

 

2. Experimen kecepatan buka masing2 FE :

Saya gak punya stopwatch, tapi percayalah… FE1 (LT to Mdb) lebih cepat (berkali2 percobaan).

Hanya saja disini tdk ada perbedaan mencolok, pokoknya tetep sama2 cepat Cuma FE1 lebih cepat (sekejap malah).

Hal yg menarik dari hasil eksperimen saya ini adalah saya betul yakin sekarang Link Tabel hanya bersifat koneksi tidak meload data dan tidak membuat Tabel temporary pada waktu File dibuka. Jadi dengan sangat bahagia saya berpendapat Link Tabel oke punya deh…(mudah lagi … hehehe).

 

3.Eksperimen kecepatan buka Form yang berisi record2:

Langsung saja saya pada bagian yg terbrutal pada percobaan ini yaitu membuka Form "Query3" pada masing2 FE. (Query3 sbg Source Form "Query3" berisi 215040 record dan 45 Field), hasilnya :

Form "Query3" di FE1 (LT to mdb) kecepatan : sekejap ! (tdk ada waktu tunggu)

Form "Query3" di FE2 (LT to Mysql) kecepatan ….. ??? komputer hang setiap kali coba dibuka..!

 

Dari ketiga eksperimen saya diatas mungkin tidak salah kalo saya berpendapat FE Access lebih baik gunakan BE Access juga, entah kalo FE lain.

Mohon para master2 bisa memberi comment atas eksperimen2 saya ini, terutama dimana letak kekurangan eksperimen saya,,,sehingga saya mungkin salah mengambil kesimpulan.

Masalah model transfer data tidak saya lakukan disini, Mas Aksan sudah melakukannya dan bisa dilihat hasilnya pada email2 sblm ini…(kalo hal ini memang Access kalah), kelemahannya adalah Access mengirim semua data baru difilter di FE.

Untuk rekan2 bisa mencoba2 sendiri, ini saya sertakan semua file2 yg saya buat kecuali BE2…mohon di semuanya extract di MyDocument\Downloads


Note : Please Master bisa comment demi hasil kesimpulan yang benar setidaknya buat saya ...

 

Regards

Hendra

 

 

 

 

 

 

 

Saya kesulitan menuliskan eksperiman saya disini , jadi saya sertakan saja BE1 dan FE1 I attachment, saya yakin rekan2 akan lebih mengerti dari pada saya jelaskan disini.

 


__._,_.___
Recent Activity:
SPAM IS PROHIBITED
.

__,_._,___

[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.
MARKETPLACE

Stay on top of your group activity without leaving the page you're on - Get the Yahoo! Toolbar now.

.

__,_._,___