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!

Recent content by likeopensource

  1. likeopensource

    How to change password for postgres?

    Thanks Good way to learn I never used pgaccess before
  2. likeopensource

    Newbie Question

    give yourself a star
  3. likeopensource

    Disabling a field

    in html if you use disabled the variables normally do not pass either use readonly tag e.g. <input type=&quot;text&quot; name=&quot;one&quot; readonly> or try using some javascript <input type=&quot;hidden&quot; name=&quot;two&quot; value=&quot;document.form1.one.value&quot;> I still have not...
  4. likeopensource

    Can someone please explain this syntax?

    hey give a star to sleipnir214
  5. likeopensource

    How do you make a window always stay at the front?

    you need to use the self.focus() function on the onBlur event This has to be called on the popup first make a simple window.open call. <html> <HEAD> <SCRIPT LANGUAGE=&quot;JavaScript&quot;> <!-- Begin function topWindow(){ popup =...
  6. likeopensource

    Cancel alert after javascript:window.close()

    mwolf00 The script that you mentioned here and in my post did not really work. What I had done was create a window using the window.open method. There I had given an onClick event using your code. The browser still asked for confirmation. I was using IE 5.0 When I used the window.close()...
  7. likeopensource

    dynamic drop down boxes

    I have done this for Internet explorer Basically you need to create two arrays in JSP. The first may have game name ,game code and player name. Here game code is a primary key. The second will have player name and and game code. I am assuming that you are actually passing the game code when you...
  8. likeopensource

    Redirect and new window

    you need to use window.parent.location This is an example 1.htm is the first file, abc.htm is the popup,def.htm the redirection 1.htm <html> <head> <script language=&quot;JavaScript&quot;> function redopen() { window.open('abc.htm','trial'); window.parent.location = 'def.htm'; }...
  9. likeopensource

    Unhide form field if value from another field = other

    hello humble programmer I have a code , a mixture of Javascript and ASP There are 2 related dropboxes. If the user selects a value in one, automatically the second dropbox is enabled and filled with values. If the user selects a different item in the first dropbox, the second dropboxes...
  10. likeopensource

    Checkboxed

    you could use this I have checked it in netscape 7 and ie 5.0 replace the names of the checkboxes <HTML> <HEAD> <script language=&quot;JavaScript&quot;> function test(passed) { window.document.FORM1.checkbox2.disabled =false; window.document.FORM1.checkbox3.disabled =false...
  11. likeopensource

    PHP vs JSP

    I have been told this too many times and cannot answer. Since JSP(Java Server Pages) is compiled only once while PHP is interpreted every time, after the first compilation JSP is much faster than PHP. I have read at many places that PHP is the fastest in scripting languages. How do I answer this?
  12. likeopensource

    IE sniff on mac

    (navigator.userAgent.toLowerCase().indexOf(&quot;mac&quot;)!=-1) && navigator.userAgent.toLowerCase().indexOf(&quot;msie&quot;) != -1
  13. likeopensource

    dynamic listboxes

    Jeff Thanks This is a new way of doing it, I will try to integrate it with my arrays
  14. likeopensource

    Installing and downloading php,mysql,postgresql for linux

    Hi guys I need to install php,mysql and postgresql into our linux server (SUSE 7.0). I never had to do everything as I was using a preconfigured Redhat version earlier. I had expected it to have php but when I tried to run a test file, it said &quot;application x-httpd-php not found&quot;. I...
  15. likeopensource

    Need webpage to fit entire screen regardless of resolution

    one thing that you may want to add for netscape , it sees the height less by 19 pixels if you are using Netscape 4x This code basically if (navigator.appVersion.indexOf(&quot;4.&quot;) != -1 && navigator.appName.indexOf(&quot;Explorer&quot;) != -1) { Scrnht = screen.height; }...

Part and Inventory Search

Back
Top