+ Reply to Thread
Results 1 to 10 of 10

UserForm help

Hybrid View

  1. #1
    Registered User
    Join Date
    05-09-2011
    Location
    california
    MS-Off Ver
    Excel 2003
    Posts
    48

    UserForm help

    im very new to user forms and am not sure if this is possible, but this is my aim.

    this is what I have so far:

    Private Sub Label1_Click()
    
    End Sub
    
    Private Sub Label2_Click()
    
    End Sub
    
    Private Sub cmdAdd_Click()
    Dim iRow As Long
    Dim ws As Worksheet
    Set ws = Worksheets("Sheet4")
    
    'find first empty row in database
    iRow = ws.Cells(Rows.Count, 23) _
      .End(xlUp).Offset(1, 0).Row
    
    'check for a date number
    If Trim(Me.txtDate.Value) = "" Then
      Me.txtDate.SetFocus
      MsgBox "Please enter a Date"
      Exit Sub
    End If
    
    'copy the data to the database
    ws.Cells(iRow, 23).Value = Me.txtDate.Value
    ws.Cells(iRow, 24).Value = Me.txtReason.Value
    ws.Cells(iRow, 25).Value = Me.txtPoints.Value
    
    'clear the data
    Me.txtReason.Value = ""
    Me.txtPoints.Value = ""
    Me.txtDate.SetFocus
    End Sub
    
    Private Sub formClose_Click()
      Unload Me
    End Sub
    
    
    Private Sub UserForm_Click()
    
    End Sub
    
    Private Sub UserForm_QueryClose(Cancel As Integer, _
      CloseMode As Integer)
      If CloseMode = vbFormControlMenu Then
        Cancel = True
        MsgBox "Please use the button!"
      End If
    End Sub
    this works fine. I now want to add another txt box, and the input is entered into a calendar (psuedo calander) its just cells a-m (jan-dec) and 1-33 for the day.

    so say then enter the date 5/72011 their code gets put in that cell

    date:5/7/2011
    reason: sick
    points:5
    code: AC (this is the portion i want to show on the psuedo calendar)

    the file is attached. thanks much
    Attached Files Attached Files
    Last edited by messiah166; 05-11-2011 at 01:00 PM.

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: UserForm help

    Why use code to prevent using the userforms X? It's unnecessary because your close button only closes the form, there's nothing else essential performed when the form closes.

    Use Comboboxes to eliminate user input error & to make the code easier
    Attached Files Attached Files
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Forum Expert
    Join Date
    11-23-2005
    Location
    Rome
    MS-Off Ver
    Ms Office 2016
    Posts
    1,628

    Re: UserForm help

    I modified your macro but royUK's suggestion is the ideal.

    Regards,
    Antonio
    Attached Files Attached Files

  4. #4
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: UserForm help

    Done a little more with a ListBox for the points calculation
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    05-09-2011
    Location
    california
    MS-Off Ver
    Excel 2003
    Posts
    48

    Re: UserForm help

    Thank you guys for your help its very much appreciated. Now I get to tear it down and do it for the rest of the buttons :p.

  6. #6
    Registered User
    Join Date
    05-09-2011
    Location
    california
    MS-Off Ver
    Excel 2003
    Posts
    48

    Re: UserForm help

    actually. The reason on the attendance side needs to be user inputed not selected. Reason is it will be using the specific excuse of whomever it is and needs to be less generic. So where it says A-Absent, that needs to be as it was. But I DO need that A showing up on the calendar. This code is so much different than my humble beginnings Im not sure how to change it. And also. How do I add to the list box choices for reasons?

  7. #7
    Registered User
    Join Date
    05-09-2011
    Location
    california
    MS-Off Ver
    Excel 2003
    Posts
    48

    Re: UserForm help

    Actually ive added the new things to the sheet that needs to be calc'd so here is the new one.
    Attached Files Attached Files

  8. #8
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: UserForm help

    What other buttons?

    The ListBox is populated from the Named Range
    [code[ .lbxPoints.List = Range("points").Value[/code]. The Range would need adjusting to include more options.

    The reasons on your attendance side is taken from the key on the page, surely if different inputs are allowed then the key is useless.

    There's no clue at all as to what you want to add with the other buttons such as Vacation Balance. Whatever the basic code would be very similar

  9. #9
    Registered User
    Join Date
    05-09-2011
    Location
    california
    MS-Off Ver
    Excel 2003
    Posts
    48

    Re: UserForm help

    There are 4 such buttons. 3 right under the first. To subtract vacation, fmla, and floater hours. I did figure it out though and have went on to create the final 3. Sometime today I will reup the file for you to look at and critique. As for the reasons, from a code stand point, and for the calendar, they are fine, but to generic to be entered into the reason box. If I call in sick tomorrow, they want to be able to type in there he called in sick. Not just that I was absent on that day. If that makes sense. But I did figure that out too. I just had to remove the line of code that had it going there and add another txtbox and have that go there. Its perfect.

    Thank you so very much.

  10. #10
    Registered User
    Join Date
    05-09-2011
    Location
    california
    MS-Off Ver
    Excel 2003
    Posts
    48

    Re: UserForm help

    here is the updated sheet
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1