Quantcast
Channel: Internet Explorer 8, 9, 10, 11 forum
Viewing all 10469 articles
Browse latest View live

File contained a virus and was deleted.

$
0
0

When we try to download a file using IE 9.0, we get the error File contained a virus and was deleted.

I've used 4 different products (AntiVirus, AntiSpyware) and nothing could be found on the computer. This is related only to IE and FireFox works perfectly. Any help would be appreciated.

 

Thanks in advance


Samuel Hagopian


SCRIPT1002: Syntax error in IE10

$
0
0

Hi,

I'm seeing

SCRIPT1002: Syntax error

leftpane.aspx, line 1 character 30

in my aspx page in IE10. I don't see any issues in IE9 or previous versions.

Below I have posted the aspx source code. Am I missing anything here? Please help me.

Thanks

<%@ Page language="c#" AutoEventWireup="false" %><%@Import Namespace="System.Globalization"%><%@Import Namespace="System.Resources"%><%@Import Namespace="System.Reflection"%><%
    Assembly a = Assembly.Load("WebClientResources");
    ResourceManager rm = new ResourceManager("WebClientResources", a);     
%><!DOCTYPE html><HEAD><META NAME="GENERATOR" Content="Microsoft FrontPage 5.0"><SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" SRC="scripts/menu.js"></SCRIPT><LINK REL="stylesheet" HREF="webclient.css"><TITLE></TITLE><SCRIPT LANGUAGE="javascript">

var ALL_PATHS = '<%=rm.GetString("ALL_PATHS")%>';
var NETWORK_VIEW = '<%=rm.GetString("NETWORK_VIEW")%>';
var FOLDER_VIEW = '<%=rm.GetString("FOLDER_VIEW")%>';
var ACCESS_EVENTS = '<%=rm.GetString("ACCESS_EVENTS")%>';
var ADVANCED_SEARCH = '<%=rm.GetString("ADVANCED_SEARCH")%>';
var ADVANCED = '<%=rm.GetString("ADVANCED")%>';
var POINT_TYPES = '<%=rm.GetString("POINT_TYPES")%>';
var AREAS = '<%=rm.GetString("AREAS")%>';
var ACCESS_DIST_EVENTS = '<%=rm.GetString("ACCESS_DISTRIBUTION_EVENTS")%>';
var NEW_PERSON = '<%=rm.GetString("NEW_PERSON")%>';
var NEW_REPORT = '<%=rm.GetString("NEW_REPORT")%>';
var TOGGLE_CONTENTS = '<%=rm.GetString("SHOW/HIDE_CONTENTS")%>';
var ALL_OBJECTS = '<%=rm.GetString("ALL_OBJECTS")%>';
var CX_WEBS = '<%=rm.GetString("WEB_PAGES")%>';
var EVENT_VIEWS = '<%=rm.GetString("EVENT_VIEWS")%>';
var GRAPHICS = '<%=rm.GetString("GRAPHICS")%>';
var GROUPS = '<%=rm.GetString("GROUPS")%>';
var PERSONNEL = '<%=rm.GetString("PERSONNEL")%>';
var POINTS = '<%=rm.GetString("POINTS")%>';
var REPORTS = '<%=rm.GetString("REPORTS")%>';
var SCHEDULES = '<%=rm.GetString("SCHEDULES")%>';
var SHOWALL = '<%=rm.GetString("SHOW_ALL")%>';
var VIDEO = '<%=rm.GetString("VIDEO")%>';
var DOORS = '<%=rm.GetString("DOORS")%>';
var TRENDLOGS = '<%=rm.GetString("TREND_LOGS")%>';
var LOOPS = '<%=rm.GetString("LOOPS")%>';
var USER = '<%=rm.GetString("USER")%>';


var ANALOG_INPUT = '<%=rm.GetString("ANALOGINPUT")%>';
var ANALOG_OUTPUT = '<%=rm.GetString("ANALOGOUTPUT")%>';
var ANALOG_VALUE = '<%=rm.GetString("ANALOGVALUE")%>';
var BINARY_INPUT = '<%=rm.GetString("BINARYINPUT")%>';
var BINARY_OUTPUT = '<%=rm.GetString("BINARYOUTPUT")%>';
var BINARY_VALUE = '<%=rm.GetString("BINARYVALUE")%>';
var MULTISTATE_INPUT = '<%=rm.GetString("MULTISTATEINPUT")%>';
var MULTISTATE_OUTPUT = '<%=rm.GetString("MULTISTATEOUTPUT")%>';
var MULTISTATE_VALUE = '<%=rm.GetString("MULTISTATEVALUE")%>';
var INFINITY_INPUT = '<%=rm.GetString("INFINITYINPUT")%>';
var INFINITY_OUTPUT = '<%=rm.GetString("INFINITYOUTPUT")%>';
var INFINITY_NUMERIC = '<%=rm.GetString("INFINITYNUMERIC")%>';
var INFINITY_DATETIME = '<%=rm.GetString("INFINITYDATETIME")%>';
var INFINITY_STRING = '<%=rm.GetString("INFINITYSTRING")%>';
var SELECT_AT_LEAST_ONE = '<%=rm.GetString("MUST_HAVE_ONE_POINT_TYPE_SELECTED")%>';
var REFRESH = '<%=rm.GetString("REFRESH")%>';

var True = true;
var False = false;

var bShowingMenu = false;
var bExploreMode = false;

var bNetworkView = false;
var bFolderView = false;
var bAllView = true;

var winMain = window.top;

var bSplitEditorPage = false;

var sFilterType = ALL_OBJECTS;
var sCustomFilter = '';

var AccessEventsLink = '<%=Session["ACCESSEVENTS"]%>';
var AccessDistEventsLink = '<%=Session["ACCESSDISTEVENTS"]%>';
var AreasLink = '<%=Session["AREAS"]%>';

///////////////////////////////////////////////////////////////////////
// Preload Images

var imgArrowUp = new Image();
imgArrowUp.src = "images/arrow_up.gif";

var imgArrowDown = new Image();
imgArrowDown.src = "images/arrow_down.gif";

///////////////////////////////////////////////////////////////////////
var fExplore = <%=(bool)Session["EXPLORE"] %>;

function doLoad(){
	
	writeMenus();	
	
	if(fExplore)		
		DoExplore();
	else
		DoSearch();
}

///////////////////////////////////////////////////////////////////////

function DoTimeout(){
	window.location.href="logOff.aspx?Type=Timeout";
}

//////////////////////////////////////////////////////////////////////

function TogglePointsDiv(){

	if(document.getElementById("PointsDiv").style.display == 'none'){	
		document.getElementById("PointsDiv").style.display = '';
	}else{
		document.getElementById("PointsDiv").style.display = 'none';
	}
	if(bExploreMode){
		document.getElementById("PointsRefresh").style.display = '';
	}
	else{
		document.getElementById("PointsRefresh").style.display = 'none';
	}	
}

//////////////////////////////////////////////////////////////////////

function SetFilter(sFilter){	
	
	var strClass = '';
	var SubMenuHTML = '';
	var s='';
	var i=0;
	
	switch (sFilter){
		case GRAPHICS:
			strClass='142';
			break;
		case REPORTS:			
			if(AccessDistEventsLink!=''){				
				s = '<a href="' + AccessDistEventsLink + '" class="mainHeader3Link">' + ACCESS_DIST_EVENTS + '</a>';++i;
			}
			if(AccessEventsLink!=''){
				if(i>0) s += '<br>';
				s += '<a href="' + AccessEventsLink + '" class="mainHeader3Link">' + ACCESS_EVENTS + '</a>';++i;
			}			
			if(AreasLink!=''){
				if(i>0) s += ' | ';
				s += '<a href="' + AreasLink + '" class="mainHeader3Link">' + AREAS + '</a>';	++i;			
			}
			if(i>0) s += ' | ';
			var URL;
			URL = window.top.NewReportPage + '?user=' + window.top.getCookie('USERNAME') + '&VD=' + window.top.VirDirName + '&Protocol=' + window.location.protocol ;
		    s += '<a href="javascript:window.top.OpenEditor(\'' + URL + '\', 0, 0, ' + '\'' + NEW_REPORT + '\');" class="mainHeader3Link">' + NEW_REPORT + '</a>';

			SubMenuHTML = s;			
			strClass='172,155';
			break;
		case SCHEDULES:
			strClass='6,17';  //6=calendar, 17=schedule
			SubMenuHTML=s;
			break;
		case EVENT_VIEWS:
			strClass='164';
			break;
		case GROUPS:
			strClass='11';
			break;
		case PERSONNEL:
			strClass='137';
			s = '<a href="javascript:window.top.OnNewPersonnelObject()" class="mainHeader3Link">' + NEW_PERSON + '</a>';
			s += ' | <a href="javascript:window.top.DoAdvancedPersonnelSearch(true)" class="mainHeader3Link">' + ADVANCED_SEARCH + '</a>';
			SubMenuHTML=s;
			break;
		case POINTS:			
			strClass = window.top.getCookie("PointsFilter");
			if(!strClass)
				strClass = '0,1,2,3,4,5,13,14,19,257,259,260,261,263';			
			s = '<a href="javascript:TogglePointsDiv()" class="mainHeader3Link">' + POINT_TYPES + '</a>';
			SubMenuHTML=s;
			break;
		case USER:
			strClass='141';
			s = '<a href="javascript:window.top.OnNewUser()" class="mainHeader3Link">' + "New User" + '</a>';
			SubMenuHTML=s;
			break;			
		case VIDEO:
			strClass='171';
			break;
		case CX_WEBS:
			strClass='241';
			break;
		case ALL_OBJECTS:
			strClass = '';
			break;
		case DOORS:
			strClass='266';
			break;
		case LOOPS:
			strClass='12';
			break;
		case TRENDLOGS:
			strClass='20';
			break;
		default:
	}
	if(sFilter != POINTS)
		document.getElementById("PointsDiv").style.display = 'none';
	winMain.setCookie("ClassFilter", strClass)
	winMain.setCookie("FilterType", sFilter)
	//we need to tell the app to show the home page and not the 
	//infinity controller's contents if it's a CXWeb filter
	if(!bExploreMode){ //search mode
		var strQSParam = '';
		if (sFilter == CX_WEBS) 
			strQSParam = '?CXWebs=true&';
		else
			strQSParam = '?';
		ExploreNav(winMain.SearchPage + strQSParam + 'Filter=' + strClass + '&INC=Search&Type=QP&SearchPathID=' + window.top.getCookie("SearchFolderID"));
		winMain.bShowingContentWindow=false;
	}else{ // explore mode
		var sPage;
		var sFolderNetworkBacnetAll;
		var url='<a class="mainHeader3Link" onclick="bAllView=true;bNetworkView=false;bFolderView=false;window.top.setCookie(\'BrowseType\', \'All\');" href="javascript:winMain.NavExplorePanes()">';
		url += ALL_PATHS + '</a>&nbsp;&nbsp;';
		url += '<a class="mainHeader3Link" onclick="bFolderView=true;bAllView=false;bNetworkView=false;window.top.setCookie(\'BrowseType\', \'Folder\');" href="javascript:winMain.NavExplorePanes()">';
		url += FOLDER_VIEW + '</a>&nbsp;&nbsp;';
		url += '<a class="mainHeader3Link" onclick="bNetworkView=true;bFolderView=false;bAllView=false;window.top.setCookie(\'BrowseType\', \'Network\');" href="javascript:winMain.NavExplorePanes()">';
		url += NETWORK_VIEW + '</a>';
		if(SubMenuHTML) SubMenuHTML = '<hr>' + SubMenuHTML;
		SubMenuHTML = url + SubMenuHTML;
		if(bNetworkView){
			sPage=winMain.NetworkBrowsePage;
			sFolderNetworkBacnetAll = "Network";
		}
		if(bFolderView){
			sPage=winMain.FolderBrowsePage;
			sFolderNetworkBacnetAll = "Folder";
		}
		if(bAllView){
			sPage=winMain.AllPathBrowsePage;
			sFolderNetworkBacnetAll = "All"
		}
		document.frames["exploreIFrame"].location.href = "ExploreFrameset.htm";
		winMain.bShowingContentWindow=false;
		if (sFilter == CX_WEBS) 
			strQSParam = '?CXWebs=true&';
		else
			strQSParam = '?';
		var strQSParam = strQSParam + 'Filter=' + strClass;
		var idHi = window.top.getCookie("BrowseIdHi");
		var idLo = window.top.getCookie("BrowseIdLo");
		if(idHi=='')
			idHi = '0';
		if(idLo=='')
			idLo = '0';
		if(sFolderNetworkBacnetAll=="")
			sFolderNetworkBacnetAll = getCookie("BrowseType");
		if(sFolderNetworkBacnetAll=="")
			sFolderNetworkBacnetAll = "All";							
	}
	SetSubMenu(SubMenuHTML);
	sFilterType = sFilter;
	document.getElementById("MainMenu").innerHTML = sFilter;
}

///////////////////////////////////////////////////////////////////////

function ToggleContents(){
	var bShow = window.top.bShowingContentWindow;
	window.top.HideWindow(bShow, "content");
}

///////////////////////////////////////////////////////////////////////

function ShowMenu(bShow){

	bShowingMenu = bShow;
	
	if(bShow==true){
		document.getElementById("MenuArrow").src = imgArrowUp.src;		
		if(bExploreMode==false)
			winMain.frames['leftpane'].frames['exploreIFrame'].document.getElementById('SearchComboDiv').style.display='none';
		popOver(0,1,true);		
	}
	else {
		popOut(0,1);
		document.getElementById("MenuArrow").src = imgArrowDown.src;
		if(bExploreMode==false)
			winMain.frames['leftpane'].frames['exploreIFrame'].document.getElementById('SearchComboDiv').style.display='';
	}		
}

function ToggleMenu(){		
		ShowMenu(!bShowingMenu);		
}

///////////////////////////////////////////////////////////////////////

function ToggleView(DivName){
	if(document.getElementById(DivName).style.display=='none')
		document.getElementById(DivName).style.display=''
	else
		document.getElementById(DivName).style.display='none'
}

///////////////////////////////////////////////////////////////////////

function SetSubMenu(sHTML){	
	document.getElementById("ExploreSubMenu").innerHTML = sHTML;	
}

///////////////////////////////////////////////////////////////////////

function DoSearch(){	
	if(bShowingMenu) ShowMenu(false)
	if(bExploreMode==true || fExplore==false){		
		bExploreMode = false;
		SetFilter(sFilterType);
		document.getElementById("PointsRefresh").style.display = 'none';
	}
}

///////////////////////////////////////////////////////////////////////

function DoExplore(){
	
	if(bShowingMenu) ShowMenu(false)
	if(bExploreMode==false){			
		bExploreMode = true;		
	}
	SetFilter(sFilterType);
	document.getElementById("PointsRefresh").style.display = '';

	// Pristine	- 02/12/2008 - Muthuraja I - Lines added for defect #18993 ('Wrong Explore and Search .gif files displayed after clicking Parent Path in Search pane)
	//-------------------------Start---------------------------
	var imgExploreOn = new Image();
        imgExploreOn.src = "images/browse_on.gif";

    var imgSearchOff = new Image();
    imgSearchOff.src = "images/search.gif";
    parent.frames['topmenu'].document.getElementById("searchImage").src = imgSearchOff.src;
    parent.frames['topmenu'].document.getElementById("exploreImage").src = imgExploreOn.src;		
    //-------------------------End------------------------------
}

///////////////////////////////////////////////////////////////////////

function ExploreNav( href ){
	
	document.frames["exploreIFrame"].document.body.style.cursor = "wait";
	document.frames["exploreIFrame"].location.href = href;
}

///////////////////////////////////////////////////////////////////////

	var menu = new Array();
	//var defOver = '#9DA4AA', defBack = '#9DA4AA';//
	var defOver = '#558CBE', defBack = '#78a0c8';//
	var defLength = 30;
	menu[0] = new Array();
	menu[0][0] = new Menu(true, '', 0, 0, 200, '', '', '', 'headerText');
	menu[0][1] = new Item('', '#', '5', 26, 0, 1);
    menu[1] = new Array();
    menu[1][0] = new Menu(true, '', 0, 17, 260, defOver, defBack, 'itemBorder', 'itemText');
	//Menu(isVert, popInd, x, y, width, overCol, backCol, borderClass, textClass)
	<%=Session["MENU"]%></SCRIPT></HEAD><BODY leftmargin="0" topmargin="0" rightmargin="0" onload="doLoad()" vlink="#d7e6f0" alink="#ffffff"
		class="mainHeader3"><table class="mainHeader3" id="exploreTable" border="0" cellpadding="3" cellspacing="0"
			height="100%" width="100%"><tr><td id="exploreMenuTD" valign="middle" height="30" class="mainHeader2" nowrap>&nbsp;<span id="MainMenu" class="itemText"></span></td><td valign="middle" align="right" height="30" class="mainHeader2" nowrap><a href="javascript:ToggleMenu()"><IMG src="images/Arrow_Down.gif" id="MenuArrow" align="absMiddle" border="0"></a>&nbsp;&nbsp;</td></tr><tr><td id="exploreSubmenuTD" height="1" class="mainHeader3" colspan="2" align="center"
					valign="middle"><span id="ExploreSubMenu"></span><SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" SRC="Scripts/PointSelection.js"></SCRIPT><img src="images/1x1.gif"></td></tr><tr><td id="" colspan="2" class="mainHeader3" nowrap><iframe id="exploreIFrame" name="exploreIFrame" src="about:blank" height="100%"
						style="WIDTH: 100%" frameborder="0" scrolling="yes"></iframe></td></tr></table></BODY></HTML>

I'm

sites backed Private network access is off for this site

$
0
0

We are finding that intranet sites on some computers are being backed and display the message “Private network access is off for this site”. Why does this happen and how can we make it stop?

IE 9, install OCX files using command line in Windows 7

$
0
0

Hello everyone,

I'm attempting to deploy an ActiveX control for IE 9 (32-bit) in Windows 7 Enterprise (64-bit). Actually, our Windows computers have IE9 64 and 32 bits loaded.

I opened the CAB files, which contains the INF and OCX files, and I'm running the following command (in an elevated command prompt):

Regsvr32 jdeexpimpU.ocx
Regsvr32 jdewebctlsU.ocx

I get a notification that all is installed properly, yet when I go to C:\Windows\Downloaded Program Files\ I see nothing there, and if I'm not mistaken, this is the place where OCX files get placed. Also, when I access the website that requires that ActiveX control, the page doesn't display properly.

I'm actually looking for a way to either deploy the OCX files (which I can by means of using SCCM) or allow the non-admin user to just install the ActiveX control as the site that requires it is in the Intranet site. Also, these ActiveX controls only work for the 32-bit version of IE so, since I have both versions loaded on the same computer, I don't know if that's the reason why they're not loading properly.


Internet explorer locks up and displays "Res://ieframe.dll/dnserror.html"

someone help me how disable internet explorer compatibility view settings

$
0
0

someone help me how disable internet explorer  compatibility view settings vai sccm batch file or VB script


sccmghost@hotmail.com

IE 9 Does Not Allow Access To Web Site

$
0
0

I am using Windows 7 with IE 9. Others in my office can access this secure site with the same hardware and software. I contacted the site for support but they could not determine why I am being blocked. They reset my IE settings to default, I added the site to my trusted sites, I have the security settings at med-low. The site I contacted tried my id on a virtual machine and it worked. Is there any way with the developer tools to determine what is blocking my access? The site just displays a white screen when I try to open it.

I also added the site to my trusted sites with my virus checker and firewall.

Thanks!

IE 10 Error on SharePoint 2010

$
0
0

Hi, i keep on getting errors on IE with SharePoint 2010.

Not sure if it is just on SharePoint but SharePoint 2013 seems fine.

Error:

Faulting application name: IEXPLORE.EXE, version: 10.0.9200.16660, time stamp: 0x51f1c5f3

Faulting module name: OLEAUT32.dll, version: 6.2.9200.16657, time stamp: 0x51d366c4

Exception code: 0xc0000005

Fault offset: 0x00008f2d

Faulting process id: 0x250

Faulting application start time: 0x01ce9fd8802764ef

Faulting application path: C:\Program Files (x86)\Internet Explorer\IEXPLORE.EXE

Faulting module path: C:\Windows\SYSTEM32\OLEAUT32.dll

Report Id: 2770fecf-0bcc-11e3-be90-f01faf05b4b5

Faulting package full name:

Faulting package-relative application ID: 


When does IE go back to the DNS.

$
0
0

when I type in http://www.google.com. IE goes to the DNS and perhaps gets the physical IP address of the google site.


Now after it has got the IP and successfully connected to the site.


1. does it every refresh the IP address from DNS at every call?? or is the IP address which is received from the DNS cached? If cached, then when (how frequently) is the cached refreshed?


2. let's say that the physical server to which it originally connected do ... crashes... Will IE go back to the DNS to try to get another IP or will it straight report the error to the user and then user has to click F5 to get new entry from DNS?


3. Is there a documentation which explains IE and DNS interaction?


val it: unit=()



Problems with IE10 and SharePoint webpart - Large font sizes

$
0
0

Hello all,

I encountered a problem when backing up the content database from SharePoint 2010 to SharePoint 2013 (and while using IE10). After restoring and adding the content database to SharePoint 2013, I upgraded to UI 2013. My Web Part was assigned a large font size (this was working fine with IE9) because IE10 automatically added an h1 tag outside of the div tag.

I can use the SharePoint Designer to remove the h1 tag. But how can I remove the h1 tag via code behind (or do you have other suggestions)?

Thanks in advance,

/khoilh


IE10 wont allow me to open FTP files in Explorer View

$
0
0
I have an FTP internally that is used to host PDF & HTML files. Previously all users could log onto this FTP site and double click on any file content to have it open within the default browser. We use FTP in explorer view so each user can set their terminals to save their passwords, hence they log straight into their root folder on the FTP - if we use the FTP list view in the browser this doesnt happen, meaning user 9999 has a long way to scroll to find their documents!
This has always worked absolutely fine until IE10 has been installed, now any user with IE10 cant open files straight from the FTP via the Explorer view. The file doesnt download, the destination file ends up at 0KB so just doesnt open in the browser. Roll back to IE9 fixes the problem. Using Chrome as the default browser fixes the problem. Using the FTP list view also works fine (however we cant use this since it wont default to users root folder that they have access to)
Ive attempted everything i can think of without luck, its looking like we're going to have to block IE10 or switch to Chrome. Basically opening files from any FTP site (have tested others) in explorer view with IE10 installed just isnt working. You can however copy the document to the local machine then open ok..
Any ideas, what am i missing here!?
Cheers!!!

Internet Explorer opening tabs

$
0
0
I recently noticed Inter Explorer 10 opens new tabs when I click on a link. Let's say I search 'soccer' in Google, I click the first link and instead of it displaying in the same window, a new tab is opened. I do not like this feature and I'm very annoyed by it. If anyone can help me to prevent this, it'd be greatly appreciated. THANKS

IE10 Not Opening Attachments on Local Harddrive

$
0
0

I am building a static copy of a website for historical purposes.  The raw HTML was sourced from the website service.  Attachments were retrieved, stored in a folder structure above the folder containing the HTML code and referenced using:

<a href="../files/(folder)/(attachment name)">text</a>

While testing the completeness of the static copy on my harddrive, I noticed that IE10 would not open attachments in either the current tab or a new tab.  No error message was displayed nor was a new tab opened.  Links to Internet URLs worked fine.  The attachment URLs are correct - Copy Shortcut and pasting the URLs into a new tab worked fine.  Firefox also had no problems with opening the attachments.

I did a bunch of things to try and figure out what might be causing this behavior.  It seems renaming or copying the HTML file using Windows Explorer has no affect.  Opening and re-saving the file with Notepad 'solves' the problem.  It seems Notepad is adding 'EFBBBBF'x at the beginning of the file (Byte Order Mark?).  Also moving the file to a Linux system, renaming it and moving it back (using Dropbox) 'solves' the problem even though the failing and working HTML files have the same length and content (just moving the files to Dropbox, renaming in the Dropbox folder and moving them back did nothing).  Copying the content (HTML and attachments) to a flash drive also 'solves' the problem.  It sounds suspiciously like a file attribute problem but I have gone through the security and ownership settings and cannot see any differences.  

I am running IE10 (32-bit) on Windows 7 Pro (64-bit) with all the latest maintenance. 

Any suggestions would be greatly appreciated! 


ZYLOM.COM GAMES

$
0
0

I LOVE PLAYING MAHJONNG CLASSIC, BUT VISTA JUST WON'T LET ME INSTALL JAVA CORRECTLY EVERYTHING BEEN DELETED IE PREVIOUS JAVA UPDATES AS ADVISED BUT STILL CAN'T GET JAVA I'VE HAD THIS COMPUTER FOR ABOUT 3/4 YEARS AND HAVE NEVER BEEN ABLE TO PLAY.  I COULD PLAY ON MY XP HOME EDITION DESKTOP COMP BUT ALL OF A SUDDEN IT COMES UP WITH ERROR STATING ADMINISTRATOR HAS CHANGED SETTING .  I AM ADMINISTRATOR AND BEST OF MY KNOWLEDGE NOT CHANGED ANY SETTINGS.  WOULDN'T EVEN KNOW WHERE TO FIND SETTINGS.  CAN ANYONE HELP WITH EITHER AND OR BOTH MY VISTA/ JAVA PROBLEMS OR XP/SETTINGS TO PLAY MAHJONNG CLASSIC VIA ZYLOM.GAMES.

I WOULD LOVE TO PLAY THIS GAME AGAIN SOON.

THANKS

ASPNET APLICACION NOT WORK IN INTERNET EXPLORER 10

$
0
0
I have a page in aspnet 4.0 using jquery, and some windows 7 machines works well, and sometimes not, that is usually the product mode use internet explorer 9.0

but I see that windows 8 ie 10, it works fine ....

A that can be this ...


mct support

$
0
0

guys,

i cannot download through my certified trainer account. called support, but they are not avaible. Chat option isnt available...am getting a windows xp gold bar notification althoug i am using w7.

printscreen: http://sdrv.ms/1aBvDqL

anyone who can help?

IE9: Changing the default download option to Open (for specific file type)

$
0
0

Hi,

Our users are downloading file .ugs from Website (internal webserver). 
IE everytime asks typical Open, Save, SaveAs dialog. 
But does not offer to remmber selected option as default for subsequent downloads

We have used standard commands assoc and ftype to associate our file extension with an application.
-------------------
C:\Users\sbade1>ftype | findstr ugs
ugsimanfile=C:\Progra~1\Siemens\Teamce~1\portal\portal.bat "%1"

C:\Users\sbade1>assoc .ugs
.ugs=ugsimanfile
-------------------


Our application opens fine if we double click the file on disk to open it

Is there any way to tell IE to remember selected option as default for e.g. Open
Or is there any ways to do some registry settings to open specific file type by default instead of asking open,save,saveas,options

Thanks,
-Sujit


Files do not show up in Internet Explorer

$
0
0

I'm experiencing a problem with Internet Explorer. My professor uploaded files to our school's website. I can't see them when using Internet Explorer, but can see them when using other browsers like Chrome and Firefox. It happens not only on my computers but also on other computers (even on computers in my school's library). What can be the problems?

I used "View Source" and saw the codes to link files were there, but for some reason it does not show anything.

I attached an image for you to view the differences when using 2 browsers: IE and Chrome.

Thank you.

PS: I'm not allowed to post with links or images directly here. I think I just give the rough address of the picture social.technet.microsoft.com/Forums/getfile/324210.

Internet Explorer 11 Preview: ActiveX not loading

$
0
0

The following is intended as a test to see if the browser supports Active-X w/o

actually loading an Active-X control in the page. This works on all other

versions of IE, but on IE11, typeof window.ActiveXObject returns

undefined. Any ideas if how to test for Active-X support in IE11?

Also I have a snippet of javascript code that runs fine in IE8 - IE10, but

doesn't work in IE11.

  if (typeof (window.ActiveXObject) == "undefined")

    {

      ActivexPassed = false;

      logInfo("Active-X NOT supported");

    }

  else

    {

    if (typeof window.external.msActiveXFilteringEnabled != "undefined" &&

window.external.msActiveXFilteringEnabled() == true)

      {

        ActivexPassed = false;

        logInfo("Active-X NOT supported (Filtered)");

      }

    else

      {

        ActivexPassed = true;

        logInfo("Active-X IS supported");

      }

Internet Explorer no loading web pages.

$
0
0

Hello,

The Home page Google.com is loading fine but ALL the other website seems to be always on the "loading" stat while google chrome is working fine. It happened to two of my computers, one is windows 8 and one is windows 7. Also I have tried a lots of ways. Including resetting the IE and other ways I found on the IE.

Regards,


Viewing all 10469 articles
Browse latest View live




Latest Images