Software Development Network Logo
  • Visual Studio
  • Windows Forms
  • Visual C++
  • Smart Devicet
  • SharePoint Products
  • .NET Development
  • Visual C#
  • SQL Server
  • Microsoft ISV
  • VS Team System
  • Visual FoxPro
  • Visual Basic
  • Windows Vista
  • Audio and Video
  • IE Development

Software Development Network >> IE Development

IE Development

New Question

Where is the best place to put settings button in IE 7?
Purge Basket Error
Another error when trying to use catalog or marketing manager refersh site cache option
Auto Generate Properties
Help: Outlook 2007 & Search Companion - Disabling WDS
Trouble with performing add remove programs.
Is it possible to detect if a specific BHO is installed
XNA Development Laptop
Z-index bug
"Access is denied"

Top Answerers

Johnny_Jones91
Testsubject
KoNig
Ned Rise
cosminb
fel lobo
WebService4Ever
DreamingBear
Moustafa Arafa
Anthony Carabbio
sitemap
Only Title

Answer Questions

  • jkas Discount Eligibility Not Working

    I've setup a discount where a 20% discount is applied for items whose price exceeds $100.00 This works just fine. However, if I define an eligibility requirement (discount eligibility tab) for a specific user based on their email, and I log into the website as that user, the discount does NOT get applied. Am I missing something Are you using the Starter Site It should be wired up by default. If not, make sure you add the user object profile to the basket pipeline before running it. This should look something like: using (PipelineInfo pipeline = new PipelineInfo("basket", OrderPipelineType.Basket )) { if (CommerceContext.Current.UserProfile != null ) { pipeline ...Show All

  • Isonduil Wrap selection or IHTMLTxtRange in Font or Span tags of a given class

    I am trying to wrap the users selection (or a IHTMLTxtRange) with font or span tags that have a given class. The best that I can do now is: pRangeToRender.execCommand("BackColor", false, SOMECOLOR) I then use IHTMLElementCollection allEls = doc.getElementsByTagName("FONT"); and check each tag if it's SOMECOLOR. If it is, I clear the color and set the font tag's class. This is quite slow on large selection. Is there some better way to do it This is kind of a shot in the dark as I have never tried this, but perhaps you could retrieve the block of text using pRangeToRender.htmlText. You could then wrap that with a SPAN tag, and then try to re-insert it by setting the pRangeToRender.text ...Show All

  • Elad_23 Three problems with IE 7 - rollovers, cut-off text and cut-off images

    Hello all, I thought I'd finished designing a new site which works fine in IE6, Firefox 2, Opera and Netscape - until I tried it in IE 7! Problem 1 (most important) - Tabbed CSS menu moves on rollover URL = http://www.toucanmusic.co.uk/test/index.php CSS = http://www.toucanmusic.co.uk/test/toucan.css The tabbed menu at the top works fine in all other browsers I've tried, however in IE 7 the menu initially loads up correctly then, when you rollover the tabs, a white gap appears between the tabs and the blue bar underneath. Refresh the page once and the gap remains, but refresh it a second time and it disappears! Not being an expert at CSS, I'm using a variation of the "fitted doors" menu found at http://www.cssplay.co.uk/menus/do ...Show All

  • Aaron Marten - MSFT Three problems with IE 7 - rollovers, cut-off text and cut-off images

    Hello all, I thought I'd finished designing a new site which works fine in IE6, Firefox 2, Opera and Netscape - until I tried it in IE 7! Problem 1 (most important) - Tabbed CSS menu moves on rollover URL = http://www.toucanmusic.co.uk/test/index.php CSS = http://www.toucanmusic.co.uk/test/toucan.css The tabbed menu at the top works fine in all other browsers I've tried, however in IE 7 the menu initially loads up correctly then, when you rollover the tabs, a white gap appears between the tabs and the blue bar underneath. Refresh the page once and the gap remains, but refresh it a second time and it disappears! Not being an expert at CSS, I'm using a variation of the "fitted doors" menu found at http://www.cssplay.co.uk/menus/do ...Show All

  • AndyMills MHTML file generation from WebBrowser's Document

    hi, I have written a c# BHO. Can i generate a MHTML file from the currently navigated document. I have access to this document from IWebBrowser interface. So when protected void DocumentComplete(object pDisp, ref object URL) { try { if (Marshal.Equals(m_pIWebBrowser2, pDisp)) { //Here i can use "m_pIWebBrowser2.Document" to get access to that document } } } But can i use this Document reference to generate a MHTML file, so that i can see the complete page without missing holes in offline mode. thanks Ratnesh This will save the document. However there may still be some images and such missing. UCOMIPersistFile pf = (UCOMIPersistFile) d ...Show All

  • Elder Morales IE 7 opening to Run Once page with error on it.

    I downloaded updates last week. I have been using IE7 for a while with no problem. I dwnloaded the updates. Now when I open my browser the page tries to go to http://runonce.msn.com/runonce2.aspx . There is an error reported for this page and it will not open up I get a blue screen. How do I eliminate this I have my home page set in the tools section but when opening it won't go to my home page until I hit the home button on the tool bar. No I have not tried another user. I can and then I will download it again and reinstall it. Thanks. I tried the solution I typed in gpedit.msc and the run box and windows error appeared that said that windows could not fine the file. I s ...Show All

  • Twice_Resurrected How to control a explorer bar in extension?

    I wrote a IE extension include a toolbar and a explorer bar, how to control the explorer bar from toolbar show or hide it, set URL, etc ... thank you for reply, it does work, but I want ask: how to control explorer bar programmly Have a look at: http://msdn.microsoft.com/library/default.asp url=/workshop/browser/ext/tutorials/button.asp Let me know if you get it working...I couldnt. thank you very much, I know how to show and hide a explorer side by by a toolbar button, But can you tell me how to do it in my IE toolbar (IE extension wrote by myself) Hi, Send us your explorer bar dll and I will package it for you with a toolbar button to toggle its view. I have written the utilities to generate inno se ...Show All

  • Stephen Crabb JavaScript Detect browser close IE 7

    We have an application that logs into a system, we need to trap when a user may close the browser with the (X). In IE6 we can do this succesfully with the following code In body tag onUnload = "handleBrowserClose();" function handleBrowserClose() { if (screenTop > 9999) { //handle logout event } } Unfortunetly since IE7 the screenTop now actually contains the actually value of the top position. Does anyone have any suggestions on how to fix this in IE7 or a different way to trap that a user clicks the (X) button to close IE7 All of the above sound good, but unfortunetly I am not using ASP or PHP. We are using JSP, do you have any further thoughts on this with JSP ...Show All

  • Peter D.252325 Is it possible to create .net object in javascript?

    May be its a stange question, but... Is it possible to create an instance of the System.Drawing.Graphics object (or something like that) from a window handle in javascript (VBScript, JScript) The whole problem in next: I have some COM object created within the IE window, and I need to draw something above it window. It's easy to do with win32, but have no idea how to implement it on a client. what you are asking is beyond the reach of Javascript. You must use some other methods such as ActiveX how about a windowless ActiveX Do you mean create my own windowless ActiveX control and implemment there graphic futures I need Just wanted to use something that is already exists on a client machi ...Show All

  • BobInVermont WDS crash under Citrix

    Hello We have 2 Citrix-Servers on W3k Standard Server. The users are connecting to the servers with ThinClients over Citrix. We have now some multiple entities: 1. The WDS does not start at logon and when the User starts it, the message "WDS isn't running" is diplayed. The strange thing is, it is running... 2. The message "The WDS index isn't working properly. To fix this problem, you'll need to restart your computer, and you may need to rebuild the index. Select one of the following options..." is displayed. 3. Application Error The exception Breakpoint. A breakpoint has been reached (0x80000003) occurred in the application at location 0x7c822583 WDS version 2.6.5 with the patch Any idea how we can ...Show All

  • toreddie Is MS trying to throw away menu bar?

    In IE7, classic menu bar is disabled by default. In Office 2007, there is not menu bar at all. Also the traditional toolbar is gone. I can't find a way to create my own custom toolbar too. What's happening I know menu bar is very classic and not pretty, but it is one single place that I am 100% sure that I can get all the features from a program. I don't want to lose it. Guess who's the major user/buyer of Microsoft Office products ... give you a hint, it's not you, the developer, it's the people who sign off on budgets, and they tend to be management types who give presentations. That said ... apparently you're just a coder/programmer, and not a developer or architect ... a lot of us developers ...Show All

  • bessermt Script error invalid character using the WebBrowser control

    One of our applications was broken after installing IE7. We narrowed the problem down to the below: WebBrowser browser = new WebBrowser(); browser.DocumentText = "<script src=\"file://c:\test\foo.js\"></script><p>test</p>"; This code works fine under IE6, but when running on IE7 you get the error: Line: 2 Char:1 Error: Invalid Character Code: 0 URL: about:blank It doesn't matter what is in the foo.js file, it can be completely blank and you will get the error. If you replace the file://c:\test\foo.js with a valid http URL (Internet zone), it works fine. If you create a file with the contents and load it into the control using browser.Navigate() it also loads fine. So it seems related to ...Show All

  • kforrey Protocol Handlers in WDS 3

    Can anyone tell me what Interfaces have to be implemented for a wds3 PH Also where to find the Interface definintions (preferably for C#) How do we install PH's for wds3 Thanks - I was watching http://forums.microsoft.com/MSDN/showpost.aspx postid=809276&siteid=1, so I just saw your last response. I'm trying to write a protocol handler but keep apparently chasing my tail ending up mixing v2.x and v3 stuff. And not really being clear what interfaces are required by which. I certainly get the impression much of this ( http://addins.msn.com/devguide.aspx ) is outdated. Paul, I've referred parts of your question to one of our developers to a ...Show All

  • interpro1 Float Margin Goes Away in IE7

    I am having a problem in which a page I developed breaks under IE7 only. Try it: Go to http://www.gordon.edu/alumni Click on the alumni office email at the bottom of the page After the window opens, move your mouse You will see that the entire body in the middle column has moved way over to the left, beneath the first column. The link has an image in it (the @ symbol... our way of blocking spiders from stealing our email addresses) The problem only occurs when the user clicks on a link containing an image . Text links do not cause this problem. The middle column is a float that is defined like this: #Column2 {   float: left;   width: 376px;   margin: 0 14px 2em 199px; */  & ...Show All

  • jackrudolf IE6 & IE7 Concurrently

    From my browsing and reading the forums and IE7 website, it appears that IE6 and IE7 cannot run concurrently. If this is the case, is there any feature in IE7 that allow you to preview what a webpage would look like in IE6. It really would be a pain to have to view every web page in development on a different PC just to see how IE6 and IE7 would render it. Hope this helps, my brothers.. http://tredosoft.com/Multiple_IE Works like a dream for me. A colleague suggested running ie6 in a virtual machine. Yecch! Thank you, Thank you!! I just installed this and works great. Finally an answer, spread the word! Here, here! Excellent point. Is it not lame that Microsoft does this to us ...Show All

262728293031323334353637383940414243

©2008 Software Development Network

powered by phorum