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 SkipVought 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: likeopensource
  • Order by date
  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; }...
  16. likeopensource

    dynamic listboxes

    This is the code q_hotel=&quot; select event_name,event_id from m_event order by event_id &quot;; st1 = con.createStatement(); rs1 = st1.executeQuery(q_hotel); while(rs1.next()) { count_en++; } count_en<br>&quot;); e_name = new String[count_en*2]; rs1.close()...
  17. likeopensource

    dynamic listboxes

    I have at least 2 list boxes Both are populated from the database Depending on what is selected in one checkbox, the values in the second listbox change I have been able to do this for Internet explorer, does someone know of a solution in Netscape. I have done this using a mix of Javascript and...
  18. likeopensource

    sql:selecting the third highest and fifth highest values

    Thanks ,the problem is solved A couple of years earlier I got stuck in MS SQL Server solving this. Then last week I was asked this in an interview.
  19. likeopensource

    Change all city names to proper case

    Not exactly what you want, this is an example of creating proper case in PHP function convert2proper($strVal){ $iPos = 0; $strValTmp = &quot;&quot;; do { $iSpace = strpos($strVal,&quot; &quot;, $iPos); $strValTmp .= strtoupper(substr($strVal...
  20. likeopensource

    Problem getting the Floppy Drive to work

    Guys I did some R&D, this is what has happened. One of the cables attached to the floppy was disconnected. I discovered that when the floppy drive refused to open in Windows as well.My fault. After connecting the cable,I created a directory in /mnt called floppy. Then I wrote a line in...

Part and Inventory Search

Back
Top