Search results

  1. J

    What do you think this domain is worth?

    I was wondering what vicodin [ddot] es was worth, Estibot says it's worth $2,700 and sedo said $499. What do you guys think it's worth?
  2. J

    How to trim string(s)/URL(s) to last folder?

    You could use regex. Imports System.Text.RegularExpressions Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click For Each xlink In RichTextBox1.Lines ' Replace xx with tt Dim MC...
  3. J

    Need Fake Key Generator(s)

    I made this to generate fake keys. To use it "TextBox1.Text = GenerateKey()" Public Function GenerateKey() As String Dim Random As New Random Dim s1, s2, s3, s4, s5, RndKey As String s1 = Chr(Int(Rnd() * 26) + 65) s2 = Chr(Int(Rnd() * 26) + 65) s3 =...
Back
Top