0
votes
1answer
25 views

Selected text color and background color on WebBrowser Control

I'm having a problem when trying to change the highlight color of selected text in WebBrowser Control. What I'm trying to do is making the selected text not hightlighted. I used this css. ...
0
votes
1answer
151 views

White space padding in WebBrowser control

I'm trying to display image in WebBrowser control with this code: string captcha = "<img src=\"http://www.reddit.com/captcha/{0}/.png\" border=\"0\"></img>"; webBrowser1.DocumentText = ...
0
votes
1answer
140 views

Make a web browser as modal popup window in my web site

Hi guys I just found out that it's possible to implement a draggable modal popup using web browser itself.that how tinymce and joomla and other popular frameworks use it. And my questions is how can ...
0
votes
1answer
288 views

Load external files such as css into webbrowser control

I'm embedding a web page in my program using this method: WebBrowser1.DocumentText = "<b>hello</b> world <img src=""/images/amiga.png"" />" so the html is in the program, but I ...
1
vote
3answers
71 views

Completely linkable li element

I need to make linkable an entire <li> or <tr> element, someone suggest me to use javascript, with an onclick action. function doNav(url) { document.location.href = url; ...
2
votes
1answer
152 views

Fix diffrent text amount to web browser content

I have a web browser in my win form I'm filling it's content with some text for each time(text size in each loop almost the same size). my web browser size is fixed i want to aromatically fix my ...
0
votes
3answers
408 views

Custom cursor doesn't work in IE9?

I have a web browser control in my form. i used a custom cursor in my CSS code.every things fine in IE8 Css Code cursor: url(AppDirectiry\Classes\QClasses\ClsDesignHtml\Cursors\arrow.ani); but ...
0
votes
1answer
110 views

JavaScript generated web page issue

I have a problem with javascript generated web page. I have a web page on the internet that is generated by javascript. I am working on changing a web page using wpf web browser control. I have to ...
1
vote
0answers
74 views

How to get a specific part of page into a window form in c#?

I'm trying to get a specific part of a web application written in aspx and place it on my windows form programm..particularly there is an application here ...
0
votes
1answer
586 views

WPF System.Windows.Controls.WebBrowser not rendering link buttons

I have a web page that I display in a WPF WebBrowser control within a desktop application. I just updated the webpage to use styled buttons instead of the default gray buttons by changing from an ...
2
votes
2answers
728 views

WebBrowser component not showing CSS 3

I am building a piece of software that requires a WebBrowser component. Unfortunatly it wont show my page right. my content uses this CSS style: .content_mid{ ...
0
votes
1answer
442 views

Microsoft Access - Web Browser ActiveX Control - Only show one DIV

Ok, I have an ActiveX web browser control on an Access form. I am loading a url into this control using the following code: Dim webMain As Object Set webMain = Me.WebBrowser2.Object ...
0
votes
4answers
4k views

trigger resize event with jquery?

Hello I'm looking for a simple way to resize the content of my body , something equivalent to what happens when the user hits Ctrl+ or Ctrl- , but I want to trigger it automatically based on the size ...
0
votes
5answers
2k views

How to make my web page display in full in any browser window of any size

I have made a webpage and this is the code to the main div. #Div { margin-left: 0px; position:absolute; margin-top: -1px; display: inline; float: left; margin-bottom: 0; ...
0
votes
6answers
2k views

CSS Firefox - How to deactivate the dotted border ( firefox click indicator )?

This click indicator is a disgusting piece for my recent web projects.. I hate this! - How can I say to my Firefox browser that he should not mark the clicked object?
3
votes
1answer
1k views

Is it possible to force “font priority” in style sheets?

In various browsers, when a specific font is used (e.g. - Helvetica Neue), if that font is not found, the first font in the immediate family is used. So if I were to specify that Arial Narrow was the ...
3
votes
2answers
581 views

Can I remove an already rendered CSS attribute or declaration?

Is there any way to remove a CSS attribute/declaration that has already been rendered on an element? For example, if I'm using a CSS reset stylesheet to set the margin on images to 0, I can no longer ...
8
votes
7answers
8k views

C# WebBrowser control not applying css

I have a project that I am working on in VS2005. I have added a WebBrowser control. I add a basic empty page to the control private const string _basicHtmlForm = "<html> " ...
5
votes
3answers
6k views

WebBrowser Control IE8 Compatibility Mode On/Off Switch

I am having a IE8 compatibility issue while using the WebBrowser control to navigate to a website. The strange thing is sometimes the website works, but more than likely it wont. I can refresh the ...
0
votes
1answer
778 views

Getting Print media CSS style applyed web page in WebBrowser control in C#

We would like to print the Web page loaded onto WebBrowser control in C# .net application.We have custom printer driver to print the bitmap images, now our task is to get the printer friendly version ...
21
votes
4answers
26k views

Disable Drag and Drop on HTML elements?

I'm working on a web application for which I'm attempting to implement a full featured windowing system. Right now it's going very well, I'm only running into one minor issue. Sometimes when I go to ...