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 30577 - 30606 of 76976   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
30577
Any help on this? Abraham ... Project...
Abraham
owentech
Offline Send Email
Nov 1, 2005
9:20 am
30578
I am not sure where ghostscript comes in, but it said cutepdf needs it to work. It is automatic in that I run the report in Access, and then to print it, I...
Jim C
liteguy.rm
Offline Send Email
Nov 1, 2005
11:26 am
30579
It certainly has helped me an awfull lot. So thanks to everyone on the forum, because I have learned from other's problems and solutions besides my own. I...
Jim C
liteguy.rm
Offline Send Email
Nov 1, 2005
11:29 am
30580
I'm looking for the best way to build my database, and I'd like your advice. I have a tutoring company, and I want to track clients, tutors, and the sessions...
shawnvw2001
Offline Send Email
Nov 1, 2005
11:50 am
30581
FIrst you need more tables. SInce a tutor can teach more than one subject, you need a Tutor table and subject table. since the client needs more than one...
Jim C
liteguy.rm
Offline Send Email
Nov 1, 2005
12:10 pm
30582
Abraham, It is presumed that you are ready with everything (including the crosstab query), except the report itself. Once you have a rough idea regarding the...
A.D.Tejpal
adt_y
Offline Send Email
Nov 1, 2005
12:23 pm
30583
Hi, I suggest you add ID field to each of your tables. An Autonumber normally works fine for me. Suggested tables and fields: Tutors (TutorID, names,...
Abraham
owentech
Offline Send Email
Nov 1, 2005
12:24 pm
30584
Thanks AD I was hoping I could dodge the crosstab query, but I will take the challenge. Abraham ... the crosstab query), except the report itself. ... of...
Abraham
owentech
Offline Send Email
Nov 1, 2005
1:14 pm
30585
Bill- How is an ADP more "powerful" than an mdb? Yes, you get some table / view / SP / function editing tools, but they're buggy. I usually end up going to ...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2005
1:26 pm
30586
Shawn- In Access XP / 2003, I'm able to link my contacts table twice, but that's not really your problem. I can also edit / insert / delete rows as long as I...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2005
1:45 pm
30587
Here i post the code i use to link a txt file into an access database actually , i don't really "link" the file, since i look for a linked txt file ( i mean,...
diegodorado21
Offline Send Email
Nov 1, 2005
2:25 pm
30588
I haven't tried this from Excel, but in Access if I already have a linked table, I would simply open the TableDef, change the Connect property, and use the...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2005
3:01 pm
30589
John I'm not saying an ADP is better. They frustrate the heck out of me due to the form/report loss of functionality. And the ADP tools are about the same as...
Bill Mosca
wrmosca
Offline Send Email
Nov 1, 2005
3:39 pm
30590
that's true, no need to rebuild the table, unless the sourcetablename changes too, then, you do need to do something like that. but that isn`t the problem it...
diegodorado21
Offline Send Email
Nov 1, 2005
3:44 pm
30591
Hello Bill, ... I'm sure I'm not aware of all of the differences, but I have seen some differences. ... Well I'm learning so what is most important to me is...
Greg Strong
gw_goldwing
Offline Send Email
Nov 1, 2005
3:49 pm
30592
Bill- If you avoid using Access functions in queries and structure them so that all Access is sending to the server is the fetch request, an mdb performs just...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2005
3:49 pm
30593
how can i make a cross table query allow me to enter data?? i have a table like this: HAS ( table name) ... IdCC IdRubro Cantidad example ( will be more clear)...
diegodorado21
Offline Send Email
Nov 1, 2005
3:56 pm
30594
John I agree with you about fetching rows. My statement concerned manipulating data. Updating a hundred thousand of rows is child's play for SQL Server. Bill ...
Bill Mosca
wrmosca
Offline Send Email
Nov 1, 2005
3:59 pm
30595
Sorry, but no. A Crosstab query is a variation of a Totals query, and Totals queries are never updatable. To present the data in this way for the user to...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2005
4:00 pm
30596
Bill- True. And you get the same performance from an MDB executing an UPDATE query or a stored procedure as you do from an ADP. All work is done on the ...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2005
4:05 pm
30597
Another "just my opinion" - part of what I would include in graphic (and other) design would be determined by the target audience/users. If I were trying to...
banphriosa
Offline Send Email
Nov 1, 2005
4:05 pm
30598
Crosstab queries are not updatable. You would have to create an unbound textbox and do the updating with code, one record at a time. The SQL would look...
Bill Mosca
wrmosca
Offline Send Email
Nov 1, 2005
4:07 pm
30599
Hey Bill, so I figured out what was happening. The datatype coming in was not matching with my set data type, I had to change all my fields to Text--what...
inesd2003
Offline Send Email
Nov 1, 2005
4:48 pm
30600
Hi, First, I am more of an Oracle developer than access, however, I am finding Access more powerful than I originally gave it credit. Second, and more to the...
RichardChallis
Offline Send Email
Nov 1, 2005
5:02 pm
30601
Good for you, Ines. Glad you got it working. Bill ... not ... record, ... numeric ... seem ... my ... it ... to ... check ... you ... are ... - ... (But ... ...
Bill Mosca
wrmosca
Offline Send Email
Nov 1, 2005
5:08 pm
30602
Richard The Expression column is not going to give you the column names. A better way to get what you want is to use VBA code and loop through the QueryDefs....
Bill Mosca
wrmosca
Offline Send Email
Nov 1, 2005
5:25 pm
30603
Absolutely. The best way to get at the MetaData for Access objects (particularly tables and queries) is through the DAO objects. Note that you can also open...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2005
6:33 pm
30604
I have a column with the hours, minutes, and seconds that calls lasted. i.e. Name Calls Duration Date kris 2 00:03:45 10/18/05 ...
kris Christie
laby46
Offline Send Email
Nov 1, 2005
8:42 pm
30605
Kris- Thos numbers look OK - time is stored as a fraction of a day. Try specifically formatting the total as hh:nn:ss. But be aware that if the total is more...
John Viescas
jlviescas
Offline Send Email
Nov 1, 2005
8:47 pm
30606
Hi again, Bill, With the query successfully done and submitted, I'm back to trying to automate the text file generation. Two questions. First, where are all...
banphriosa
Offline Send Email
Nov 1, 2005
8:49 pm
Messages 30577 - 30606 of 76976   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