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 IamaSherpa 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. Utracman

    Front End Advice linking to Sql

    Ok... we build a sql2000 db to replace the many Access 97 dbs. In the past I used a frontend/backend set up simply linking the client to the master db. I rewote the client (Access97) to work with the new Sql db and linked the tables using an ODBC with a File data source of a dsn in a shared...
  2. Utracman

    Need advice

    Ok... we build a sql2000 db to replace the many Access 97 dbs. In the past I used a frontend/backend set up simply linking the client to the master db. I rewote the client (Access97) to work with the new Sql db and linked the tables using an ODBC with a File data source of a dsn in a shared...
  3. Utracman

    Access97/2000 Mode

    Thanks Dan. That is one way to handle it, but I dealing with 80+ users and severals mdbs so I wanted to find a code solution that I can add to each app. Not sure if there is another solution. To learn fron those who have mastered the art..... Saves many headaches!
  4. Utracman

    Access97/2000 Mode

    We have Access 97 and 2000 databases on a PC. Is there a way to programically identify which mode the machine is currently in and switch to mode of mdb being opened? Example - If I first use A2000 and then open an A97 .mdb I get an "unreconized format error" I then have to open...
  5. Utracman

    Outlook...finishing touches

    I have completed writing from Access to Outlook.. Contacts, tasks, appts blah blah....How can I get from outlook into Access. I know I can add/change the Outlook forms so I would add my Contacts Business's primary key [AccountID] but I have never wrote in vbe before so I'm rusty on the recordset...
  6. Utracman

    Easy DatePart ?

    Perfect! Many thanks for the lesson Dave To learn fron those who have mastered the art..... Saves many headaches!
  7. Utracman

    Easy DatePart ?

    Ok.... searched several sites and can not find an example. I know its the after update event and probally a datePart function but there may be a better way. A97 Bound text box where a date is entered. I need to only allow Monday, Tues, Wed or Thurs as acceptable dates. No Friday Sat or Sunday...
  8. Utracman

    Set focus to Tab control when subform has records

    Perfect! Thanks for the help Dave To learn fron those who have mastered the art..... Saves many headaches!
  9. Utracman

    Set focus to Tab control when subform has records

    Joe I'm close but it always sets focus to the tab even if there are no records. Code If DCount([IssueID], "qryCriticalSub", [Sales ID] = Forms!frmBranchMain![txtSales ID]) > 1 Then Forms!frmBranchMain!tabCritIssues.SetFocus What am I missing? Thanks Dave To learn fron those who...
  10. Utracman

    Set focus to Tab control when subform has records

    A97 How would I do this? One of my tab controls [Critical Issues] has a subform that displays Issues that need to be resolved and when they get resolved they will not show up in the subform. What I want to do is if there are records present in the subform I want to set focus to the Tab control...
  11. Utracman

    A97 I use the following to buil

    A97 I use the following to build a history of reviews on each account, but now would like to make one master RevNotes (memo type) and append each review records RevNotes which already have the date and username built in. This way when you view the mastRevNotes you will see for one record with...
  12. Utracman

    After Update easy ?

    THanks, but I only want the date part to be a different color, So in the memo field Dates stand out more. Anys work arounds out there? Dave To learn fron those who have mastered the art..... Saves many headaches!
  13. Utracman

    After Update easy ?

    A97 I want to change the forecolor on part of my after update event value. Code for the afterUpdate event on a memo field Me!txtRtsNotes = Me!txtRtsNotes & " " & Month(Now) & "/" & Day(Now) I want the date stuff to be blue like 16711680 Thanks for the help Dave To learn...
  14. Utracman

    Dcount expression help.

    Thanks Again THis is what I did. Copied the code into Sub MyCriteria() Dim lngCount As Long Dim MyCriteria As String MyCriteria = " Month([LastReview])=" & Month(Now()) & " And [Sales ID] = '" & Me![txtSales ID] & "'" lngCount = DCount("LastReview&quot...
  15. Utracman

    Dcount expression help.

    Thanks for the help! [Sales ID] is a text field. I tried both options and in the first I get an #error and the second gives me a value of 0. What is missing? The [LastReview] field has a value like "05/09/2001 9:45:48 AM" I'm trying to show all records that match [Sales ID] and...
  16. Utracman

    Dcount expression help.

    A97 Unbound texbox control I'm trying to get the count of records that meet this expression =DCount("corpBranch","tblBranch"," [LastReview] = Month(Now) & "/" & Day("*") And [Sales ID] = [txtSales ID]") I'm trying to count the records with a...
  17. Utracman

    criteria expression to return top 50 records.

    Thanks! Dave To learn fron those who have mastered the art..... Saves many headaches!
  18. Utracman

    criteria expression to return top 50 records.

    Easy one What criteria expression would return the top 50 records. Example A field has [lastMonthRev] which is the amount the client billed last month. I need to build a query for a report that will return the top clients based on [lastMonthRev]. Many thanks! Dave To learn fron those who...
  19. Utracman

    Update... version control

    Thanks for the direction.... Perfect! Dave To learn fron those who have mastered the art..... Saves many headaches!
  20. Utracman

    Update... version control

    Help! Access 97.... 120 users, 2 seperate call centers. One has NT 4.0 with Novel and the other Win 98. Currently when I have updates, I send out a new version(email) with the same file name(linked to the DB) to my end users and (in the perfect world) all they have to do is click on the...

Part and Inventory Search

Back
Top