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...
Show off your group to the world. Share a photo of your group with us.

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 3036 - 3065 of 76890   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3036
Thank you Paul. Another in my face thing that I didn't see. May our Lords blessings be with you, Doug ... From: Paul <pbaldy72@...>...
Doug Taylor
thisstinks_alot
Offline Send Email
Feb 1, 2003
10:10 am
3037
MessageHello John, This works great, except I had to add Me.DeptSpecFrms.Undo within the IF. Should I need to do that with the Cancel = True? May our Lords...
Doug Taylor
thisstinks_alot
Offline Send Email
Feb 1, 2003
10:18 am
3038
You can add the Undo, but I like to let the user see what they typed, so I don't use it. If DeptSpecFrms < 1 Or DeptSpecFrms > 4 Then MsgBox "Not Allowed." '...
John Ruff
papparuff
Offline Send Email
Feb 1, 2003
2:48 pm
3039
Funny you should ask this question, Doug. I just posted the answer on another board. What we have here is an example of the difference between the .Value and...
Bill Mosca
wrmosca
Offline Send Email
Feb 1, 2003
6:50 pm
3040
Thank you Bill. I have another question. I'm working this form 2 ways. It started out as a table form and worked great until I removed the default ...
Doug Taylor
thisstinks_alot
Offline Send Email
Feb 2, 2003
1:11 am
3041
To navigate through the recordset I'm doing this: Private Sub btnEmpNext_Click() If rs.EOF Then MsgBox "No more Records." Else rs.MoveNext If Not rs.EOF Then ...
Doug Taylor
thisstinks_alot
Offline Send Email
Feb 3, 2003
12:29 am
3042
Hello- This is the first post I've done. Am hopeful (desparate) for some help. I created an application in 2000 that works beautifully- on my computer (Windows...
lancetieszen
Offline
Feb 3, 2003
1:13 am
3043
I can't test it right now, but try it this way: Private Sub btnEmpNext_Click() If rs.EOF Then MsgBox "No more Records." Else rs.MoveNext If Not rs.EOF Then ...
Bill Mosca
wrmosca
Offline Send Email
Feb 3, 2003
2:00 am
3044
Welcome, Lance. Hope we can help. Nothing worse than finally getting a contract after a dry spell and then having your app blow up. I was under the impression...
Bill Mosca
wrmosca
Offline Send Email
Feb 3, 2003
2:33 am
3045
wow. that was fast. great thought on checking that they have all components installed. will definitely check that out. and can try converting to XP to see...
lancetieszen
Offline
Feb 3, 2003
3:33 am
3046
Thank you Bill, that helped. The msgbox pops up without the second click. The previous or next button still take 2 clicks to move the data even after changing...
Doug Taylor
thisstinks_alot
Offline Send Email
Feb 3, 2003
8:09 am
3047
Hi, I have a subform that has multiple records (of the same table). I also have a button on the footer that calls a report passing the key from the current...
RichardChallis <Richa...
RichardChallis
Offline Send Email
Feb 3, 2003
12:40 pm
3048
Done it again !! Save the current_record number (Curr_Rec = Me.CurrentRecord) then after the requery For i = 1 to Curr_Rec Me.Recordset.MoveNext Next i Richard...
RichardChallis <Richa...
RichardChallis
Offline Send Email
Feb 3, 2003
3:19 pm
3049
I have a set of Access 2K databases that I use as a frontend and backend for my vehicle maintenance shop. A portion of this database system tracks vehicle...
winstar85 <JohnCarter...
winstar85
Offline Send Email
Feb 3, 2003
7:37 pm
3050
You wrote: Microsoft ActiveX Data Objects 2.5 Library reference kept directing to a MSADO25.TLB file That's the right file. It's a Type Library. Dim cat As New...
Bill Mosca
wrmosca
Offline Send Email
Feb 3, 2003
8:08 pm
3051
Doug Don't know what's causing the need for two clicks. You might throw in a Me.Repaint right after assigning the fields. Or you might try: ...
Bill Mosca
wrmosca
Offline Send Email
Feb 3, 2003
8:08 pm
3052
You can also use DoCmd.GoToRecord , , acNext Regards, Bill Mosca Founder ... From: RichardChallis <RichardChallis@...> ...
Bill Mosca
wrmosca
Offline Send Email
Feb 3, 2003
8:53 pm
3053
John If you use the DoCmd.SendObject command instead of the hyperlink you can modify the subject line by concatenating the field to the Subject string. In...
Bill Mosca
wrmosca
Offline Send Email
Feb 3, 2003
8:55 pm
3054
I'm a self taught Access developer, and have come to need some help from the pros. Within one of my forms, I have a few fields that I would like to have...
Brian Humby
docbkh
Offline Send Email
Feb 3, 2003
9:51 pm
3055
Normally when there's a select set of controls I want to disable I enter something into the .Tag property of each control I want to disable, like ...
Chris Mackin
denverdataba...
Offline Send Email
Feb 3, 2003
10:03 pm
3056
One thing I'd like to mention.Use the AfterUpdate event of the combo box to run your code to enable the controls. This event fires as soon as the user picks...
Bill Mosca
wrmosca
Offline Send Email
Feb 4, 2003
12:19 am
3057
Hello Bill, Lance, I had similar problems when I installed an application developed by Acccess XP on Access 2000, it gave me error messages regarding ...
hchung98 <hchung98@...>
hchung98
Offline Send Email
Feb 4, 2003
2:04 am
3058
Yes, I am also referencing the Microsoft ADO Ext. 2.5 for DLL and Security and that is for the ADOX.Catalog. Sorry to confuse the issue. Although I will admit...
lancetieszen
Offline
Feb 4, 2003
3:08 am
3059
Hello friends, is it possible to write stored proceduers (like pl/sql in oracle) in access ? and i want to call that procedures from my vc++ program.how to do...
suresh babu k
ksbabu@...
Send Email
Feb 4, 2003
4:16 am
3060
Yes you can write stored procedures, I know that for certain. I don't know how to call the procedures from outside of Access but a standard ADO connection...
Chris Mackin
denverdataba...
Offline Send Email
Feb 4, 2003
4:34 am
3061
Ey? You don't mean store them in Access do you Chris? You can 'write' a stored procedure in an ADP which is actually storing it in SQL Server as per usual,...
Haslett, Andrew
ahaslettilc
Offline Send Email
Feb 4, 2003
9:12 am
3062
Im afraid this is slighly off topic hope you dont mind. I have been having reliability problems with a frontend backend system in access 97 so to get a more...
david_kilshaw <dkilsh...
david_kilshaw
Offline Send Email
Feb 4, 2003
9:29 am
3063
Sure, a couple of ways.. You can detach the database from server1, and copy the .mdf and .ldf files. Then re-attach the database on Server2. You could also you...
Haslett, Andrew
ahaslettilc
Offline Send Email
Feb 4, 2003
12:04 pm
3064
When I open a split database, I'm usually looking at the front end, complete with queries, forms, reports and so on. I can open any table and add, edit or...
pwconcord2000 <bellio...
pwconcord2000
Offline Send Email
Feb 4, 2003
1:27 pm
3065
Ive tried that and after starting sql on server 2 it doesnt recognise the new data base !!!! ... and .ldf files. ... from Server1 ... data. ... an ... but ... ...
david_kilshaw <dkilsh...
david_kilshaw
Offline Send Email
Feb 4, 2003
1:42 pm
Messages 3036 - 3065 of 76890   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