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 wOOdy-Soft 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: *

  • Users: Quasibobo
  • Content: Threads
  • Order by date
  1. Quasibobo

    Use row-numbers for export

    Hi, Is it possible to use the row-numbers from an Excel-sheet? I'd like to have a unique id (like auto_increment in SQL), so why not use the row-numbers? I need those numbers for an export... Is that possible? (Otherwise I need to add another column with the numbers 1 to ...., but when you...
  2. Quasibobo

    Disable an onChange

    Hi, I have some formfields with an onChange="checkNeg()" The form itself has an onSubmit="return(Verify())" This function looks like this: function Verify(){ if (!checkNeg() || !checkValues()) { return(false); } return (true); } But what happens when I hit 'ENTER' in a...
  3. Quasibobo

    What does if ("".replace) do???

    Hi, I'm curious to know what this if-statement means (javascript): if ("".replace) { } I can't think of anything.... Bet it's something simple, but I can't figure it out! T.I.A. Quasibobo Don't eat yellow snow!
  4. Quasibobo

    select() with OnChange="check(this)"

    Hi there, I've got this code: <script language="JavaScript"> <!-- function CheckBanknr(val) { if ("".replace) { waarde = val.value; var rekNr = String(waarde).toUpperCase().replace(/[\s\t-\.]/g,""); // Delete white space, hyphens en periods if (rekNr.match(/[^P^0-9]/g)) { // If...
  5. Quasibobo

    Onchange and select()-problem

    Hi, I've got these form fields that i need to check wiether the value of this field is less than zero. If so, give an alert message and select this field. <form name="invoeren"> <input type ="bestellen_1_1" onChange="Optellen(1,4)"> <input type ="bestellen_1_2" onChange="Optellen(1,4)">...
  6. Quasibobo

    HD doesn't save

    Hi, I've got two (physical) HD's in my PC, a 120Gb HD (less than 1 year old) and a 40Gb HD (about 3 years old). Since three weeks I can't save anything anything to the 40Gb-HD! At least.... I can save files, untill I reboot (or shutdown en startup) the PC. Then, anything that I had saved on...
  7. Quasibobo

    ASP to HTML

    Morning, The thing I want to do must be quite simple, i guess, but I do not know how. With ASP and Access I generate multiple html files to build a site. Now I want to be able to save one output file as an html page. In stead of always accessing menu.asp which builds the menu I want to...
  8. Quasibobo

    Delete File from Server

    Hello, It is getting anoying but I can't seem to delete a file of the server. This is de code I use: Path = ServerPath & "\upload\"& Map & "\" & File Set FSO = CreateObject("Scripting.FileSystemObject") IF FSO.FileExists(Path) THEN FSO.DeleteFile(""& Path & "") Response.Write(""& Path &...
  9. Quasibobo

    POST to frame on next page

    Hi, I need to POST form-input to a page in a frameset on the next page. Something like this: <form action="next_page.php" method="post"> and next_page.php looks something like: <html> <frameset rows="100%","0"> <frame name="topFrame" src="patience.php"> <frame name="bottomFrame"...
  10. Quasibobo

    Multiple radio-buttons

    Hi I need to validate a page with a lot of radiobuttons (dynamicly created bij PHP): <form name="svl"> <input type="radio" name="question_1" value="3"> <input type="radio" name="question_1" value="2"> <input type="radio" name="question_1" value="1"> <input type="radio" name="question_2"...
  11. Quasibobo

    Force client window refresh

    The question only seems simple... I am trying to create an online game, using php/mysql and javascript. Most of the functions I am going to need won't be a problem. One, crucial however, I'm not sure about. A game will allow to play four users (clients) to play against each other. The actions...
  12. Quasibobo

    Fixing a layer after dynamic showing it

    Hello, The problem I'm having is that I am (still) unsuccesfull in fixing a layer after I made it visible with an onMouseover. I know this problably doesn't make any sense so please take a look at http://home.planet.nl/~munst264/stuff/. Go over the black or white square and try to click on of...
  13. Quasibobo

    document.forms[0].submit() doesn't work

    I don't get this: I've got a form (name="toets_2") and this button: <input type="button" name="end" value="END" onClick=\"document.toets_2.submit();> But whenever I want to submit with this button I get this error: Object doesn't support this property or method Why? This (or...
  14. Quasibobo

    Adding backslashes before quotes

    Help please, I am having difficulties with a function of mine working properly. It is a popup which uses the values of some textarea's to build a Preview of the page. But since in the textarea's people can use quotes it sometimes messes up the code for the popup. Does anybody know a function...
  15. Quasibobo

    Right-mouse disable without alert

    Hi, What do I need to change in this script, so the RM-click is disabled without displaying the alert-message? So just disabling the RM-button... if(event.button==2) { alert('I don\'t thinks so!'); return false; } T.I.A Don't eat yellow snow!
  16. Quasibobo

    How to use form name in function?

    Hello, Although the problem title may give you a "duh!!" reaction it isn't thát simple (for me)... I need a function in which I can handle different form names. I already know the function does the job it is supposed to do, but only when it a static form name. The function is as follows...
  17. Quasibobo

    Split a string into two columns

    Hi there, My question isn't that difficult i guess, the answer however remains to be seen.... On a website I'm building I use a rather large body text. In the new lay-out of the site there are two columns in which the text can be display. I would like to be able to split the bodytext string...
  18. Quasibobo

    Return Value of a Function

    Hi there, I've got a pretty easy problem, I guess. I use a wysiwyg-editor which enables my customer to insert hyperlink in to text. The editor however creates absolute path's which I want to alter to relative path's. No sweat so far. I wrote a function: Function absolute_to_relative(str) str...
  19. Quasibobo

    Sigh.... creating different variables in FOR EACH loop

    Ok.... it's me again (huge PHP-fan and ASP-newbie) With ASPsmartUpload I can upload multiple files. Now I'd like to seperate these files one by one. In php it would be something like this: $i=1 FOREACH (file AS myupload.Files) { myFile.$i=file.FileName $i++ } so the files get (for...
  20. Quasibobo

    Equivalent to PHP's $_FILES and isset()

    Once again two newbie-questions: Is there an equivalent to PHP's $_FILES['name']etc.? and do you really need to install something like ASPsmartUpload? Second question: What's the equivalent to PHP's if(!isset($_GET['var'])) || empty($_GET['var'])) my IF NOT...

Part and Inventory Search

Back
Top