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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Stainnd

  1. Stainnd

    Have A Shape Delete Itself

    !!! Thank you very much Skip. -Mike
  2. Stainnd

    Have A Shape Delete Itself

    Could you maybe point me in the direction of where I could learn how to create procedures dynamically? I'd like to learn anyway. -Mike
  3. Stainnd

    Have A Shape Delete Itself

    Thanks for the response. I could be wrong but I think this requires me to create a Sub (Oval1_click) for every single shape. However these shapes are being created dynamically, so unless there is a way to dynamically create new subs, this wouldn't work. -Mike
  4. 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...
  5. 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
  6. Stainnd

    FireFox Compatibility Problem

    Thanks for the link. I went there, and my code is valid. FireFox is still interpreting my code differently. It's happening in two ways now. One, parts of the border on the banner are not where they should be (12 pixels too high), and two, when I have <TR STYLE="height:50px;">...it's...
  7. 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
  8. Stainnd

    Get Keystroke Within Loop

    I figured it out thanks to the magic of open source. I don't actually understand why it works, but I know that it does work. In general declarations, include the following code: Declare Function GetAsyncKeyState Lib "User32.dll" (ByVal vKey As Long) As Long Const VK_LEFT As Long = &H25 Then...
  9. 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...
  10. Stainnd

    Premature end of header script

    Everytime I run this script, I get a &quot;Premature end of header script&quot;. 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 = &quot;***&quot;; $password_michael = &quot;***&quot...
  11. Stainnd

    Quote Problem

    Thanks. Single quotes worked. -Mike
  12. 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...
  13. 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...
  14. 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...
  15. 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

Part and Inventory Search

Back
Top