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 Chris 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. jailerg013

    Time Range Select

    The Datetimepicker does the select time ok, but I'm really looking for a time ruler that can display the complete day with the start to end time highlighted similar to appointment scheduler in microsoft outlook.
  2. jailerg013

    Time Range Select

    I have a form with a start time and end time text box. Does anyone know of an activex control I could get that would display the complete range of time selected from start to end such as a time ruler with markers or clock, and that the user could edit the start and end time by clicking on the...
  3. jailerg013

    adding empty rows

    OK, I'll keep working on it. I'm sure its a simple problem I'll just have to figure it out.Thanks for all your help.[2thumbsup]
  4. jailerg013

    adding empty rows

    I tried that, but it just keeps moving my page header down with the lines.
  5. jailerg013

    adding empty rows

    You are awesome. One more little thing I don't need the lines in my header how could I remove them. Thank you for your help.
  6. jailerg013

    adding empty rows

    I have a report in Access that has been formatted to display borders around each record so that it appears as a table and that table has got to have a certain number of rows per page. my problem is I need the last page to continue with the table rows to the page footer even if there are not...
  7. jailerg013

    SUB TO CHECK ALL FIELD ARE COMPLETE

    Thank you, I've got it working. Thanks for your time. [2thumbsup]
  8. jailerg013

    complete record before allowing new

    Thank You. I've got it working now. I really appreciate your time.[thumbsup2]
  9. jailerg013

    SUB TO CHECK ALL FIELD ARE COMPLETE

    Could anyone get me started on writing a sub to check if the following fields are complete. Something like this: If Me![Mydate] = Null Or Me![StartTime] = Null Or Me![EndTime] = Null Then Me.AllowAdditions = False Else Me.AllowAdditions = True End If I'm probably not even close, could you...
  10. jailerg013

    complete record before allowing new

    I tried this, I doubt I'm even close. Private Sub Form_Current() If Me![Mydate] = Null Or Me![StartTime] = Null Or Me![EndTime] = Null Then Me.AllowAdditions = False Else Me.AllowAdditions = True End If End Sub Could you get me on the right path,Please????????
  11. jailerg013

    complete record before allowing new

    I have a form which stores data on a date, start time, & end time of an event. I need to save the record without the end time until I can update that field at whatever time the event ends, but I do not want to allow a new record be added until the previous record is complete. Is this Possible...
  12. jailerg013

    Input function Error

    Thank you for helping me! I Really appreciate it. Would you also know of anyway I can make the input box display *astericks as you type, similar to a password input mask.
  13. jailerg013

    Input function Error

    Could anyone help me? I wrote the following vb to require a passcode to validate a yes/no check box. Private Sub Check41_BeforeUpdate(Cancel As Integer) Dim strInput As String, strMsg As String strMsg = "Enter Authorization Code" strInput = InputBox(Prompt:=strMsg...
  14. jailerg013

    SETVALUE MACRO TO VBA

    Makeitso, Thank you!! Thank you!! I know there wasn't a whole lot to that, but I've been struggling with it for a while. You're awsome!
  15. jailerg013

    SETVALUE MACRO TO VBA

    I tried this Private Sub Date_DblClick(Cancel As Integer) Me!Date = Date End Sub but it still isn't working. The () after date keeps disappearing after I move to the next line.
  16. jailerg013

    SETVALUE MACRO TO VBA

    Can someone tell me how I can double_click and get a date control to display the current date using VBA. I used a macro to do this on the Double_click event but I want to use VBA. Please Help!

Part and Inventory Search

Back
Top