BUG Report
4 TopicsTeams: Translation of "More meet now options"
Hi The button to converting a chat into a Video or Audio call, is named "More meet now options" in English. But the Swedish translation is "Fler möte bu-alternativ". "Now" is translated to "bu". "Bu" is a very scary word for small children in Sweden, as "Boo" is in English. Please correct to "Fler möte nu-alternativ" or better only "Fler mötesalternativ". Regards, Anna-Karin12Views0likes0CommentsAllow own editing after posting a new question into any of Community Lounge Discussion Boards
Right after posting my new question into one of Community Lounge Discussion Boards I noticed that it was no more possible to edit it again in case any correction might have been needed. While I noticed doing the same editing was indeed allowed after adding a reply to my own question, so basically I'm just asking for some more consistency... 😇 Many thanks in advance for your attention. Best Regards Rob123Views0likes8Commentsaccess vba topindex example fail
listindex works topindex seems removed and focus was needed to add if text value not need focus not clear where initialize come from and how to use Private Sub CommandButton1_Click() ListBox1.TopIndex = ListBox1.ListIndex TextBox1.Text = ListBox1.TopIndex TextBox2.Text = ListBox1.ListIndex End Sub Private Sub ListBox1_Change() TextBox1.Text = ListBox1.TopIndex TextBox2.Text = ListBox1.ListIndex End Sub Private Sub UserForm_Initialize() Dim i As Integer For i = 0 To 24 ListBox1.AddItem "Choice " & (i + 1) Next i ListBox1.Height = 66 CommandButton1.Caption = "Move to top of list" CommandButton1.AutoSize = True CommandButton1.TakeFocusOnClick = False Label1.Caption = "Index of top item" TextBox1.Text = ListBox1.TopIndex Label2. Caption = "Index of current item" Label2.AutoSize = True Label2.WordWrap = False TextBox2.Text = ListBox1.ListIndex End Sub55Views0likes2Comments