ViRuaL
Members-
Content Count
18 -
Joined
-
Last visited
About ViRuaL
-
Rank
Newbie [Level 1]
-
Visual Basic: Change Your Start Button Text! (XP) Windows XP ONLY
ViRuaL replied to ViRuaL's topic in Programming
That's because of your OS. Sorry, this only works with WinXP -
Visual Basic: Change Your Start Button Text! (XP) Windows XP ONLY
ViRuaL replied to ViRuaL's topic in Programming
Yup, that's all you need to do and it should work. -
Can I Use My Own Domain( A Record Only)? domain without NS control
ViRuaL replied to gentoo's topic in Web Hosting Support
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. -
I'm not very squeemish, but that is just friggin gross! Ugh, squid... Big ones... To each their own I guess...
-
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...
-
Yeah, it's a great community. Welcome to Xisto, happy posting!
-
Subdomain Problem It links back to AstaHost front page?
ViRuaL replied to szupie's topic in General Discussion
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. -
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.
-
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.
-
Thanks for the info, I was wondering what all those mozilla products actually did.
-
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.
-
Yeah, wanna see something even more creepy, just google your phone number. Address, roadmaps... Never give out your phone number online...
-
Google Toolbar Version 3 No longer in beta
ViRuaL replied to VJgamer1405241488's topic in Websites and Web Designing
Thanks, although I use Mozilla, which automatically blocks all popups. IE is a virus magnet. -
Applications In Linux for new linux user
ViRuaL replied to jedipi's topic in Websites and Web Designing
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. -
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