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 Shaun E 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 Roel018

  1. Roel018

    Dynamicaly opening a window works in FF, not in IE...

    Thnx fellaz, I got it to work thanks to your help !!!!! The above code worked with a little adjustment, just perfectly ! Thnx again !
  2. Roel018

    Dynamicaly opening a window works in FF, not in IE...

    Hi folks, This function works great in FF, but in IE i get a runtime error on line 16 javascript error.... I don't get why.. ===================================================== <script language="JavaScript"><!-- function newWindow(imagename, text) { var newVar = imagename + "xxxxxx" + text...
  3. Roel018

    disable submit button after clicking...

    Yep !!! It works fine now ;) Muchos gracias amigo !
  4. Roel018

    disable submit button after clicking...

    Hi all, I'm trying to call a function and to disable the submit button all at the same time and still having the form been submitted.. I use onclick="doShowLoading();this.disabled=true;" in my button, and this workd perfectly in Firefox, however, IE refuses to continue submitting the form ...
  5. Roel018

    Shrinking my actionscript code... (with _level0[myvar])

    Dear folks, Currently I have this peace of code, which works great. However, as you can probably see for yourselves, this isn't the I would like my code to be. I would prefer just ONE "for (var i:Number = 1; i<=Number_of_pictures; i++)" loop so that I need to enter the values below only once...
  6. Roel018

    Locking / unlocking my database....

    Hi Fhlee, you're right, it works ok now. I had [ID] field (auto Increment) as primary field already, but that wasn't the problem. The problem was in the chat app itself which sent this instruction to this asp page with the code above :S ... Not so clever ;) Thnx anywayz for the info ...
  7. Roel018

    Locking / unlocking my database....

    Hope you can help me out... I'm having this asp application where the visitor is able to send a message to an Access database.. This works great (with the code below). However, when two or more users simultaneously send a message to the database, only ONE message get's saved.. Now, I know...
  8. Roel018

    Multiple users writing to same database

    Hi All !! Hope you can help me out... I'm having this asp application where the visitor is able to send a message to an Access database.. This works great (with the code below). However, when two or more users simultaneously send a message to the database, only ONE message get's saved.. Now...
  9. Roel018

    Multiple users writing to same database

    Hi All !! Hope you can help me out... I'm having this asp application where the visitor is able to send a message to an Access database.. This works great (with the code below). However, when two or more users simultaneously send a message to the database, only ONE message get's saved.. Now...
  10. Roel018

    Deleting records.. Plz help me ....

    Thnx all !!! It worked for me this way: if recordTotalFlash>50 then response.write "&SizeAbove50" strDELETESQL = "DELETE * from Messages WHERE id < ((SELECT MAX(id) FROM Messages) - 36)" Set DBConn = Server.CreateObject("ADODB.Connection")...
  11. Roel018

    Deleting records.. Plz help me ....

    ================================================== Woops.. wrong piece of code.. this is what I use: ================================================== <% Response.CacheControl = "no-cache" Response.AddHeader "Pragma", "no-cache" Response.Expires = -1 Set DataConn =...
  12. Roel018

    Deleting records.. Plz help me ....

    Hi all.. I'm simply trying to delete the top most records of my database tabel.. I first get the ID's of the top records, but then I dunno what to do next... :-( Here's my complete (TESTING-) page, while testing I include the "recordTotalFlash" var in the URL when calling the asp file...
  13. Roel018

    Delete TOP 5 ??

    Hi all.. I'm simply trying to delete the top most records of my database tabel.. I kind reference the ID's because they vary (first can be 3, second 5, etc.. since records get deleted).. I try to use DELETE TOP 4 FROM Messages ORDER BY id but I get a syntax error.. als DELETE TOP 4 FROM...
  14. Roel018

    Drawing multiple lines - only last line survives

    Drawing multiple lines - only last line survives ================================================ Dear folks, I'm doing a simple program where I have an MC which I can drag across screen. A line is then drawn from the last point (where I started to drag) to the new point (where I ended the...
  15. Roel018

    Need help with punaises board ..

    For if the post above is too complicated, here it is in short: ========================================== This is what I have: on(press){ current_mc = current_mc + 1; new_mc_name = "new_mc_nr_" + current_mc; newDepth = _root.getNextHighestDepth()...

Part and Inventory Search

Back
Top