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 Mike Lewis 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: *

  • Users: scra
  • Order by date
  1. scra

    Setting up permissions in Access 2010

    Thank you for the reply. I'll give those options a try.
  2. scra

    Setting up permissions in Access 2010

    I have a database in Access 2010 and would like to set permissions to allow other users to have the data tables as READ-ONLY and have no permissions to make changes to them but me as the author. I would allow users to link to the tables from my database and have those users open the linked...
  3. scra

    Excel- How to copy values for each row using a macro?

    Hello. I have a flat file in Excel. There are missing values on each row when value changes. I need to copy those values to each row. I'm not sure if I'm making any sense, but here is an example. Current Output Ticket # Patient Date of Service 1712612 111111 9/15/2011 null null...
  4. scra

    Changing Colors on Option Button

    Thanks for the reply, but the conditional formatting does not work. I have colored the text box (green) and attached the conditional formatting to color red for No.
  5. scra

    Changing Colors on Option Button

    I have a report in Access where an option button is visible for each record. As of now, the option is shown in color black when the answer is true or yes. When No, the option button is not filled-in which is expected. However, I do want to change the color in Green when Yes or True and in...
  6. scra

    Assigning a number

    It's me again! What is the correct code to have the form go to a blank form? Currently the form is loaded showing previous records into the form. Private Sub Command44_Click() Dim rs As DAO.Recordset Dim db As DAO.Database On Error GoTo ErrHandle Set db = CurrentDb() Set rs =...
  7. scra

    Assigning a number

    Thanks so much who contributed to this post. You Rock!
  8. scra

    Assigning a number

    I'm still getting a compile error on this... Me.FormFieldName.Value = rs!IssueAssignedNum + 1 Please help.
  9. scra

    Assigning a number

    Max, I'm getting this compile error which hi-lights the IssueAssignedNum. Private Sub Form_Open(Cancel As Integer) Dim rs As DAO.Recordset Dim db As DAO.Database On Error GoTo ErrHandle Set db = CurrentDb() Set rs = db.OpenRecordset("Issues") rs.MoveFirst rs.MoveLast...
  10. scra

    Assigning a number

    Thanks, Maze. Now, the other question is...where do I place the code you provided?
  11. scra

    Assigning a number

    I have a command button name "New Issue" on a form. When I click on that command button, I get a clean form to enter new data. Within that form, there is a field named Issue Number. I would like to assign that field an automatic fill-in number (i.e. last issue number is 35..would like 36 to...
  12. scra

    How to clear a form?

    The form is bound to a table. There is a combo box to select a value then populates the other fields. The form itself is not meant to update any tables. I would like to see the form blank when it I open it.
  13. scra

    How to clear a form?

    I just want to see a blank form after it's been opened. Undirty it, I guess.
  14. scra

    Change color of value if value is negative

    I had forgotten how to code it. Anyone???
  15. scra

    Change color of value if value is negative

    I know there is a way to code a field if a value of that field is a negative. I want to code a negative value in color red font and positive value as green.
  16. scra

    Sorting in form

    Thank you! I've implemented the sort query in the record source.
  17. scra

    Sorting in form

    Thanks. Sorry, I left one thing out. The form is updatable to populate a table. The clinicians use it to enter in the form the clinical information. They would like to see the most current review date when the form pops-up.
  18. scra

    Sorting in form

    I have a subform that needs to be sorted by review date (review_dt) in descending order when the form is opened. What and where do you insert a code?
  19. scra

    Converting reports to PDF

    I have 12 pages of Access reports. Each page is its own report. To convert all reports to PDF, I have to convert each report and then 'bind' them into one using Adobe. Is there a way to convert all 12 pages into one PDF file?

Part and Inventory Search

Back
Top