Search results

  1. P

    Counting characters of multiple words in a text box.

    Yeah, forgot "txtOutput = "Antall ord er(M): " & UBound(sWords)"
  2. P

    Counting characters of multiple words in a text box.

    Thanks for the quick reply. Hm, I've got this one for calculating the total words in a text box: Dim sWords() As String sWords = Split(txtInput, " ") numsentence = 0 If Len(txtInput) = 0 Then Exit Sub Else numsentence = 1 End If...
  3. P

    Counting characters of multiple words in a text box.

    Hey guys! As the title describes, I'm trying to calculate the characters of each single word I've written in a text box. Example: "I've been trying to solve this shit for hours." Now I want a buttonclick() to calculate: 1w: 4 chars - 2w: 4 chars 3w: 6 chars etc.. My task is to find how...
  4. P

    Form containing student grades

    Hey. I'm working with Access 2013 and I was wondering if anyone of you could help me out with a problem I'm having. My task is to show student grades in a new table even tho I can find them in another table (they don't stand alone here. Other information in this Table aswell), and they need to...
Back
Top Bottom