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!

Recent content by staffa

  1. staffa

    Sticky forms

    I postet too soon. Thanks Vragabond, that was exactly that i needed. Why destroy other people, when you already have succes in destroying yourself...
  2. staffa

    Sticky forms

    I have already tried that. Then i saw a post on another forum saing that the way i have written my code is the correct way to do it, so now i'm lost... Why destroy other people, when you already have succes in destroying yourself...
  3. staffa

    Sticky forms

    I have a small problem getting this (code underneath) to work. It's very simple, but i'm making myself blind trying to figure out what i'm missing. <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <table> <tr> <td>...
  4. staffa

    Eliminating Double Values from a Table

    Information is gold. I didn't know INSERT IGNORE even exists :-) Thanks TonyGroves. staffa
  5. staffa

    Eliminating Double Values from a Table

    Have you tryed to SELECT DISTINCT , this way you won't get dublicate entryes from the DB. staffa
  6. staffa

    open fullscreen window

    The problem is that it only maximize the new window instead of going into fullscreen mode. It works fine without SP2, but i have to use SP2 at work, so I was hoping that someone knew how to get around this. staffa
  7. staffa

    open fullscreen window

    After installing SP2 for win xp, I got problems opening a page in fullscreen mode. Does anyone know a work around for this problem? My code is: <script language="javascript"> <!-- window.open('index2.php','InfoScreen','fullscreen=yes,width=' + window.screen.availWidth + ',height=' +...
  8. staffa

    Changing table & td width

    Thanks again. I didn't think of the reloading. But it's odd that i tryed using href="javascript:void()" but it didn't work, but now it does. staffa
  9. staffa

    Closing a Child Window ??

    Try with onClick="self.close()" staffa
  10. staffa

    Changing table & td width

    Thanks. I forgot to describe my problem earlier. The units suffix wasn't a problem, it gives the same result, but emidiatly after changing to 700px, it changes back. I've tryed using this.blur() in many ways, but then it doesn't change, so I'm really lost. staffa
  11. staffa

    Changing table & td width

    I'm having problems changing the width of a table and a td inside the table. My code is: <script type="text/javascript" language="javascript"> function resizeWin(w){ document.getElementById("mainTBL").style.width = w; w2 = w - 40; document.getElementById("mainHeaderTD").style.width = w2; }...
  12. staffa

    window.opener.name is blank

    If the opener page generates the popup window onclick, then no other sites is able to open the popup. example: <html> <head> </head> <body> <script> <!-- function doServices(){ var...
  13. staffa

    window.opener.name is blank

    If you want to give a popup window a title, then you have to give it in the <title></title> of the page that you open. The wdwServices name i wrote is a script handler name for the new window. I don't have a idea yet on how to do the other thing... staffa
  14. staffa

    window.opener.name is blank

    No wdwServices is not the opener, it's the name of the new window. But are you sure that the "url + querystring" is correct, because it looks like it needs some quotation. staffa
  15. staffa

    window.opener.name is blank

    Try filling all the parameters with more info. example: window.open('','wdwServices','fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=400,height=500,left=220,top=130'); staffa

Part and Inventory Search

Back
Top