Jump to content

joecool2005

Members
  • Posts

    245
  • Joined

  • Last visited

Everything posted by joecool2005

  1. joecool2005

    dll file

    Hi all,I have a lot of dll file and I'm not familliar with it.I would like to know, how do I use or to add on my ASP page?Or how to intall it?ThxJoe
  2. Thank you very much Joe
  3. Thank you.But now on my code I'm trying to do like you did.---------------------------------------------------------------var oWindowsT = new Object();var popupBlocked="";openWindowCheck("http://www.w3schools.com");function openWindowCheck(pageId) { var sPar = "width=500,height=500"; handle = window.open(pageId,"test",sPar); oWindowsT[pageId] = handle; setTimeout("checkOpen(\"" + pageId+ "\")",1000);}function checkOpen(pageId) { var popupBlocked=((!oWindowsT[pageId]) || (oWindowsT[pageId].closed)) ? true : false; }setTimeout('alert(popupBlocked)', 1500);---------------------------------------------------------------The popupBlocked variable is still empty. Do you know why? I supposed to see true or false.ThxJoe
  4. Hi,this is the code:---------------------------------------var str=""function test1(id) { id=true setTimeout("test2(\"" + id+ "\")",1000);}function test2(id){ if(id) str="hello"; }var bool=""test1(bool)alert(str)---------------------------------------I have problem with settimeout. Why str is still empty?Thx Joe
  5. Hi,Is it possible to detect if the yahoo toobar appears on the browser?Thx Joe
  6. Hi,How do you redirect a address into a new window.?ThxJoe
  7. joecool2005

    detect SSL

    Hi,Is it possible to detect the SSL on HTTP and HTTPS?If yes how?ThxJoe
  8. Hi,Is it possible to detect the SSL on HTTP and HTTPS?If yes how?ThxJoe
  9. Hi,When a window is pop up, is it possible to dertermine if the window is closed by a click or by a pop up stopper.thxJoe
  10. Hi all,On ASP page ,when I use <%@ Language=Javascript%> in the 1st line, how can I add ASP code after? Anytime I try to write a ASP code, it shows me error. How can I fix it? Is there anything I need to add to go back on ASP code?Thx Joe
  11. Hi all,On ASP page ,when I use <%@ Language=Javascript%> in the 1st line, how can I add ASP code after? Anytime I try to write a ASP code, it shows me error. How can I fix it? Is there anything I need to add to go back on ASP code?Thx Joe
  12. Hi all,When I click to a link on a page, is it possible to disable the back and forward button(standard button) and the address bar, on the next page? I don't want to do a pop up window.ThxJoe
  13. Hi all,When I click to a link on a page, is it possible to disable the back and forward button(standard button) and the address bar, on the next page? I don't want to do a pop up window.ThxJoe
  14. Hi all,When I click to a link on a page, is it possible to disable the back and forward button(standard button) and the address bar, on the next page? I don't want to do a pop up window.ThxJoe
  15. Hi all,When you put a size of an original image on the HTML code(ex: <img src="store_ufile.gif" width="179" height="75">), the quality of the image change. Is there a program or a code that can change the size without affecting the quality?ThxJoe
  16. Hi all,I don't know how to use or create an Action TAG. Do you know any example that I can find?The Action Tag is used to determine performance of an advertiser's campaign.Thx Joe
  17. Just to let you know that you can have surprise by using another browserJoe
  18. There is some code that Netscape don't understand like<a href=# ...><label>Also on explorer the alignments of textfield are much nicer than other browser.You have no choice to test all browser.Joe
  19. Hi all,I always have error message pop up. Is it possible to use try() function only without catch() function?I just want to run the code but I don't want to handle the exception. If I need to use catch() what should I write inside?Thx Joe
  20. Hi all,Is it possible to check the lenght of textfield in pixel? If yes, how?Thx Joe
  21. Hi all,With this code:<style type="text/css">.spanLeft{width : auto;float : left;text-align : left;FONT-SIZE: 10pt;padding: 4px;}</style><table border=1 width=100% cellpadding=0 cellspacing=0><tr><td align=right><span class=spanleft>Deduction for foreign experts operating a stock exchange business or a securities clearing-house business</span><table border=1 width=40% valign='top' ><tr><td valign='top' align=right><nobr>$<input type="text" size=10></nobr></td></tr></table></td></tr></table>When I test on explorer, the text box jump in the next line automaticaly when the line is too long. But on mozilla or firefox, it continues on the same line. So how I can jump to the next line automaticaly on mozilla or firefox?thx joe
  22. joecool2005

    line too long

    Hi all,With this code:<style type="text/css">.spanLeft{ width : auto; float : left; text-align : left; FONT-SIZE: 10pt; padding: 4px;}</style><table border=1 width=100% cellpadding=0 cellspacing=0><tr><td align=right><span class=spanleft>Deduction for foreign experts operating a stock exchange business or a securities clearing-house business</span><table border=1 width=40% valign='top' ><tr><td valign='top' align=right><nobr>$<input type="text" size=10></nobr></td></tr></table></td></tr></table>When I test on explorer, the text box jump in the next line automaticaly when the line is too long. But on mozilla or firefox, it continues on the same line. So how I can jump to the next line automaticaly on mozilla or firefox?thx joe
  23. Hi all,On the code below, sometime on the different browser the text box jump automatically to the next when the line is too long without <br> . And sometime it stays in the same line. Which attribute determine that?<form>Specify the Quebec drug insurance situation that applied to you in 2005.<input type="text" name="firstname"></form>Thx Joe
  24. Hi all,On the code below, sometime on the different browser the text box jump automatically to the next when the line is too long without <br> . And sometime it stays in the same line. Which attribute determine that?<form>Specify the Quebec drug insurance situation that applied to you in 2005.<input type="text" name="firstname"></form>Thx Joe
  25. Hi all,How do you check the maximum length of a select box?<SELECT name=select1> <OPTION selected>test</OPTION> <OPTION>this is test</OPTION> <OPTION>this is another test</OPTION></SELECT>I want the <select> return 20 for the maximum length.ThxJoe
×
×
  • Create New...