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 SkipVought 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. krymzon

    Global event listener for keyboard (as3)

    well... never mind. seems adding it to stage works. Odd, i could have sworn i tried that before. Sorry for wasting your time if you read my question. haha. But consider it moral support. Thanks! --there are 10 types of people in this world. those who know binary, and those who don't.--
  2. krymzon

    Global event listener for keyboard (as3)

    (the following concerns only actionscript 3. Any suggestions in as3 are greatly appriciated) hey, I've been wondering if there is a quick and painless way to add a keyboard event handler to an entire fla, as apposed to a single element on the form. Basically, what I'm saying is, I understand the...
  3. krymzon

    XML output

    When creating an ASPX page (with its cs counter part), it will render the page and output it as a standard HTML page. My question is, if its possible to output this information inside XML. The reason for this being, is that I have a AJAX broker function that can recieve several parameters...
  4. krymzon

    DHTML image load problem

    its just a link to an image server. The image is there, and its been testedas a static source to an image tag so it works, so the link doesn't matter. --there are 10 types of people in this world. those who know binary, and those who don't.--
  5. krymzon

    DHTML image load problem

    function imageload() { img = //arbitrary image file; obj = document.getElementById("Results_myImg"); obj.src = img; } The problem here, is that this method will not work under IE for some reason. I've been scratching my head for a day now, and it seems like the simplest of code. Note...
  6. krymzon

    DHTML image load in div.

    Also, i have rewritten a portion of my code to accomidate pre-generated image tag's, but the images still will not show up unless I'm in firefox, or i force IE to view the image --there are 10 types of people in this world. those who know binary, and those who don't.--
  7. krymzon

    DHTML image load in div.

    K, I'll try. There is one part of my code that I can show you that contains this problem. this is more or less my generic function that gets called to change my div's image. function DisplayThyImage(im, name) { var html="",img=""; //don't worry about this code here // img =...
  8. krymzon

    DHTML image load in div.

    Well, another problem spans from your solution Kaht. the image tags I'm using are dynamically generated in JavaScript (in a loop controlled by an array). So, I cannot directly change those image tag sources. These image tags that are generated are put into div's on the page, however, i'm...
  9. krymzon

    DHTML image load in div.

    Let me dive right into the problem here. This might be a little hard to explain because i must do this without any displayed code because some sensitive information might be leaked if i post the code, sorry. anywho, on to the problem... The basics behind what I'm trying to achieve are that I...
  10. krymzon

    problems playing media from DVD

    hey guys. i'm pretty new to macs, so forgive my lack of knowledge...haha. anyways, i've got a new mac book pro, and so far i've managed well with it, and uderstand how to use it fairly well now, but there is one problem. I burnt a DVD containing some movies and music from my XP based computer...
  11. krymzon

    Windows XP service pack 2 key authentication

    to be honest, I recently jsut baught a Mac with the intel core duo and i'm looking forward to using the BootCamp software that allows me to run windows XP natively on a Mac. But the only problem is i will need a XP CD with service pack 2 on it. Fortunatly, you've given me a great idea Linney, so...
  12. krymzon

    Windows XP service pack 2 key authentication

    Ok, i have a copy of windows service pack 2 from an older desktop and plan on installing it on a new laptop. Fortunatly, i have a spare windows XP serial number kicking around, but this extra windows XP serial number is from a windows XP CD that doesn't have serice pack 2. So, i want to know if...
  13. krymzon

    time compare

    just curious is there is an easy function embedded into asp that works in a similar manner to datediff(), but instead of working with dates it would work with times like 9;45 pm to 9;50 pm, etc. right now i shudder at the fact that i might have to make a function that would parse the...
  14. krymzon

    Quick Question about BOF

    great, thanks. thought that since i was on the first record BOF would be false. so, i'll just do a little manual first record check. nothing is as easy as i want it to be i guess...lol --there are 10 types of people in this world. those who know binary, and those who don't.--
  15. krymzon

    Quick Question about BOF

    just wanted to test out some theory code before i dive into my next application, and i've found that the simplest method for m situation would be to figure out if i'm currently on the first record without having to execute a query and compare. rec.MoveFirst if rec.BOF then...
  16. krymzon

    if record item = NULL

    ahhhhh. i see. wow, i should have known this from my good old days of college ASP. now i feel like a rookie again, thanks guys...lol --there are 10 types of people in this world. those who know binary, and those who don't.--
  17. krymzon

    1-1-1900 date inserted automatic to the DB

    if the datatype is a Datetime datatype then it will accept NULLs, jsut make sure if your clearing out a certain entry that you reset that feild to NULL instead of "". if this doesn't work, then it might be an issue with the platform your working on. SQL server enterprise manager is the one i...
  18. krymzon

    if record item = NULL

    i have a database, and all i need to do is check if the current record item is Null using a simple little if statement. so its something like this If rec("fieldname") = NULL then response.write("some testing code") End If and sure, this is simple on concept, lol, but it won't seem to work...
  19. krymzon

    Session variables

    response.Cookies("whatever") to declare a cookie or set a value in a cookie by response.Cookies("whatever") and to get values out of the cookie you can do a request.cookies("whatever") --there are 10 people in this world. those who know binary, and those who don't.--
  20. krymzon

    Session variables

    you might want to try putting the username in a cookie so you can validate it through the cookie. i'm not sure how safe usin a cookie would be, but its a good option if your just wanting to test the flow of the code untill you find the ultimate answer your looking for --there are 10 people in...

Part and Inventory Search

Back
Top