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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 20345 - 20374 of 76981   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20345
... Have you checked your page margins (and possibly the paper size for the selected printer)? If you are printing on standard 8.5x11 and your left + right...
Daniel Koster
danielgkoster
Offline Send Email
Nov 1, 2004
12:41 pm
20346
Why do you want to change the file extension? John Viescas, author "Microsoft Office Access 2003 Inside Out" "Running Microsoft Access 2000" "SQL Queries for...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
1:35 pm
20347
David- Boy, black pages must be using up a lot of ink! <s> Seriously, have you checked the report margins? With the report open in Design view, choose Page...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
1:40 pm
20348
Iam having a small problem. I have 2 fields I want to calculate into a third field, ActualSalary ...
Tracy
miltownu2
Offline Send Email
Nov 1, 2004
2:07 pm
20349
Neeta- You can get "too complex" sometimes when you add a filter (WhereCondition) in the OpenReport that the report can't handle - such as a filter on a field ...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
2:12 pm
20350
Between the two of you, I figured it out. David aka dvdtolson ... open in ... left ... there ... if the ... but I think ... inches wide ... the engine ... no ...
David Tolson
dvdtolson
Offline Send Email
Nov 1, 2004
2:16 pm
20351
Tracy- Neither. You should not store any calculated value. You can create an expression in any query you build on the table to display the value and use it...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
2:22 pm
20352
Hi all, I have a form used to edit existing records. The desired record is selected using a combo box. Problem: in the midst of editing, if the scroll wheel...
Rick
dethtek
Offline Send Email
Nov 1, 2004
2:27 pm
20353
Hey folks- I've an problem properly formatting LF/CRs in an 2000 access db linked to SQL Server 2000. The problem is that on the form they display as those...
mr_ericdb
Offline Send Email
Nov 1, 2004
2:49 pm
20354
Thanks a lot John One other thing that has been a challenge is I have a date input mask as 99-99-0000;0;_ (which keeps my dates as 01-01-2004 for example). ...
Tracy
miltownu2
Offline Send Email
Nov 1, 2004
2:53 pm
20355
Hello all, I am completely baffled by ADO at the moment. I can do things so easily with DAO now and I am pulling my hair out trying to make the transition to...
younga42
Offline Send Email
Nov 1, 2004
3:08 pm
20356
Dear all, Is there any function to substitue Vlookup function(in Microsoft Excel) in Access? Following are the examples of my tables: Table A: ...
Diory Paulus Damanik
DioryPD@...
Send Email
Nov 1, 2004
3:15 pm
20357
Rick - Here is a link to the fix you want: http://www.lebans.com/mousewheelonoff.htm By the way, this link is in our Links section. Bill Mosca Founder ... is ...
Bill Mosca
wrmosca
Offline Send Email
Nov 1, 2004
3:18 pm
20358
Tracy Don't worry about how the date appears. There are several formats for dates, but the real value is a number no matter what you see. Bill Mosca Founder ...
Bill Mosca
wrmosca
Offline Send Email
Nov 1, 2004
3:22 pm
20359
Thanks Bill. The reason I was concerned was the end users dont want to enter the date in this way in the form but instead the way they are used to. Thanks so...
Tracy
miltownu2
Offline Send Email
Nov 1, 2004
3:27 pm
20360
Hi Amy- I notice that you haven't identified a connection when you're trying to open your RS object. You'll need something like: Dim cnn as New...
mr_ericdb
Offline Send Email
Nov 1, 2004
3:30 pm
20361
Rick- You need Stephen Leban's MouseHook solution: http://www.lebans.com/mousewheelonoff.htm John Viescas, author "Microsoft Office Access 2003 Inside Out" ...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
3:32 pm
20362
Don't beat yourself up over ADO. There are some thngs that just work better in DAO. Your example is one of them. Since a form's recordset is always a DAO...
Bill Mosca
wrmosca
Offline Send Email
Nov 1, 2004
3:35 pm
20363
Eric- If you use vbCrLf (Chr(13) & Chr(10)), the Cr part can generate the funky boxes. If you're setting data in the field from code, use just vbLf. If the...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
3:35 pm
20364
Tracy- How you display the data has nothing to do with what is actually stored. Both JET (mdb) and SQL Server internally store a date/time value as a double -...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
3:39 pm
20365
Amy- rst.Open strRecordsetSQL, CurrentProject.Connection But that's the hard way. You're passing the form object, so why not just get a copy of the form's...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
3:43 pm
20366
The reason why this is so tough is because you do not have a normalized set of tables. That start and end column is killing you. What you need is a security...
Bill Mosca
wrmosca
Offline Send Email
Nov 1, 2004
3:45 pm
20367
Try: =DLookup("Security_Level", "Table B", [ID_Number] & " BETWEEN [ID_Start] AND [ID_End]") John Viescas, author "Microsoft Office Access 2003 Inside Out" ...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
3:45 pm
20368
Oh, CurrentPROJECT! Thanks, John. I knew there was a way. I like your simplified method of determining the recordset as well. I think I tried that when I...
younga42
Offline Send Email
Nov 1, 2004
3:59 pm
20369
I have a database where I have 6 different tables that use the same type of filter process. Hospital Directory (1), Physicians Directory (2), Hospitals in...
Kevin M Carman
kmcarman72
Offline Send Email
Nov 1, 2004
5:13 pm
20370
I have a database where I have 6 different tables that use the same type of filter process. Hospital Directory (1), Physicians Directory (2), Hospitals in...
Kevin M Carman
kmcarman72
Offline Send Email
Nov 1, 2004
5:26 pm
20371
Kevin- Trying to use a binary map isn't a bad idea, but you'll end up processing a ga-zillion combinations. You started out OK, but then your logic falls ...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
6:07 pm
20372
The person to whom I am sending file on email is not able to open up the file as .mdb doesnt open due to security reasons in the company. Can we change the...
Rohan
loner_here2000
Offline Send Email
Nov 1, 2004
6:22 pm
20373
The best solution is to either zip the file before you e-mail it, or temporarily rename the extension and then instruct the recipient to rename it back. I...
Daniel Koster
danielgkoster
Offline Send Email
Nov 1, 2004
6:29 pm
20374
Tarun- The usual solution is to put the mdb inside a Zip file and email that. If he's using Microsoft Outlook, Outlook will block .mdb files but not .zip ...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2004
6:30 pm
Messages 20345 - 20374 of 76981   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