Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim ColNumber as Integer
ColNumber = htiHitTestInfo.lSubItem + 1
txtEdit.SetFocus
With lvwInventoryAllocation.ColumnHeaders(ColNumber)
txtEdit.Width = .Width - 50
txtEdit.Left = .Left+lvwInventoryAllocation.Left+500
txtEdit.Height = .Height
txtEdit.Top = .Top+lvwInventoryAllocation.Top+60
txtEdit.Text = .SubItems(htiHitTestInfo.lSubItem)
txtEdit.SelLength = Len(txtEdit)
txtEdit.SelStart = 0
txtEdit.Tag = .SubItems(2)
txtEdit.Visible = True
End With