I have a problem with a Windows Forms control wrapped up in a DLL and deployed to IE within an Object tag. The object should return a string which Javascript puts into a hidden field ready for posting back to the server. This is an approach I have used several times, but I am now getting the dreaded "Object does not support this method o...
Specifically I want to be able to detect that an application is running and disallow the user from continuing the install process (via disabling the Next button, etc.)
Seems like there's no way to do this without writing a custom script, but this seems like such a basic utility that I feel like I'm overlooking something.
Thanks in adva...
Hi,
I have done changes in registry (proxy settings) via Windows programming code.
I have to restart (reopen) Internet Explorer each time I run the code to make those changes take effect.
Is there any API in Windows programming through which I can notify Internet Explorer or Windows that changes are made to the registry and there will...
Oh, I am stuck again on this quiet annoying problem. I am trying to do a little automated browsing using the axWebBrowser component and it worked before. Now all of a sudden I get the following message when I try to browse to a page.
Navigation to the webpage was canceled
What you can try:
Refresh the page.
I totally di...
I have a form where user fills up (jsp page). One of the input is of type "file". There is a preview button which will pop up a new window and using javascript to layout the filled up form for display. The "file" input will be display as a hyperlink and when the user clicked on the hyperlink, it is supposed to open the attachment. So if ...
Example code:
<html>
<head>
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="jquery-ui-1.7.1.custom.min.js" type="text/javascript"></script>
</head>
<body>
<table border="1" style="width:100%">
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
...
So, there are 2 issues here:
why does it look different (on IE it is bolder, more anti-aliased)
how do I make the Mozilla rendering look like the IE one and what impact does this solution have (I am looking for minimal changes, so solutions such as - flash, silverlight or using images are out of the question)
...
Hello All,
I have a bit of Javascript code that creates a "save friendly" version of a webpage.
child = window.open("","child");
child.document.write(htmlPage);
"htmlPage" is the basic html of the page with all the javascript references taken out, a different set of header images references, etc.
Everything displays perfect...
Hi,
I have a menu screen that for various reasons consists of a number of buttons as separate flash movies. When a button inside these movies is clicked, it is supposed to call a javascript function to move to the appropriate page. It works fine in firefox, but is currently failing in IE7. I don't have an IE6 handy to test on.
This is th...
I set the width using:
style="width: 200px"
When the browser window is narrow, the td is the correct width. When I make the window wide, the td expands wider than what I set it to. Any ideas?
...
I am trying to find out a way of showing hierarchical data ( 3/4 levels nested data) in grid ( in IE6+ ).
I want to show hierarchical data with vales for all columns at the parent and child nodes.
Also I want to freeze first two columns in the grid.
Be able to expand ( drill down ) the grid view by loading data on demand ( ajax)
lookin...
I am using Ludo van den Boom's treeTable jquery plugin to represent a table as a expandable tree. Once my data set becomes large both Firefox and IE timeout on executing the call to the plugin in my $(document).ready.
The plugin's public method is:
$.fn.treeTable = function(opts) {
options = $.extend({}, $.fn.treeTable.defaults, ...
jQuery provides a browser neutral library for accessing and manipulating the DOM. This is good.
However I'm looking for a counterpart for the visual side of things - I need to build pixel measured interfaces, without wasting so much time testing and correcting cross browser issues (buttons having crazy margins in IE, or using the wrong ...
I want to get print out invoice but also wanna set margins and page size with javascript or vbscript or anything else. is there any tutorial about that ?
and would you share something about ie8 to get print out easly?
...
In order to test web pages,
currently my page works file with my IE,
but not with others.
Is it possible to have multiple versions installed ?
...
Hi,
I have the following code to animate the showing/hiding of a div.
$(".headerClosed, .headerOpen").live("click", function(){
$(this).next().slideToggle("slow");
}
This shows and hides a div with the following markup:
<div class="details">
<p>Date</p>
<p>Text</p>
</div>
The problem is in IE(surprise, surprise!) when the di...
Possible Duplicate:
Visual Studio - Prevent stopping debugging from closing Internet Explorer
When I start debugging my web application in Visual Studio 2008, a new Internet Explorer window opens. When I finish debugging, that new window, along with all previously-open IE windows, will be closed.
I'm tired of losing all open we...
while executing the code in visual studio 2008, the defaullt browser(ie) is getting opened.But on closing that particular browser the currently opened browsers in the system are getting closed automattically
Please help me to find this solution?
...
I have a client with a resolution Width of 1200 on their monitor and I need to maximize the width of my web site but I don't want the client to have to use the horizontal scroll bar. What is the max width you can use in a website in IE 7 with a screen resolution of 1200 without needing to use a horizontal scroll bar(Other users will hav...
I've been looking for a long time for a way to have a bitmap from a VML document.
In fact, I working on a few libs that use the tag, so I have no problem for anything except for IE (of course) because I'm using ExCanvas in IE, but I'd like to have a bitmap from the generated "canvas" (which is in fact VML).
I've been looking for a few ...