excel vba send HTTP POST to server

The solution for “excel vba send HTTP POST to server” can be found here. The following code will assist you in solving the problem.

On Error Resume Next
Dim ws As Worksheet: Set ws = Worksheets(“dbbrg”)
Dim C As Range
Dim Baris As Long
Set C = ws.Range(“A:A”).Find(Me.ListView1.SelectedItem, LookIn:=xlValues)
If Not C Is Nothing Then
Baris = C.Row
With ws
Me.TextBox2.Value = .Cells(Baris, 1).Value
End With
End If

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts