Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Stainnd
  • Content: Threads
  • Order by date
  1. Stainnd

    Have A Shape Delete Itself

    This isn't exactly what I'm trying to do, but it's a simple example of what I'm trying to do. There is a button on a blank workbook. When you click the button, it creates a new shape. When you click the shape, it deletes itself. The reason I can't do this is because if I set the OnAction...
  2. Stainnd

    Play a sound throughout Powerpoint presentation

    How do you play a song throughout a presentation, that starts automatically when a presentation starts, and continues to play until the presentation ends. Thanks -Mike -Mike
  3. Stainnd

    FireFox Compatibility Problem

    I have a banner on my website that I made in Photoshop and ImageReady. In IE, the banner looks just fine, but in FireFox, parts of the border on the bottom are 12 pixels too high. All the code is at the link above. Thanks! -Mike
  4. Stainnd

    Get Keystroke Within Loop

    If I want a procedure to run every time a specific key is pressed, I would use the code: Application.OnKey("Key",Procedure) My problem is that if "Key" is pressed while a Sub is running, it won't be processed to after the Sub completes. What I would like to do is have a Sub that is running...
  5. Stainnd

    Premature end of header script

    Everytime I run this script, I get a "Premature end of header script". Permissions are at 755 so that's not it. Any ideas? #!/usr/bin/perl #Look! Look! This is the password!!!! Shhhhhh! Don't tell anyone! $user_michael = "***"; $password_michael = "***&quot...
  6. Stainnd

    Quote Problem

    I'm trying to Response.Write a hyperlink. My problem is that if I type Response.Write(&quot;<A HREF=&quot;www.tek-tips.com&quot;>&quot;) then those bolded quotes cause a problem. After the first one, it thinks i'm closing the string. Furthor more, I'm dynamically adding in the actual hyper...
  7. Stainnd

    Parse a Website for Data

    I have a server that keeps track of certain stats on a web page. The html page is very plain...just labels and data like: Web Hits: 81 Unique clicks:121 I want to write a java program that opens my web page, and gets the html source code so I can check how my numbers are doing and...
  8. Stainnd

    Accessing Web Pages and Parsing the Source Code

    I want to do a fantasy stock trading game at my school. I'm creating a Client program that all the participants get and a Server program that will run on the master computer and is how the client programs execute trades. If someone wants to buy a stock, they would open their client, type in...
  9. Stainnd

    JFrame, Graphic, Menu

    I want to create a new JFrame. I want there to be a menu, and the JFrame to contain a single picture that takes up the entire frame. I know how to create a JFrame and work with menus. My problem is how to put a graphic on the JFrame. Any help would be much appreciated. -Mike
  10. Stainnd

    Passing Array as Parameter

    I have a game i'm working on just for fun to fool around in QB with. The techniqiue i use is to have each indiviual file as a 16x16 GET/PUT thing, and then have a 'map' of a bunch of these 'tiles'. Anyway, when a user, say, destroys a chest, I want the tile formerly known as chest to become a...
  11. Stainnd

    Clrscr() function

    I included 'conio.h', and then used the clrscr(); function to clear the screen. I get the error 'undefined identifier 'clrscr'. Any luck? -Mike
  12. Stainnd

    QBasic Version

    What is the best version of QBasic to use, in general, if I'm using Windows XP. -Mike
  13. Stainnd

    Compile

    Can you compile qbasic programs into executables? -Mike
  14. Stainnd

    BSave/BLoad

    Following the advice of many people, I've decided to try and implement BSave/Bload in my mapping technique (read my last post if you're not sure). Anyway, to get straight to the point...I wrote a program to BSave. Then I tried BLoading it in another program. However my 10x10 sprite only...
  15. Stainnd

    Saving Space when Spriting

    I've been working on different RPG techniques, startegies, etc. before I truly commit a significant amount of time towards a project. The method i've been using for maps and graphics is actually pretty cool, i think. Or at least I thought so when I first learned it. You write a couple lines...
  16. Stainnd

    Remove Spaces from integers

    Very simple problem. I save an integer. I call it. I print it. It prints as &quot; integer &quot;. In other words, it prints with a space on either side of the integer. How can I stop this and why does it happen? Thanks -Mike
  17. Stainnd

    randomly select from a list of things

    I'm writing an RPG. I want the computer to randomly generate which monster to create. Ideally, I'd like to have a bunch of records for each monster, containing that monsters hit points, damage, etc... but for now, i'll content myself with randomly generating those numbers, and then randomly...
  18. Stainnd

    When two pics hit

    This is something I've wondered for a long time. I used to program in VB a lot (i lost the disc and got a new comp, so that is kinda out the window), and now i've been programming in qb. When I was in vb, I made this app that was a collection of games I had made. I was quite proud of it, but...
  19. Stainnd

    saving a program using put/get

    After reading the previous post, (and from what numerous other people have told me), I decided to use a get/put statement and a random-access file thingy (a very technical term) to store my data and then load it (btw, its an rpg program. I am trying to store character information so that it can...
  20. Stainnd

    Combo Boxes, Tables, References

    I have two columns in a table, which we'll call catalog for examples sake. For examples sake, lets also say that the first column is products, and the second column is prices. On my form, I have a combo box, a listbox, and a text box. The combo box contains a list of all products (all of...

Part and Inventory Search

Back
Top