Search results

  1. J

    Conditional Format Based on Previous and Current Record

    Yes that makes sense, when I review the query behind the form all values reflect 255. Below is what I am able to provide, let me know if this triggers an idea of why all values seem to reflect 255. VBA (copied from above) Public CurrentNumber As Long Public CurrentColor As Long Public...
  2. J

    Conditional Format Based on Previous and Current Record

    Thanks Mark, Yes mine is also a continuous form. When I create a blank db and recreate Wayne's code on a continuous form it works as I would expect. The database we are currently developing has too many company specific information to post and may remove the item that is stopping the...
  3. J

    Conditional Format Based on Previous and Current Record

    I know this is an old post but I am hoping someone can assist. I was able to download Wayne's Sample and it works great. When I implement the same idea on a continuous form, it works only for the 1st record and doesnt run the function for the other records. Is there a property or something...
  4. J

    Navigation Form Active Page

    I am working on a Navigation form with 3 pages. When I click a button on the main form unrelated to the pages, I am trying to determine what page is currently selected. Keep in mind, all pages are tied to the same subform, just filtered differently when the page is selected. Can you help...
  5. J

    Open another database and send Variable Back

    I have code that from DB1 opens DB2 and runs a Function in DB2. The DB2 function produces a Boolean result that i am trying to get back to DB1 without success. Any suggestions? below is the script. Sub Test22() Dim AC As Object Set AC = CreateObject("Access.Application") rc =...
  6. J

    Recordset Not Updateable

    Hey Guys, I have a split database.... In the front end, i have a form that connects a bunch of tables. My issue is that because 2 of the tables are a One to many relationship, it is making my form read only. These 2 tables are linked from the back end database. Table1 = MainT (has...
  7. J

    Outlook Restrict Method From Access

    Hey Paul, that is true but because its in the restrict string, that also errors.
  8. J

    Outlook Restrict Method From Access

    Hey Guys, There are different reasons why I am looking for this to happen but basically i have the below script: For Each Item In offexchfldr.Items.Restrict("[SenderName] = '" & frmfm & "'") ' Select Items that match Sender Name on form If Item.TaskSubject = subid Then...
  9. J

    Run Outlook Function From Access

    Your right, that is what you just did. I am only replying to my initial post for the future me's that search and find this.... Initially I created a function in Outlook that that checks for items in the inbox. What i was attempting to do was from an Access db, open Outlook and run the...
  10. J

    Run Outlook Function From Access

    It doesnt matter what is in the function, the issue is attempting to call it.the function is just a message box. If you know how to call it from Access please response, if not please stop wasting peoples time.
  11. J

    Run Outlook Function From Access

    We are looking to run a Sub "Runme: from a module in Outlook through Access. I have looked everywhere and spoke to some other analysts on our team and we are stuck. Replies that can assist with this problem are greatly appreciated.
  12. J

    Run Outlook Function From Access

    Hey Guys, I have an Outlook Function that i am trying to run from Access. What i am looking for is to Open Outlook through Access and run the Outlook function from Access. Please assist
  13. J

    Vba sql Date Time identifier

    Hey CJ, when i change the Table1 field "rec" to text format and use the below script it works, so i dont think it has to do with reserved word. i think i am indicating a date time variable incorrectly by using "#". Do you know if there is another indicator for date time instead of "#"...
  14. J

    Vba sql Date Time identifier

    Hey Guys, i am having an issue with sql in vba using a variable for a date time field. i know you identify date variables with # i know you identify text variables with ' But now i have a date time field that is set to date but when i run the sql it does not find a match. i have confirmed...
  15. J

    Unhide hidden fields

    Hey Bob, i would set a Event Procedure on each Button Properties "On Click" event with the following statement: (formname being your form name) -No button procedure Forms![formname].[field2].Visible = True Forms![formname].[field3].Visible = False Forms![formname].[field4].Visible =...
  16. J

    iif statement with And in true statement

    Hey Guys, i have a query with the following criteria in one of the fields: >=DateAdd("m",-12,fom()) And <=DateAdd("m",1,fom()) fom is a function for first of the current month. i need this query to be specific to what month it is when its ran so i want to only have this criteria if the...
  17. J

    Prevent Table Linking / Identify databases linked

    that would make sense but then i couldnt link to them. i think i am just looking to confirm if my questions are possible and if so how. Not specifically a solution to my issue. From the answers i will hopefully derive my own conclusions 1. Can i either prevent database from linking to my...
  18. J

    Prevent Table Linking / Identify databases linked

    These are the questions i have, not sure how else to explain. i have a table in a database (database is not used by end users) that has information in it that i do not want anyone to be able to link to to make changes. So i am looking for solutions. 1. Can i either prevent database from...
  19. J

    Prevent Table Linking / Identify databases linked

    Gemma, your comments have nothing to do with my initial question. Please help guys!!
  20. J

    query Linking Two Tables with Null Values

    thansk RainLover. I actually made the null values 0 and matched off of that but your right about the primary key. Thanks !
Back
Top Bottom