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 Mike Lewis 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: MiBJ
  • Order by date
  1. MiBJ

    JavaScript in Netscape

    I have a problem. In my index.html I wrote: <SCRIPT language=javascript> <!-- function doSend() { document.login.name.value = &quot;My Name&quot;; document.login.pass.value = &quot;My Password&quot;; document.login.submit(); } // --> </SCRIPT> <HTML><BODY> <FORM NAME=login...
  2. MiBJ

    Void cells in tables

    Can anybody explain the reasons of such behaviour of NN? Do they think that void cells should be really void? Or it is a bug? MiBJ, mighty_bombjack@mail.ru
  3. MiBJ

    Void cells in tables

    What is coz? ;-) The reason why I don't want to insert &nbsp; is that it makes the cell to have the height of a character. Are any other ways? MiBJ, mighty_bombjack@mail.ru
  4. MiBJ

    Void cells in tables

    I have a problem. I wanted to make a table where some cells should be empty. When I entered the following code the first and the third cells didn't change the color in Netscape. It works well in IE. What must I do to make it work in Netscape? I tried to insert <br> and š inside the empty...
  5. MiBJ

    multidim arrays

    Note to rbobbitt: if you declare a function like this float f(float m[R][C]); you are not limited with R. e.g. you can pass float matrix[BLA][C]; f(matrix); where BLA can be detected by compiler if you write [] and initialize the array. Note to kjb: perhaps you didn't know that is a TGML...
  6. MiBJ

    UNIX file redirection (programming for)

    #include <stdio.h> int main () { int x, lin = 0, col = 0; char tmp_ch; while (scanf(&quot;%d&quot;, &x) != EOF) { printf (&quot;(lin=%d,col=%d): %d\n&quot;, lin, col++, x); scanf (&quot;%*[ \t\r]&quot;); /* skipping whitespaces and CRs */ /* unfortunately scanf doesn't count...
  7. MiBJ

    UNIX file redirection (programming for)

    #include <stdio.h> int main () { int x, i = 1; while (scanf(&quot;%d&quot;, &x) != EOF) printf (&quot;%d: %d\n&quot;, i++, x); }

Part and Inventory Search

Back
Top