Forum: Visual Basic 4 / 5 / 6 Jan 22nd, 2005 |
| Replies: 3 Views: 6,010 thanks for the reply. If you (or anyone else, I suppose) wouldn't mind answering them, I have a few more questions now that I know that. I see the value on my comp for IE is:
... |
Forum: Visual Basic 4 / 5 / 6 Jan 20th, 2005 |
| Replies: 20 Views: 8,398 sorry if this sounds harsh, it's not - from what I can tell, this isn't at all what you need your program to do. Right now, from the code in your last message, what happens is you click on the... |
Forum: Visual Basic 4 / 5 / 6 Jan 20th, 2005 |
| Replies: 3 Views: 6,010 Hi everyone
I've been working on developing a web browser in VB6 similar in capability to IE and I would like to set it as the default browser. I have been unsuccessful in finding any way to A)... |
Forum: Java Dec 11th, 2004 |
| Replies: 1 Views: 8,555 here's a site detailing changing the mouse cursor. http://www.devdaily.com/java/edu/pj/pj_hourglass_cursor/
just substitute whatever cursor you want it to be (there's a list down the page a bit of... |
Forum: Java Nov 28th, 2004 |
| Replies: 7 Views: 16,843 Simply implement the KeyboardListener. There is a lot of information on how to use this all over the internet. |
Forum: Java Nov 28th, 2004 |
| Replies: 2 Views: 3,224 A simple yet effective way to solve this would be to use a for loop to compare the elements of each array to the other using the for loop's variable. If they were equal, increment a counter variable... |
Forum: Java Nov 28th, 2004 |
| Replies: 1 Views: 3,273 When you use .hasMoreTokens(), it returns a value and it seem to be that you aren't doing anything with this value - "while ( tTokens.hasMoreTokens() )" - so the while() never knows what is being... |
Forum: Java Nov 28th, 2004 |
| Replies: 1 Views: 7,440 try this:
public void update (Graphics page)
{
paint(page);
}
That way, instead of updating the whole page (which erases first), it just draws to it. |
Forum: Java Nov 23rd, 2004 |
| Replies: 0 Views: 1,945 I am working on a program which creates an arraylist containg all of the cards in a 52 card deck and then randomly selects 20 of them. I would like to have the program display the images of the... |
Forum: Java Nov 23rd, 2004 |
| Replies: 3 Views: 2,347 I'm not sure what method you are using to do this program, but a simple way to count the vowels would be to use the String Tokenizer class and set the delimeters to vowels. Use a while structure that... |