Posts Tagged ‘applications’

Database Tips as well as Techniques

Databases have been unequivocally absolute collection used to find, sort, reformat, manage, send as well as do all kinds of alternative things with interpretation upon your computer. The some-more interpretation we have a some-more we need a database to entrance it quickly, though which creates a interpretation harder to find. So, we built a apparatus which lets a user ¡§drill down¡¨ to interpretation unequivocally quick in a form by only clicking upon a margin which has a arrange of interpretation which he wants to find. Lets contend we have a patron database with thousands of annals from business all over a nation as well as we need to find any a single innate in Jun in Georgia with a final name of Smith to do a promotion. Quick how do we find which data? With this apparatus we can find it with 3 clicks of your mouse! Take this jot down as well as have it yours to emanate unequivocally absolute forms for your user applications.

Create a Drill Down Form

Create a form which lets we cavalcade down to a interpretation we instruct to see by only clicking upon a margin in a form. This e.g. is built for/with Access 2000. It requires which we have a assuage turn of knowledge with Access 2000 as well as formulating Access Applications.

The Drill Down form allows we to quick arrange down to report which we instruct to see. In this pattern e.g. we can click upon a county name as well as it will arrange a list for which county. If we click upon Douglass in a county mainstay a form will filter as well as arrange as well as only uncover we any patron which lives in Douglass county. If we subsequently stand in click upon Douglass a form will un-apply a filter as well as reshow all counties. It is a unequivocally quick approach to cavalcade down to specific interpretation as well as adds a absolute form to any focus which your users will adore to use.

You can set up as most or as couple of columns as we instruct to be active for classification as well as filtering. In this e.g. we have set up a Firstname, City, County as well as DOB columns to cavalcade down as we select. The filter is additionally cumulative, so if we name some-more than a single object for filtering afterwards we go upon to cavalcade down until we get to a single record.

The mainstay headings additionally have been used to perform an Ascending arrange formed upon a interpretation in their particular columns. So, by clicking upon a City label, a interpretation would arrange alphabetically upon a city names.

Try it as well as see. You as well as your users will find it a unequivocally absolute further to any application.

Create a Module as well as name it DDFMod afterwards pass in or duplicate these lines in to a module.

Option Compare Database Public DDFFname As String Public DDFLname As String Public DDFSort As String Public DDFCity As String Public DDFStreet As String Public DDFState As String Public DDFCounty As String Public DDFDate As String

Public Function GetDDFSort() As String GetDDFSort = DDFSort End Function

Public Function GetDDFCity() As String GetDDFCity = DDFCity End Function

Public Function GetDDFStreet() As String GetDDFStreet = DDFStreet End Function

Public Function GetDDFCounty() As String GetDDFCounty = DDFCounty End Function

Public Function GetDDFState() As String GetDDFState = DDFState End Function

Public Function GetDDFdate() As String GetDDFdate = DDFDate End Function

Public Function GetDDFFname() As String GetDDFFname = DDFFname End Function

Public Function GetDDFLname() As String GetDDFLname = DDFLname End Function

Next Create a Client list as well as Name a brand brand brand new list patron

Next Create a Query (you can do this by duplicating a following sql in to a question engineer in Access.

Create a brand brand brand new question as well as perspective it in SQL View. Then cut as well as pulp a following sql in to a form. Then save a question as DDFExample.

You can arrange following SQL in to a SQL perspective in Access or improved nonetheless cut as well as pulp it. If we afterwards switch behind to pattern perspective we will see a question in a form shown above.

SELECT client.Fname, client.Lname, client.Street, client.City, client.St, client.Zip, client.county, client.Phone, client.DoB, IIf(GetDDFFname()=”ALL”,”ALL”,[fname]) AS DDFFname, IIf(GetDDFLname()=”ALL”,”ALL”,[Lname]) AS DDFLname, IIf(GetDDFCity()=”ALL”,”ALL”,[City]) AS DDFCity, IIf(GetDDFdate()=”ALL”,”ALL”,Str([DOB])) AS DDFDate, IIf(GetDDFState()=”ALL”,”ALL”,[St]) AS DDFState, IIf(GetDDFCounty()=”ALL”,”ALL”,[County]) AS DDFCounty, IIf(getddfsort()=”city”,[city],IIf(getddfsort()=”county”,[county],[fname])) AS arrange FROM patron WHERE (((IIf(GetDDFFname()=”ALL”,”ALL”,[fname]))=GetDDFFname()) AND ((IIf(GetDDFLname()=”ALL”,”ALL”,[Lname]))=GetDDFLname()) AND ((IIf(GetDDFCity()=”ALL”,”ALL”,[City]))=GetDDFCity()) AND ((IIf(GetDDFdate()=”ALL”,”ALL”,Str([DOB])))=GetDDFDate()) AND ((IIf(GetDDFState()=”ALL”,”ALL”,[St]))=GetDDFState()) AND ((IIf(GetDDFCounty()=”ALL”,”ALL”,[County]))=GetDDFCounty())) ORDER BY IIf(getddfsort()=”city”,[city],IIf(getddfsort()=”county”,[county],[fname]));

Next Create a Form

Use a DDFExample Query we only tangible as a interpretation source for this form.

In Design View Lay your form out as below.

The following have been a tag names as shown upon a Other Tab upon a properties form. from left to right upon a upon top of form.

namelabel, Lnamelabel, Streetlabel, Citylabel, Countylabel, Doblabel. phonelabel

Name your form as well as save it.

Form Code

Create a following VB formula for any a particular controls upon a form. Again we can cut as well as pulp a subsequent territory right in to your form in pattern mode.

Option Compare Database

Private Sub county_click() DDFCounty = county DoCmd.Requery End Sub

Private Sub county_dblclick(Cancel As Integer) DDFCounty = “All” DoCmd.Requery End Sub

Private Sub clientname_click() DDFFname = ClientName DoCmd.Requery End Sub

Private Sub clientname_dblclick(Cancel As Integer) DDFFname = “ALL” DoCmd.Requery End Sub

Private Sub City_click() DDFCity = City DoCmd.Requery End Sub

Private Sub City_dblclick(Cancel As Integer) DDFCity = “ALL” DoCmd.Requery End Sub

Private Sub dob_click() DDFDate = Str(DoB) DoCmd.Requery End Sub

Private Sub dob_dblclick(Cancel As Integer) DDFDate = “ALL” DoCmd.Requery End Sub

Private Sub Form_Open(Cancel As Integer) DDFSort = “fname” DDFFname = “ALL” DDFLname = “ALL” DDFCity = “ALL” DDFCounty = “ALL” DDFDate = “ALL” DDFState = “ALL” DoCmd.Requery End Sub

Private Sub Lname_Click() DDFLname = Lname DoCmd.Requery End Sub

Private Sub Lname_DblClick(Cancel As Integer) DDFLname = “ALL” DoCmd.Requery End Sub

Private Sub namelabel_click() DDFSort = “Fname” DoCmd.Requery End Sub

Private Sub closeqb_click() DoCmd.Close End Sub

Private Sub Citylabel_click() DDFSort = “City” DoCmd.Requery End Sub

Private Sub countylabel_click() DDFSort = “CCY” DoCmd.Requery End Sub

Private Sub ReqQB_click() DDFSort = “fname” DDFFname = “ALL” DDFLname = “ALL” DDFCity = “ALL” DDFCounty = “ALL” DDFDate = “ALL” DDFState = “ALL” DoCmd.Requery End Sub

This should do it. Seems similar to a lot of work for such a reduced form, though a some-more interpretation which we have a some-more absolute this apparatus becomes. We have users classification by some-more than 4000 patron demographic interpretation annals regulating this apparatus as well as they adore it.

What could BioMation Systems do for you?

For a some-more minute essay together with graphics see www.biomationsystems.com.

You can additionally download a some-more absolute as well as easy to make make use of of chronicle of a cavalcade down apparatus now. The brand brand brand new chronicle eliminates a lot of a setup needed. Find it by seeking for a Drill Down Designer download page during possibly of a sites listed below.

Thank we for your seductiveness as well as we goal we find this essay utilitarian in your efforts to rise absolute applications for your users.

BioMation Systems, Inc is an Atlanta, Georgia formed consulting association which develops law database solutions which enlarge a potency of businesses around a world. BioMation’s operation of services can be found during www.biomationsystems.com

You can find assistance for Access at

http://www.accessdatabasehelp.com

http://www.accesshelpebook.com

http://www.biomationsystems.com/AccessTips.htm

Contact: jonw@biomationsystems.com

Paying for college has turn increasingly some-more difficult, as a college fee fees have increasing faster than a climb of inflation. At a same time monetary aids from normal sources such as sovereign supervision as great as a schools have dwindled. Hence, winning a grant from in isolation sources has turn an critical approach for college as great as connoisseur students to have up a different.

In sequence to find a giveaway income to account we college study, we need to take a beginning to poke out a scholarships for that we have been great qualified. Nowadays, many grant programs have been published online, creation it simpler for we to find a present report as great as contention a grant applications quickly. This essay will outlines a little tips that can assistance we to find a scholarships we have been competent for regulating a absolute tool, a Internet.

1. Start To Search For Scholarships As Early As Possible

All grant applications have their own deadline as great as routinely prior to a second division start. Many scholarships programs have been awarded in first-come-first-served basis. They many stop usurpation some-more focus acquiescence even prior to a deadline if there have been as well many applications being perceived already. Hence, we should begin to track for your competent grant as early as possible; it’s never as well early to begin acid for college scholarships during your sophomore or youth year of tall school.

2. Use Scholarship Search Services

Although we can poke for particular grant programs from internet, it might rubbish a lot of your time as great as effort. There have been many websites yield entrance to outrageous database of scholarships that we can fast poke only by filing out an online form. The many appropriate headlines is roughly all these services have been free. Hence, we should entirely implement these services to poke for scholarships, it is effective, save many of we profitable time as great as a many critical is we get a compulsory scholarships sum in a shortest of time, so that we can contention for a applications if we have been competent for a scholarships.

Please takes note that no a single grant database enclose a finish list of grant programs, we should take time to poke as many of them as possible. Of march we might come up with a little duplicates, though it’s improved than we skip out any great scholarships programs.

3. Look for Financial Aids Page of College’s Website

College websites have been after bullion mines of grant information, if we know where to demeanour for. First, demeanour during a acknowledgment page as it will enclose a list of consequence scholarships. Review a listed scholarships to see either a grant programs request for your margin of study. Then, check a sum during a college’s Financial Aids page for sum focus requirement. If we have been a connoisseur student, we should during a connoisseur territory of a site, that mostly lists university-sponsored fellowships as great as fellowships from outmost sources. Besides, we should write down a hit report for serve enquiries.

4. Look for Specific Scholarships Using Search Engines

If we sort “scholarship” during a poke box poke engines such as HotBot, Yahoo or Google, they will lapse thousands of formula as great as many of time we will find many of matches will compare your education anyway, as great as we will rubbish your time to examination a single by one. In sequence to make make use of of poke engines to find your competent scholarships effectively, we should slight down your poke with a some-more accurate keywords. For example, if we have been seeking for scholarships for competition government degree, afterwards poke with keyword “sport government scholarship” will lapse some-more associated results.

Summary

Internet is a great place to find a present report about any grant programs as great as contention your applications quickly. Hence, we should make make use of of this absolute apparatus to assistance we find a scholarships that we have been competent for, in an in effect ways regulating a tips supposing above.