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.
string strall = "";
string strDifference = "";
//With listBox1
//For (intcount = 0 To .ListCount - 1
// With listBox2
// For r = 0 To .ListCount - 1
if (listBox1.Items(0, intcount) = (0, r))
{
strDifference = "";
}
else
{
strDifference = listBox1.Column(0, intcount);
}
Next r
End With
if (strDifference = "")
{
}
else
{
strall = strall & "," & strDifference
}
Next intcount
End With
MsgBox Mid(strall, 2)
End Sub