Jump to content
xisto Community

Sizux

Members
  • Content Count

    30
  • Joined

  • Last visited

  1. This is his first time getting married and he's 50 years old? That's what happens if you make a series of "stupid" kids shows, stupid being in quotation marks because they were so immature, they're considered stupid. They were funny when I was in elementary school, though.
  2. Dream Weaver is only good if you fully understand it. And to understand it, you must read several tutorials and have a lot of patience. Sure, getting the basics down is very easy, but once you want to improve and go more advance, that's when things start getting complicated. Then again, almost all website creators follow the same manner.
  3. The reason it isn't always 100% correctly translated is because there are different word phrases and word meanings in other languages. There are also many other different words you could use in place of one word. For example, the phrase "Let's go to the movies" could be said the same way with two different word phrasing. I guess my point is be careful--if she finds out you have words down that you haven't learned yet (since the word translating isn't 100% correct, as said above), you'll probably get in even more trouble then before. Unless, of course, you're in a high-level French class were you've learned the various phrasing.
  4. If this is true, then not only will Google look better, but Microsoft would look worse then before. Think about it: Firefox made a better Internet service, Google made a better email service, and now Google will *probably* make a better operating system, which is Microsoft's biggest success. Sad times for Microsoft, indeed.Then again, if the OS doesn't turn out good, Google would look pretty bad. Still, there aren't many popular operating systems out there--and Google has a wide-range of intelligent worker. I think they can pull this off. I sure hope this is true, because Microsoft needs to stop gaining money. They're taking it from other businesses in need. (Not like it would change if Google created a OS...)
  5. Advertisements have always been dumb. They go to desperate limits to gain profit from them when they could just do it the proper way. I don't understand why some sites have you click on an advertisement enter it. (I can understand if you're downloading a file) But, if advertisements really have gotten "dumb-er", then expect them to get even worse in the near future.
  6. They try to make games as real as possible without unbalancing the gameplay. For example, let's suppose the game is realistic in every aspect--you'd die in one hit, so the game would be hard. Once you die, you'd never come back to life. You cannot load or save the game. You have to eat, sleep, and do ordinary tasks as often as you do yourself, which would require patience and much effort. Games try to be as realistic as they can, but they cannot do everything without creating a horrible mess.
  7. I tried Picasa a while back, but never really got into it. The in-depth features where decent, but not flawless--which is something I expect from Google. I'd much rather prefer Photoshop or others, since they're more people-friendly and faster.
  8. Tabbed Browsing and a Search Bar? A little too much like Firefox. They can copy off of Firefox's ideas all they want. I'll still refuse to use any Internet Explorer?s products unless they have extraordinary new features. Even so...
  9. Can't you just reinstall it? That might work, also. Or, you can check and see if the disk is scratched. If it is, then you need to purchase a new copy of it, or get a no-cd crack (assuming it's legal if you own the game).
  10. Depends. It it's online, people generally don't care about the storyline (or graphics) but more about the amount of people and world size. Single player games, however, attract people most when there is nice graphics, a stable storyline, and detailed characters and their development.
  11. I'd still much rather prefer a wired mouse and keyboard. Now that I think about it, wires getting in the way is a lot better then my mouse/keyboard disconnecting briefly and frequently. I'm not saying that Bluetooth products have this problem--I'm simply pointing out problems in general.
  12. It all depends on how many replies the topic has. It it has numerous pages, I probably won't even bother posting in the topic. If there are more then 10 replies, I'll just read the first post. And if there are less then 10, I MIGHT read some posts. I'm just that lazy. (By the way: I didn't read any posts in this topic)
  13. I don't play any of them. Although I've been dying to get my hands on Guild Wars. I heard from many sources that the game was excellent in every category, but I haven't had the time nor patience to look more in-depth on that.Must I also add that World of Warcraft is, sadly, the most overrated game in the world. I had a free one-month period, which I made my character and leveled up some. The main reason they make these "long" activities is not necessarily to keep you excited. It is to keep you playing, thus giving them more money. They'll keep adding pointless adventures so you can keep playing without quitting.
  14. That's stupid. Seriously.I think it's completely pointless to request search records just because "sex sites" where searched up. Face it; kids are bound to get into that stuff, no matter what people do.Thank god Google is refusing to hand over the results. What could the goverment possible do? Close down Google? (That?s a serious question) Maybe I do not understand this article completely, but if what I'm thinking is true, then this is very stupid.
  15. Notice: Coding between compilers may vary. For example, "messagebox.show()" is the message prompt in Express Edition whereas "msgbox()" is the prompt in Visual Basic 6.0. All code in this guide is Express Edition. In part on, we learned the basics of Visual Basic, including Strings and Integers. Once you feel comfortable with it, you can move onto this part. As said before, the beginning part of learning is the hardest. Since this is still the beginning, you may struggle on some things. Don't worry though; things are repeated numerous times. First off, we are going to learn how do use an Input Box, a box where you can enter text and record it. To do that, we need to use another Dim. For this particular case, we need to use the Dim Object command. Dim Object, when declared, tells the compiler to store an object into the memory. Objects can be many types of forms or message boxes--in this case, an input box. Dim box as Object The variable "box" is now an object. So we need to tell the compiler what object it is. We want Mr. box to be an input box, so let's say so. box = InputBox("What is your name?") The "box = InputBox" defines it. The ("") is simply text. You can add variables in there by simply removing the quotes. When you run this, you'll see something like this: This is nice, but it doesn't do anything when you click OK. We're going to add a textbox afterwards saying what the user typed in the box. How do we do that? Simple. Dim box As Object box = InputBox("What is your name?") MessageBox.Show("Your name is " + box) When the data is entered, it is stored in the variable "box". Objects, such as "box", can store both alphabetical (strings) and numerical (integers) characters. After the user has entered a value, the message "Your name is " will show up. Then, the value "box" (AKA: The value the user entered" will show up, following the space at the end of the message "Your name is ". Easy? Try understanding this one: Dim name As Object Dim age As Object Dim state As Object Dim city As Object name = InputBox("What is your name?") age = InputBox("What is your age?") state = InputBox("What state do you live in?") city = InputBox("What city do you live in?") MessageBox.Show("Your name is " + name + ", you're " + age + " years old, and you live in " + city + ", " + state) When you want to compare certain information, you use Signs, symbols that represent greater then, less then, and equal. Actually, there is more then that. This table shows the signs and their meaning. > Greater Then< Less Then= Equals<> Not equal<= Less then or equal to>= Greater then or equal to Tip: If you confuse greater and less then signs, think of their looks. The < sign looks like an "L" if you turn it, which means "Less then". We are also going to learn Branching, coding comparing multiple data and varying on their conditions. Branching must always start with "If" and end with "End If" There must also be an "Else" condition in the middle. Most compilers, however, already add the "End If" and "Else". If 5 = 5 Then MessageBox.Show("This code is correct!") Else MessageBox.Show("What happened here?") End If Branching is like asking a question. This case, it is saying "Is the number 5 equal to the number 5?" Of course, this is true. So, the value under "If 5 = 5 Then" is what happens when this is true. The value under "Else" is what happens when it's incorrect. So, what'll show up here? Easy. Read through the following code and think to yourself what it does. Dim check As Object check = InputBox("You must be 10 years or older to access") If check >= 10 Then MessageBox.Show("OK, you're old enough") Else MessageBox.Show("In a few more years, sonny") End If This code is simple. If you enter a number equal to 10 or higher, the message "OK, you're old enough" will appear. However, if you say the number 9 or below (negatives count), then the other message will appear. Let's now learn comments. These helpers help--and a lot. Comments are side-notes added into the script that do nothing but tell you a note. They are NOT displayed in the program itself. Here is how you do a comment: ' This is a comment! Everything displayed on the line following the ' is a comment. You can use them to remind you of things. Pretty easy. I'm coming to a conclusion on this tutorial. But I'll bring you one nice tip; check over your work. You can make pretty stupid mistakes that you miss. Some compilers will find them for you, but be cautious. Dim apple as delicious If you have any questions, just post them. I'll try to answer as many as I can. Please remember that I'm not an expert at this; so don't ask me to build an operating system.
×
×
  • 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.