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 13462 - 13492 of 76992   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13462
Good morning, Still a novice Access user but learning fast. I have a database that accesses information stored in an Oracle database using ODBC. I created a...
pugman16
Offline Send Email
Apr 1, 2004
2:16 pm
13463
A couple of ideas come to mind: 1) Secure the database and assign write permissions to the appropriate people (use the security wizard or look for the...
Daniel Koster
danielgkoster
Offline Send Email
Apr 1, 2004
4:47 pm
13464
John, Thanks, I think I understand what you're saying, which would be the first step. Two questions: 1. Would it be feasible/better/make sense to create a...
kite_surf10
Offline Send Email
Apr 1, 2004
5:21 pm
13466
In my efforts to plan ahead, I'm trying to set up my code for the generation of annual run numbers without any need for further intervention. Currently I have...
docbkh2
Offline Send Email
Apr 1, 2004
8:30 pm
13467
In addition to Daniel's excellent advice, I'd like to say this: I've never been in an environment where reports were updated more than once a day. If I were...
Bill Mosca
wrmosca
Offline Send Email
Apr 1, 2004
8:50 pm
13468
I have been asked by my network administrators how much band width is used by the connection between the front end and the back end of my database. I am hoping...
Phil
beastmaster_7
Offline Send Email
Apr 1, 2004
10:50 pm
13469
I'm wondering if it's possible to define part of a merge field value as bold font when creating a word merge source file in my Access application. Orson ...
Orson Wilson
sandtusk
Offline Send Email
Apr 1, 2004
11:02 pm
13470
I don't know of any way to get a specific amount without specifically watching it with a network monitor of some sort, but I can tell you it's quite a...
Daniel Koster
danielgkoster
Offline Send Email
Apr 1, 2004
11:33 pm
13471
"It depends." First, you should install each front end on each user's machine, not in network folders. Access does ALL processing on the client machine, so ...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
12:18 am
13472
Sarah- No. You could design an outer form that displays the question and a subform that permits multiple answers - but it would be tricky to allow only one ...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
12:20 am
13473
Group, I am trying to have access add a hard return after the short_desc data so that resolution_resp starts about two lines below the short_desc field. I am...
Isaiah Vi
isaiah_vi
Offline Send Email
Apr 2, 2004
2:07 am
13474
I don't think this works, because it is not taking weeks for "w", its taking only days and reducing 12 days from the date we pass. Sen...
recruitsen
Offline Send Email
Apr 2, 2004
3:53 am
13475
Here, for the second time (first being post 13448): DateAdd("ww",-12,Date()) Paul...
Paul
pbaldy72
Offline Send Email
Apr 2, 2004
3:56 am
13476
Yup. If you're going to use DateAdd, you need "ww". Or use the formula I posted earlier. The integer portion of a date/time variable is number of days, so...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
4:06 am
13477
You can add a return in a form control source with Chr(13) & Chr(10) like: ="test" & Chr(13) & Chr(10) & "test2" Paul ... data ... Access2K. I ... Response ...
Paul
pbaldy72
Offline Send Email
Apr 2, 2004
4:06 am
13478
If you are using this in a control source it would be: ="Short description of issue: " & [short_desc] & chr(13) & chr(10) & "Resolution Response: " &...
Bill Mosca
wrmosca
Offline Send Email
Apr 2, 2004
4:41 am
13479
Greetings: I have a data entry screen and the tab order is hard to set with code. The trick I learned with VB doesn't work where you set them from the last...
Ken
eel3720
Offline Send Email
Apr 2, 2004
1:29 pm
13480
Hello Everybody, I am looking to improve my skills in Access and I was told to give this exam, has anybody taken this exam before, if yes can anybody pls tell...
kamat_anita
Offline Send Email
Apr 2, 2004
2:03 pm
13481
This may sound crazy, bought I need 153 fields for one table. I am need to develop a database from one form in particular to collect data only. All have to be...
u2zoo_wisco
Offline Send Email
Apr 2, 2004
2:42 pm
13482
Ken- Works for me when I add: Me.TxtC1.SetFocus .. at the end. John Viescas, author "Microsoft Office Access 2003 Inside Out" "Running Microsoft Access 2000" ...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
3:15 pm
13483
Brian- You can define up to 255 fields in an Access table, but the total "fixed" length cannot be more than about 4000 bytes. By "fixed" I mean the minimum ...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
3:36 pm
13484
The exam won't "teach" you anything, but preparing for the exam might. Many MVPs have long criticized the Access exam for not putting enough emphasis on ...
John Viescas
jlviescas
Offline Send Email
Apr 2, 2004
3:37 pm
13485
Hello Brian You are right. 153 fields for one table is crazy. Sounds like you need to brush up on normalized data in a relational database and the design...
Beth Moffitt
bethmoffitt2
Offline Send Email
Apr 2, 2004
3:46 pm
13486
Set the tab order from the properties window of the form. Neil Squires ... ===== Neil Squires - Relational Database Design GreaterDesignConcepts@... ...
Neil Squires
greaterdesig...
Offline Send Email
Apr 2, 2004
3:56 pm
13487
Write a function for it and place it in a public code module. Then call the function from wherever you need the number and you can make it as complicated or ...
Neil Squires
greaterdesig...
Offline Send Email
Apr 2, 2004
4:03 pm
13488
... Me.TxtC1.SetFocus ... Me.TxtC2.SetFocus because I still got crap....
Ken
eel3720
Offline Send Email
Apr 2, 2004
5:00 pm
13489
SELECT [qrycount-begin].ProductNumber, Sum([qrycount- begin].SumOfQuantity) AS [Count start], Sum (qryDeliveries.SumOfQuantity) AS Deliveries, Sum ...
ifixps2s
Offline Send Email
Apr 2, 2004
5:05 pm
13490
Duncan, Could you kindly confirm whether your problem has finally been resolved ? Regards, A.D.Tejpal ... From: John Viescas To:...
A.D.Tejpal
adt_y
Offline Send Email
Apr 2, 2004
5:10 pm
13491
Sorry...I made one development, but I am not 100% there. If I isolate one product number to sum, this statement works: SELECT [qrycount-begin].ProductNumber,...
ifixps2s
Offline Send Email
Apr 2, 2004
5:13 pm
13492
... where you ... Just wondering if the obvious struck any cords....
Ken
eel3720
Offline Send Email
Apr 2, 2004
5:21 pm
Messages 13462 - 13492 of 76992   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