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!

Search results for query: *

  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()...
  16. Roel018

    Need help with punaises board ..

    Guys... (and girls) .. I'm trying to add a punaise on a board each time I click on a ADD PUNAISE button.. I'm duplicating the movieclip of a punaise.. Seems quite simple. However.. it get's tricky when I try to detect the x- and y-cos of the different mc's.. For instance, when the user places a...
  17. Roel018

    Major IIS MAIL Probleem ??? New CDO error :-(

    Dear Folks, We are experiencing a huge problem over here, although we temporarily solved it now. We create applications which combine the power of ASP and FLASH MX with these cooperating closely together. For our web based forms (information/contact forms) we always used the code below (below...
  18. Roel018

    No Sender's name support in CDO asp Mail handler ?

    SORRY, FORGOT A LINE... THIS IS THE CORRECT CODE: sendersname_Registrant = "MyOrg" finalsendersname_Registrant = """" & sendersname_Registrant & """ <" & Trim(strEmailAdminister) & ">" objMail_Registrant.To = Trim(strUserEmailaddress) objMail_Registrant.From =...
  19. Roel018

    No Sender's name support in CDO asp Mail handler ?

    YEAAAAH !!!! Finally ! It works ! You do have to combine the FROM and SENDERS properties to make this work: sendersname_Registrant = "MyOrg" finalsendersname_Registrant = """" & sendersname_Registrant & """ <" & Trim(strEmailAdminister) & ">" objMail_Registrant.To = Trim(strUserEmailaddress)...
  20. Roel018

    No Sender's name support in CDO asp Mail handler ?

    I'll try is right this morning ! I'll keep you updated ! Thnx !

Part and Inventory Search

Back
Top