Search the web
Sign In
New User? Sign Up
MS_Access_Professionals · MS Access Professionals
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11212 - 11241 of 76929   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11212
I am trying to transform the following code into SQL Trigger, if any can help pleasse send back to me. Function UpdatePeriods() Set dbs = CurrentDb Set ctr =...
karramli
Offline Send Email
Jan 1, 2004
2:15 pm
11213
I've no knowledge in creating triggers, but your code can be simplified quite a bit (this will surely help when creating the trigger). Function UpdatePeriods()...
John Ruff
papparuff
Offline Send Email
Jan 1, 2004
3:12 pm
11214
There's an error in the code. I forgot a close paren in the line ctr("M" & i+1=... It should be ctr("M" & i+1)=... I've no knowledge in creating triggers,...
John Ruff
papparuff
Offline Send Email
Jan 1, 2004
4:12 pm
11215
... Very easy. ... Very easy if you understand how to create reports. ... You will not need any VBA code to do the 2 above tasks. Neil Squires ===== Neil...
Neil Squires
greaterdesig...
Offline Send Email
Jan 1, 2004
5:59 pm
11216
I prefer to trap all errors before they occur. An example follows. dim num1 as double dim num2 as double dim answer as double num1 = 7 num2 = 0 if num2 = 0...
Neil Squires
greaterdesig...
Offline Send Email
Jan 1, 2004
6:01 pm
11217
Use the shift key bypass. Neil Squires ... ===== Neil Squires - Relational Database Design GreaterDesignConcepts@... PGP Key ID = 0x4BE249B4...
Neil Squires
greaterdesig...
Offline Send Email
Jan 1, 2004
6:03 pm
11218
As a side note there is a large execution time difference between the following 2 lines of code. if (me.txtUserString = "") then and if len(me.txtUserString)=0...
Neil Squires
greaterdesig...
Offline Send Email
Jan 1, 2004
6:14 pm
11219
Beth You might want to take a look at the Time and Billing database in the database wizard. I use a modified version for my business. You would need to add the...
Bill Mosca
wrmosca
Offline Send Email
Jan 1, 2004
8:05 pm
11220
If you've disabled the shift key bypass (Holding down the shift key while opening a database will bypass the startup settings) through code, you can download...
Bill Mosca
wrmosca
Offline Send Email
Jan 1, 2004
9:23 pm
11221
Thanks Bill! I am not charging by the hour just yet, have a loing way to go for that, so I used one from 97 and converted that has order entry. That way I...
Beth Gardner
hayajiolh
Offline Send Email
Jan 1, 2004
10:56 pm
11222
What would I need to add the emailing feature? I'd like to email invoices to clients. Ron Horner Horner Consulting ... From: Bill Mosca...
Ron Horner
ron_hornerco...
Offline Send Email
Jan 1, 2004
11:37 pm
11223
Ditto! Beth G...
Beth Gardner
hayajiolh
Offline Send Email
Jan 1, 2004
11:59 pm
11224
Huy Regarding the question "how easy is it in Access to calculate a sum/average of donations?" It is possible to do lots of thing within the SQL behind the...
Dave Sharpe
pmmgpgp
Offline Send Email
Jan 2, 2004
12:08 am
11225
ok. looks like just bypassing the calculation if the divisor ends up 0. I took the first suggestion and did a IIF to pull out the calc based on the ...
Geoffrey Stoner
gbstoner
Offline Send Email
Jan 2, 2004
4:34 am
11226
Ill look it up and see.I am sure it is perry easy. ... From: Ron Horner [mailto:horner.horner@...] Sent: Thursday, January 01, 2004 6:38 PM To:...
spayne@...
steverpayne
Offline Send Email
Jan 2, 2004
10:01 am
11227
From http://www.microsoft.com/AccessDev/articles/outprog.htm Regarding Access 97 and there is a sample download on this site: Creating Outlook Items from Any...
Mari-Beth Moffitt
bethmoffitt2
Offline Send Email
Jan 2, 2004
5:03 pm
11228
Hey all, I know there have been discussions in the past about reduced network performance or other speed issues, but I've encountered something that seems to...
Dan Koster
danielgkoster
Offline Send Email
Jan 2, 2004
10:53 pm
11229
After posting I remembered the /runtime switch, so I went ahead and tried it. That definitely made all the difference, now the machine is flying much faster...
Daniel Koster
danielgkoster
Offline Send Email
Jan 2, 2004
11:00 pm
11230
Okay now, you are getting like Beth and answering your own posts. Just kidding. LOL Craig Williams Static Control Components Inc ... From: Daniel Koster...
Craig Williams
CraigW@...
Send Email
Jan 2, 2004
11:34 pm
11231
You might try turning off all the subdatasheets for all the tables. This code will do it: Function TurnOffSubDataSheets() Dim MyDB As DAO.Database Dim...
Bill Mosca
wrmosca
Offline Send Email
Jan 3, 2004
2:28 am
11232
Craig - And what's so bad about that?!? :) Btw Dan, I would think that a full version would run slower than a runtime as it has to load more 'stuff' whereas...
Beth Moffitt
bethmoffitt2
Offline Send Email
Jan 3, 2004
2:48 am
11233
Another option that may speed things up is to compile the db into and mde. This will shrink it by possibly half it's size, and optimize the database's ...
Neil Squires
greaterdesig...
Offline Send Email
Jan 3, 2004
3:03 am
11234
Happy New Years Dev's I'm attempting to develope an app that allows work orders (access form currently) to be put on an outlook calendar. Is there a way to ...
lovebroker847
Offline Send Email
Jan 3, 2004
3:32 pm
11235
It is possible. First look at http://www.slipstick.com/dev/vb.htm and then there is an example of how to add an Outlook Appointment (Calendar addition) at...
Mari-Beth Moffitt
bethmoffitt2
Offline Send Email
Jan 3, 2004
3:34 pm
11236
When I am done working in frmCustomerList I want to return to frmCustomers. I use the following code, which works well to open and filter the frmCustomers to...
Jack Malki
jackvmae
Offline Send Email
Jan 4, 2004
6:14 am
11237
Try this "airware": Forms!FormName.Visible= True Forms!FormName.Filter = strWhere Forms!FormName.FilterOn = True Paul ... frmCustomers. ... already open. ... ...
Paul
pbaldy72
Offline Send Email
Jan 4, 2004
6:51 am
11238
Thanks for all the feedback. I will definitely turn off all the subdatasheets. I'm not going to mess with an MDE though because I would have to change the...
Daniel Koster
danielgkoster
Offline Send Email
Jan 4, 2004
3:26 pm
11239
One more thing I thought of...when was the last time the boss's hard drive was defragged? Regards, Bill Mosca Founder ... From: Daniel Koster...
Bill Mosca
wrmosca
Offline Send Email
Jan 4, 2004
4:50 pm
11240
Dan, I don't know if this sheds any light on the situation, but we have an individual at our office with the same issues accessing dbs on the network. I can...
Beth Moffitt
bethmoffitt2
Offline Send Email
Jan 4, 2004
7:00 pm
11241
(This tip refers to Access 2000. It will work for most versions of Access, but some of the steps might not be the same for all versions.) When you are...
Bill Mosca
wrmosca
Offline Send Email
Jan 4, 2004
9:21 pm
Messages 11212 - 11241 of 76929   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help