Jump to content
xisto Community

ViRuaL

Members
  • Content Count

    18
  • Joined

  • Last visited

  1. That's because of your OS. Sorry, this only works with WinXP
  2. Uhhh, I can't really help you if I can't understand what you're saying. Try to clear up your english a bit... Grammar is a *****, I know.
  3. I'm not very squeemish, but that is just friggin gross! Ugh, squid... Big ones... To each their own I guess...
  4. I think tattoos are fine. They give you to express yourself very originally. Although you have to remember it will be there for the rest of your life, and there's no going back. Even the tattoo removal surgeries leave scars behind. But the insane "camoflauged in tattoos" is kind of disgusting to look at. A few small ones here and there are fine, but if there's more ink than skin it's a little disturbing...
  5. ViRuaL

    Noobie ...?

    Yeah, it's a great community. Welcome to Xisto, happy posting!
  6. Yeah, clearing your cache will usually help. Your browser probably stored some information about Xisto's domain, and when it wanted to go to a subdomain that doesn't exist, it probably goes to the Xisto front page. So, the subdomain was created and it really existed, but your browser still had all that cache about that link going to Xisto's front page. Most browsers do that to save time when navigating around the web.
  7. Everybody loves Gmail. I love it. My friends love it. It's clean, fast, reliable, and easy to use. Great features. I doubt they would do something like that, and if they did I'd still probably use it.
  8. I'm not sure what you're saying... Look in that section on the forums, also try http://www.hackthissite.org/. That site has multiple web hacking challenges, as well as realistic web page hacking, and program hacking.
  9. ViRuaL

    Mozilla Bunch

    Thanks for the info, I was wondering what all those mozilla products actually did.
  10. Yeah, my friend has that new virus. I had to block her actually, it got quite annoying... Well, thanks to Mozilla telling me it's a PIF, I didn't end up getting this thing, whatever it does to you.
  11. Yeah, wanna see something even more creepy, just google your phone number. Address, roadmaps... Never give out your phone number online...
  12. Thanks, although I use Mozilla, which automatically blocks all popups. IE is a virus magnet.
  13. I don't understand the point of you listing all these programs, but I guess it could be helpfull... To someone... The only thing I'll be looking into is the nix2win.
  14. This article will teach you how to get random strings for output to a label caption, or anywhere you want it to go. 1. First we need to declare our string names: Private RndString(2)This declaration says there will be an array of strings called RndString, and there will be 2 strings in that array. 2. Then, we need to create a function that will generate a random number. Private Function RandomNumber(rUpper As Integer, Optional rLower As Integer) As Integer' Generate random number between upper and lower bound values Randomize RandomNumber = Int((rUpper - rLower + 1) * Rnd + rLower)End FunctionThis initializes the Randomize engine, then picks a random number between the upper and lower bound values that you specify. 3. Now we need to define our strings. You'll most likely want them to be defined on form load, but if need be you may put them on a button click or something. Private Sub Form_Load()RndString(1) = "Yes"RndString(2) = "No"End SubThis defines our strings for later use. 4. Now let's say you want to change a label's caption when a user clicks a button, to one of the random strings we have previously defined. The code would look something like this: Command1_Click()Dim RndNum As IntegerRndNum = RandomNumber(2, 1)Label1.Caption = RndString(RndNum)End SubThis is where the magic happens. RndNum is used to define the index of the string array, and we set it's value equal to a random number, either 2 or 1. Then Label1's Caption becomes the string index of whatever number was produced from the randomize engine. All done! If you need help with this code or anything else, e-mail me at ViRuaL@gmail.com
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.