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 TouchToneTommy 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: leujel
  • Content: Threads
  • Order by date
  1. leujel

    function to show and hide divs

    I'm a nOOb to javascript. I'm just starting, and can't figure out why my script gives an error. I've made a function that shows a div and hides a variable number of other divs. This is the function: function showdiv(show, hide) { // show div var obj= document.getElementById(show)...
  2. leujel

    Newline problem in page

    Before I begin, excuse me for my bad english... I'm programming a PHP website on my desktop pc (Windows XP, working in Notepad++). The files ar located on a local webserver (Linux Red Hat 9). When I edit the files with my desktop pc and save them, the don't work anymore on Linux webservers...
  3. leujel

    While and/or duplicateMovieClip problem

    This is my problem. I've got to duplicate movieclips dynamically. This happens with the following code: count = 0 while(count < _root.database.aantal) { _root.mc_dummy.duplicateMovieClip("boxx"+count, count); _root["boxx"+count]._x = _root.mc_dummy._x + (20 * count); _root["boxx"+count]._y =...
  4. leujel

    Mouse Over MC gives instance name

    I've got a problem I can't solve. I've made a map of a country with about 100 shops in it (the shops are logo's on the map). Each logo has its own instance name but is't the same MC. This instance name is a unique name which corresponds to a id in a database. My problem is that I can't find...
  5. leujel

    Problem with dynamic textfield and font

    I've got a problem. I'nm busy with a project for a new client. For this i'm working a lot with Flash and lot's of info is shown via dynamic textfields. When I take a look at these pages I notice some letters and numbers are deformed. Not really bad, but bad enough to be noticed by the client...
  6. leujel

    Resort dual boot Mandrake Linux 10 & Win XP Pro

    I've installed Madrake Linux 10 on my cmputer. It has a dualboot together with Windows XP. The standard option in the bootlist is Linux, but I want it to be Windows. Can I make Windows my first boot option after installation or without having to install all over again? Visit http://www.leujel.nl
  7. leujel

    Actionscript problem with else if

    I have made a simple loop in flash that checks if a variable is the integer 5. If it is, it has to look what the value of another variable is. According to that value it has to play a certain frame. But I cant make it work... Why not? Can somebody help me? This is my code: teller = random(100...
  8. leujel

    if not recordset.BOF problem

    I've made a page that checks if a recordset is empty or not. If it's empty it parses a sentence, if it's not empty it loops thru the recordset and parses it all... But When I do this, I get an error. That the object (my recordset) doesn't support eof or bof. This is my code: <!--#include...
  9. leujel

    SQL statement error

    I'm making a page that selects some data from a database. I've done this before, and it wasn't a problem, but now it is.... I've got this error: Microsoft OLE DB Provider for ODBC Drivers (0x80040E10) [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1...

Part and Inventory Search

Back
Top