Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jjonesal

    About 10g certification

    Check out these Oracle links: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=151 http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_042 If you start with 1z0-042, you'll get the OCA cert. Then, focus on the remainder in the...
  2. jjonesal

    Access Form resize problem

    Have you tried using forms & subforms or is that an option? j
  3. jjonesal

    Problem with Access and update

    What version of Access? j
  4. jjonesal

    Finding the highest value

    In this part you compare site_number to the year: site_number=" & [Site_Program_Year] Those fields will won't be the same. Is that really what you want to do - those are different fields? right? j
  5. jjonesal

    Problem with Access and update

    What version of Access? j
  6. jjonesal

    Access Query for Mail Merge

    What version of Access are you running? j
  7. jjonesal

    Finding the highest value

    Use a group query such as: SELECT Table2.SiteNumber, Max(Table2.SiteProgramYr) AS MaxOfSiteProgramYr FROM Table2 GROUP BY Table2.SiteNumber; You can paste it into a new query based on the underlying table using SQL View (assuming you change the table/field names) or in Design View, create a...
  8. jjonesal

    Count a data field

    Are you trying to do this in an actual report or solely using code? IMHO - the easiest way to do this if you are working with a report is to create a query that does the totals, such as: SELECT Table1.ProjectNumber, Table1.Status, Table1.ProjectName, Table1.ProgramName, Table1.PM...
  9. jjonesal

    multi-user security and make table queries

    Sure did. Funny, the owner doesn't have Administer privileges to it, but I get the same message. The only acct that has Administer privileges is Admin. I had removed "Admin" from the Admins group. So I tried adding it back. And tried logging on as Admin... still no luck. I'm stuck here.
  10. jjonesal

    multi-user security and make table queries

    I have a database that I have enabled for multi-user security. Created users and groups, and set permissions on objects. However, when I'm setting permissions, Access won't allow me to set permissions for the object name <New Tables/Queries>. It gives me this error message: You can't change...
  11. jjonesal

    Prevent 97 users from converting DB to 2003

    Thanks - thought about that, but got about 3000 databases & some of which will need to be opened by 2003 and 97 users. Just don't want the 2003 users converting the file format (hence locking out the 97 users)
  12. jjonesal

    Prevent 97 users from converting DB to 2003

    I currently have users that have both 97 and Access 2003 installed on their machines. We have many databases on the network that users access - some in 97 format & some in 2003 format. When a 2003 user opens a 97 format database, they used to get the Open/Convert dialog - and using the KB...
  13. jjonesal

    Lotus 123 formula question

    I’ve got a Lotus worksheet that has this formulas in one of the cells: 1/@FV(1,C14,C15) I’m trying to understand how Lotus interprets this…. I would have expected to see the @ symbol as the first character in the cell to denote that a formula was being used. If anyone can point me to a...
  14. jjonesal

    Project +.

    Yep...that's right. You are quite welcome! Best of luck on your exam!
  15. jjonesal

    Project +.

    It's the same thing. CompTIA used to call it IT Project+, but when that exam retired, they started calling it simply Project+. I've used both the Transcender and Self Test products. Neither is the real exam questions for the test, but great prep nonetheless.
  16. jjonesal

    Project +.

    I think the amount of prep time will depend on your PM expertise. I took about 2 weeks off and on of prep. Also check out Self Test Software's practice test - that will give you something good to go with too. www.selftestsoftware.com
  17. jjonesal

    Project +.

    I received my Project+ cert in 2003 and then took the upgrade exam in December 2003. IMHO: I have found that it says volumes about the fact that you have IT skills, but also business skills that make you more valuable to an organization. FYI: The newest exam has less IT-specific topics on it...
  18. jjonesal

    How to get started with MCSD .NET

    Which test are you going to take first? Are you experienced with VB or C#? That will definitely affect which prep materials you select. Also, you'll want to get a good practice test such as Transcender or Self Test.
  19. jjonesal

    Problem seeing records through a form

    Duh...Nevermind...I didn't check the Data Entry property... Thanks anyway!
  20. jjonesal

    Problem seeing records through a form

    I have a form frmAnalysisDetails. My switchboard has two entries. One that opens the form in Add mode and another that opens the form in Edit mode. The option to open the form in Add mode seems to work fine, but the option to open the form in Edit mode, comes up in Add mode. I only see one...

Part and Inventory Search

Back
Top