Jump to content

Search the Community

Showing results for tags 'view'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 3 results

  1. To create an output like this: https://drive.google.com/file/d/1NlImnhE35Zattw4KKH7gVrQcGcMsSlRJ/view?usp=sharing Do i create a stored procedure or view that would allow this end result above? SQL: https://drive.google.com/file/d/1mkBA8Uc8tZjhWdzqGaxLAPnNoqpBSfMZ/view?usp=sharing
  2. We have a web page that has a dark background and in IE, the black lettering is on dark background and you can't read it. In other browsers such as Chrome & Firefox, it displays correctly, the box that has the text is white and the lettering is black. My co-web-designer is telling me that Microsoft & Apple do not follow the rules and there is nothing you can do about it. I disagree there has to be a solution. The other day I edited one of the pages and it looked fine white box, black lettering, everything looked fine on my comptuer with all 3 browsers. i go back today and it has reverted back to the text box having the background of the entire web page and so is unreadable. I would like to know --- does IE truly not follow the rules? Is there no solution to this problem? If we change the background does that interfere with php programming? Thank you,Deb
  3. Hi, I am designing a web application, and I have troubles when I update a view in aproximatetly the 50th time. I put the 3D object in the view using: new_view =new Viewer( 3D_Object, 250, 250, 5); document.getElementById(0).appendChild(new_view.gl.canvas); And when I want to update the view, because I manipulate this 3D object, I use: old_view = new_view;new_view =new Viewer( 3D_Object, 250, 250, 5); document.getElementById(0).removeChild(old_view.gl.canvas);document.getElementById(0).appendChild(new_view.gl.canvas); The updates work well in the firts 49 times aproximatetly, but in the time 50 the program hangs. In the firts times: When the code breaks in the 50th time: What is wrong? Tanks
×
×
  • Create New...