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 Mike Lewis 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: *

  1. kdelacruz

    Default value for image column?

    Hello, I have an column whose datatype is image, and I would like to set a default image for it. Actually, I just want some kind of value in it, even if I can put some text in there. I just don't want it to be null. I can't figure out how to do this in the Table Design in Enterprise Manager...
  2. kdelacruz

    Dell Powervault 220s shelf fault light

    Hello, We lost power this morning, and are back on now. Our Dell Powervault 220s seems to be working fine, except that the amber Shelf-fault light on the front panel is on (steady). Dell's web site says that this light could mean one of many things "One of the following conditions has occurred...
  3. kdelacruz

    outlook rule running script doesn't run

    Hello, In Outlook 2002, I have a vba sub that I've set to run when a mail message arrives from a certain user (I set it up in the Rules Wizard). However, when a mail message arrives that fits the rule, the script does not run. I have tried setting my security settings in Outlook to Low. I tried...
  4. kdelacruz

    mystery outlook attachments

    Hello, One user here received an email from another user here, who did not send the email, nor was this email in the user's Sent Items folder. This email did not contain any text; there was only an attachment named "toy.cpl" It's actually happened twice, and the other time the attached file was...
  5. kdelacruz

    IE 6 window.open scripting error - help!

    Thanks, Dan You were right -- it was a problem with the person's browser. After you and some other people tested it and it worked, I became a little suspicious ... Finally he deleted his Temporary Internet Files and it worked fine after that. I feel silly not having him try that first -- I...
  6. kdelacruz

    IE 6 window.open scripting error - help!

    Hi, Dan I do have these form objects in my page; here's the html: <form Name='frmDemo' id='frmDemo'> <input id='demofilename' name='demofilename' type='hidden' value=''> <input id='demodesc' name='demodesc' type='hidden' value=''> <input id='democategory' name='democategory' type='hidden'...
  7. kdelacruz

    IE 6 window.open scripting error - help!

    Hello, I have a client of a client who is using IE6 (with the latest update applied) on Windows 2000 Pro (latest update also) trying to view pages on a web site I created, and is having problems with javascript that opens a new window to load a page. He gets a scripting error: no new window...
  8. kdelacruz

    xml/xsl generates bad html for link

    Worked perfectly -- there was no end tag for the <a> because I forgot to put one in -- duh! Thanks, Chris!
  9. kdelacruz

    xml/xsl generates bad html for link

    Hi I hope someone can help me with this In an asp page, I am using xsl to display links using data from an xml file. It's working fine in IE6 and Netscape 7, but Netscape 6 (and possibly other browsers -- I don't have any others to test with!) have a problem because the html that's produced is...
  10. kdelacruz

    fast forward and rewind buttons to control movie clips AND main movie

    Thanks for the tips ... but these external swfs are really loading at runtime, and those components aren't meant to control a main movie AND a runtime loaded clip seamlessly, they're meant to control a clip. What I did was just scrap the rewind and fast forward buttons and replaced them with a...
  11. kdelacruz

    fast forward and rewind buttons to control movie clips AND main movie

    Nothing special about the 100 frames jump ... a slider would be fine too -- I just need some way for users to be able to go back or forward a bit. Even with a slider, though, and no matter how far back or forward they would go, there's always a chance to hit the movie at a point where a...
  12. kdelacruz

    fast forward and rewind buttons to control movie clips AND main movie

    I am creating a software training movie in Flash (MX). The main movie has text, sound and animations directly on the main timeline, and also includes external swfs (video screen captures) that are loaded dynamically into a movieclip target. loadMovie(&quot;bkr_openpgm.swf&quot...
  13. kdelacruz

    how to capture permissions error when loading xml file

    Hello -- In my asp page (not asp.net), I am loading an xml file and am trying to take care of as many potential erros as possible. How can I capture an Access Denied error on my xml file? (I removed permissions from the xml file and get this error: Error Type: msxml3.dll (0x80070005) Access...
  14. kdelacruz

    getElementByTagName object required error

    I forgot to mention that the problem only seems to occur when I use the counter variable. If I create another variable and set it to a static integer: intMyInt = 3 response.write objXML.getElementsByTagName(&quot;presdesc&quot;).item(intMyInt).text it works fine! This is driving me crazy! I...
  15. kdelacruz

    getElementByTagName object required error

    Hello! In my asp code, I have loaded an xml file and am cycling thru the childnodes. I have a For ...Next loop that goes thru and (for now) should display each item. It works fine when I reference each item using a static number: response.write...
  16. kdelacruz

    Fast Forward button restarts movie

    Got it working... I will leave the solution here in case anyone else has this problem ... I fixed the math problem. That actually didn't help. It tried to go to the correct frame number, but my original problem persisted -- sometimes having the movie restarted. What it was doing was, if the...
  17. kdelacruz

    Fast Forward button restarts movie

    Thanks for the ideas! I went and put traces absolutely everywhere, and found out that the problem is where I say gotoAndPlay(_currentframe + 100) It's not adding the current frame number and the number 100, it's treating the frame number as a string. If _currentframe = 473, _currentframe +...
  18. kdelacruz

    Fast Forward button restarts movie

    It's not in a movie clip -- everything in this .fla is on the same timeline. I do have 4 different scenes, though. The &quot;exitscene&quot; is its own scene, and directly follows the main scene where the fast forward button is.
  19. kdelacruz

    Fast Forward button restarts movie

    In a Flash MX movie, I have a fast forward button with this On Release code if ((_currentframe + 120) >= _totalframes) { gotoandplay(&quot;exitscene&quot;,&quot;exit1&quot;); } else { gotoAndPlay(_currentframe + 100); } I do not have my movie set to loop, and I have a stop(); in the...
  20. kdelacruz

    global variable not visible in child movie clip

    THANK YOU! That does indeed work! Somehow I thought I had tried that too, some time back, but I guess not... I feel so silly! [dazed]

Part and Inventory Search

Back
Top