Search results for query: *

  1. CPCisHere

    Putting in a Carriage-return and line-feed in a text string.

    Dim a As String a = "Hello" & Chr(13) & "Bye"
  2. CPCisHere

    Get Local IP Address Using WMI

    Try this. Dim h As System.Net.IPHostEntry = System.Net.Dns.GetHostEntry(System.Net.Dns.GetHostName) lblIP.Text = h.AddressList.GetValue(0).ToString
  3. CPCisHere

    Memory Game

    Don't know if you have figured this out yet but this is what I came up with. Did not look at your code cause on work computer but here is what I came up with. Create 4 pictureboxes, 1 button, and 1 timer on the form. This will flip cards over when you click on them. If they match then they stay...
  4. CPCisHere

    multiplying two text boxes

    Try this Me.txtboxCost = val(frmOrder.txtboxSize.Text) * val(txtboxPsqm)
Back
Top