CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Zvona

Page 1 of 4 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    2
    Views
    794

    Only way I can figure it out :

    Only way I can figure it out :
    <style type="text/css" media="print">
    HTML,BODY {display:none;visibility:hidden;}
    </style>

    This, however doesn't prevent printing a web document, but will print a...
  2. Thread: Css

    by Zvona
    Replies
    3
    Views
    809

    Umm..where's the actual question?

    Umm..where's the actual question?
  3. Replies
    6
    Views
    787

    No problem, but I think it should be text/html ;).

    No problem, but I think it should be text/html ;).
  4. Replies
    6
    Views
    787

    First thing comes into my mind: Server is sending...

    First thing comes into my mind: Server is sending your file as text/plain instead of text/html. This causes improper rendering in Netscape.
  5. Meaning what? Moving them physically (dragging)?...

    Meaning what? Moving them physically (dragging)?

    If you remove objects, other objects are automatically moved (unless they've positioned absolutely). Otherwise, you can set their display to none...
  6. http://www24.brinkster.com/zvona/appendChild.html...

    http://www24.brinkster.com/zvona/appendChild.html

    This example is for creating/removing image elements. Hope you're able to customize it for your needs.
  7. http://www24.brinkster.com/zvona/formCalculate.htm...

    http://www24.brinkster.com/zvona/formCalculate.html
  8. Replies
    2
    Views
    653

    I've written these functions for exclusive use,...

    I've written these functions for exclusive use, but I'll publish them here in order to answer both of your questions :


    var sGreen = "#80FF80";
    var sRed = "#FF8080";
    var sOld = "";

    function...
  9. Thread: Timeout

    by Zvona
    Replies
    1
    Views
    666

    This is server-side scripting issue, but due to...

    This is server-side scripting issue, but due to light solution, I'll post it below :

    <%
    Session.timeout = 20
    %>

    This will set timeout as 20 minutes.
    If you want to force an user to log-out...
  10. Replies
    3
    Views
    857

    parent.nameOfTheFrame.focus();...

    parent.nameOfTheFrame.focus();
    parent.nameOfTheFrame.print();
  11. Replies
    3
    Views
    938

    Additional example about custom query box...

    Additional example about custom query box (drop-down) : http://www24.brinkster.com/zvona/queryCombo.html
  12. Replies
    10
    Views
    1,220

    http://www24.brinkster.com/zvona/checkboxCheck.htm...

    http://www24.brinkster.com/zvona/checkboxCheck.html
  13. Replies
    3
    Views
    1,351

    Re: response.redirect question ?

    This is HTML :
    <A HREF="default.asp?fname=<%=filename%>">Continue</A>

    This is server-side scripting :
    <%
    Response.Redirect("http://www.google.com")
    %>

    Notice the diffence?
  14. Thread: Alertbox ?

    by Zvona
    Replies
    9
    Views
    1,229

    You can find additional information about...

    You can find additional information about creating custom dialogs at : http://www24.brinkster.com/zvona/zProcessing.html

    Example above is used for displaying a custom dialog (with custom titlebar)...
  15. Replies
    2
    Views
    673

    ANY source code can be decrypted with (to the...

    ANY source code can be decrypted with (to the address bar) :
    javascript&#58;alert(document.documentElement.innerHTML);
  16. Replies
    3
    Views
    1,195

    Client side JS: location.href = sURL; eg....

    Client side JS:
    location.href = sURL;
    eg. location.href = "http://www.google.com";

    Server-side VBS:
    Response.Redirect(sURL)
    eg Response.Redirect("http://www.google.com")
  17. Replies
    1
    Views
    869

    <input type="text" style="text-align:right;" value="Aligned to Right" />

    Info : http://www.w3.org/TR/CSS1#text-align
    Tutorial : http://www.w3schools.com/css/pr_text_text-align.asp
  18. Replies
    3
    Views
    739

    try :

    try :
    <a href="javascript&amp;#58;execFunction();">Foobar</a>
    I mean replacing semi-colon with an entity. This sustains code in correct form. Also double quotes should be replaced with &amp;quot;.

    To a...
  19. Replies
    3
    Views
    837

    In addition : ...

    In addition :

    <script type="text/javascript">
    <!--
    var ivRefresh = setInterval("location.reload()",10000);
    //-->
    </script>
    Now, you can also capture and clear interval with method...
  20. Replies
    2
    Views
    3,854

    That's because hand is instandard value for...

    That's because hand is instandard value for property cursor. Correct value is pointer. This works both on IE and NS.
  21. Replies
    1
    Views
    1,580

    Re: javascript "execCommand" ?

    Hello,

    document.execCommand() is a proprietary method for IE and can't be executed with other browsers.

    More information about the method can be found from MSDN Library.
  22. Replies
    1
    Views
    5,726

    <!-- Example Written by Zvona -->
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html...
  23. Replies
    2
    Views
    1,060

    http://www24.brinkster.com/zvona/checkboxCheck.htm...

    http://www24.brinkster.com/zvona/checkboxCheck.html
  24. Replies
    4
    Views
    7,082

    valid XHTML :

    valid XHTML :
    <form action="">
    <input type="button" value="Google" onclick="location.href = 'http://www.google.com';" />
    </form>
  25. Replies
    3
    Views
    680

    open('about:blank','','width=200,height=200,left=4...

    open('about:blank','','width=200,height=200,left=400,top=400');
    puuh..BBS settings are messing the code.. :(
Results 1 to 25 of 99
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured