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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 37696 - 37725 of 76923   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
37696
Tedd- Steve's suggestion is correct. You can also open your form in Design view, select the section where you want to fix the tab order, then choose Tab Order...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
7:02 am
37697
Vishwa- If the Record Source is a query, is the field updatable when you open the query as a Datasheet? Do you have any code that might be setting the Enabled...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
7:05 am
37698
Your row source must be: SELECT dept.dept_code, dept.dept_name FROM dept ORDER BY dept_name; Set the column count to 2, bound column to 1, and display widths...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
7:11 am
37699
LT- Is InfAddress1 either a control on your form or a field in the Record Source? If not, then that's your problem. John Viescas, author Building Microsoft...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
7:14 am
37700
Navya- That's because Mod rounds both numbers to Integers, does the divide, and then returns the integer remainder. This should work: POINT = (Amt * 100) Mod...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
7:39 am
37701
still it reurns zero ony ....sir any option for geting remainder when it divides...in the MS excel Mod function works correctly...on the same query in ms excel...
NAVYA
navya_tt
Offline Send Email
Jun 1, 2006
7:59 am
37702
It works for me. I went to the Immediate Window and entered: ?(CCur(123.45) * 100) Mod 100 Answer is 45. Are you sure there's a fraction in Amt? Halt on that...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
8:45 am
37703
A.D.J: Sorry, I reply you late again. But, I am avilable now.I will reply you as soon as I see your message. One thing I am not sure is the time difference: I...
hongzeng_2001
Offline Send Email
Jun 1, 2006
8:55 am
37704
A.D.J: Sorry, I reply you late again. But, I am avilable now.I will reply you as soon as I see your message. One thing I am not sure is the time difference: I...
hongzeng_2001
Offline Send Email
Jun 1, 2006
8:56 am
37705
it is right, it works in immediate window....but in form it is not appearing...the rest is not a matter...u will not get anything from that code because all...
NAVYA
navya_tt
Offline Send Email
Jun 1, 2006
9:44 am
37706
now it works...before i took the value from textbox and in the code i had chanded into int and saves it into another variable...may that was the...
NAVYA
navya_tt
Offline Send Email
Jun 1, 2006
9:58 am
37707
Linda- Thanks for your reply. I meant that the whole Access programe shuts down automatically. Regards, Kevin...
honest_john35
Offline Send Email
Jun 1, 2006
10:45 am
37708
Dear All, I have a NotInList event for a combobox like the code below. It works quite well. I wonder if is possible to add the NotInList input directly to the...
honest_john35
Offline Send Email
Jun 1, 2006
10:53 am
37709
Wouldn't this work? point = (amnt - int(amnt))*100 if amnt is 123.65 or -123.65 the above should give 65 I am concerned that using MOD will return some strange...
Jim C
liteguy.rm
Offline Send Email
Jun 1, 2006
10:57 am
37710
thanks ....i got Jim C <liteways@...> wrote: Wouldn't this work? point = (amnt - int(amnt))*100 if amnt is 123.65 or -123.65 the above should give 65 I am...
NAVYA
navya_tt
Offline Send Email
Jun 1, 2006
11:03 am
37711
I ended up using the View | Tab Order dialog. I've always just manually entered the order number in properties before and that's always worked for me. It may...
teddw2ds
Offline
Jun 1, 2006
12:22 pm
37712
Kevin- Sounds like a corrupted database. Also check that you have the latest service packs applied. Choose About Microsoft Access from the Help menu to find...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
2:31 pm
37713
Kevin- Sure. Delete the I = MsgBox and get rid of the If line and everything between the Else and End If. John Viescas, author Building Microsoft Access...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
2:33 pm
37714
It is a field in the record source. How would I correct that then? Thank you L T ... From: MS_Access_Professionals@yahoogroups.com ...
LTPortella
ltportellar
Offline Send Email
Jun 1, 2006
2:42 pm
37715
Thanks Steve, I do appreciate the assistance. I will admit though, that the pseudo code confused me a bit. I've settled the update information into a Table...
stormephront
Offline Send Email
Jun 1, 2006
2:47 pm
37716
L T- Did you add the fields to the Record Source after you first created the form? Sometimes the form doesn't "wake up" to recognize added fields. Try ...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
2:52 pm
37717
That's a pretty tricky way to do it, Steve. I've always used the Tab Order dialog, but with a form having many controls, it's a chore to drag items from one...
Bill Mosca
wrmosca
Offline Send Email
Jun 1, 2006
3:12 pm
37718
Thanks John! That is sort of where I was heading yesterday. I pulled those selected records that I knew needed to be compared (By ID)and began shuffling...
stormephront
Offline Send Email
Jun 1, 2006
3:21 pm
37719
1. No, I didn’t add the fields to the Record Source after I created the form 2. I changed all the Me! to Me. 3. I compiled from the Debug menu and got a...
LTPortella
ltportellar
Offline Send Email
Jun 1, 2006
3:54 pm
37720
How do you get the window to pop up where you save a file and it lets you pick the directory, etc. I finally figured out a way to get a report to export to...
Lee
leevt99
Offline Send Email
Jun 1, 2006
4:11 pm
37721
L T- Did you try changing the Record Source property and then changing it back? Do you see the field InfAddress1 when you open the Field List in Design view of...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
4:29 pm
37722
Lee- If you have Access 2002 or later, you can use the Office FileDialog object. If not, you'll have to call the Windows API. See code at: ...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
4:33 pm
37723
The query itself is efficient, but you still have to run this query for each field, correct? Changing it from Fax to Addr1 to Phone, etc.? That's why I was...
Steve Conklin
stephenmconklin
Offline Send Email
Jun 1, 2006
4:34 pm
37724
You seem to have the code almost there, clsCommonDialog I guess is (someone's) wrapper class for the API calls. Within your With/End With you need execute the...
Steve Conklin
stephenmconklin
Offline Send Email
Jun 1, 2006
4:37 pm
37725
Nancy- Note that PID must be the Primary Key of at least one of the tables to make this updatable. It'll also run faster if you have and index on the Fax ...
John Viescas
jlviescas
Offline Send Email
Jun 1, 2006
4:40 pm
Messages 37696 - 37725 of 76923   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