Skip to main content

Posts

Solution for IE9 or internet explorer 9 failed to open after installation

Hi every one i just install the IE 9.0 and after that when i open it after restarting the computer the browser is failed to open the browser tab The solution is in two step step1: you need to create the internet option shortcute step2: set the Use software rendering instead of GPU rendering* Step1 Create a shortcut for open the internet option 1) Right click on your desktop 2) Click on the create shortcut 3) put this line under the location >        %systemroot%/system32/inetcpl.cpl 4) Type internet option in the name 5) Click ok Step2  Setup the advance option by below steps ·        Click Start ·        Type Internet Options ·        Press Enter on your keyboard ·        Click the Advanced tab ·        Check the Use software rendering instead of GPU rendering* box ·        Click OK ·        O...

Acer 6930 factory reset installation network is not connecting

Today i was mad in resolving the issue to adjust the network connection with my WIFI or wire connection with the wireless switch If you are facing the following issue 1) IPCONFIG /renew (give you error) 2) Network is not connecting to the internet 3) Network is just show local area 4) Network is not showing your proper ip or dhcp provided ip like 192.168.1.XX 5) Network is showing 645.XXX.XXX ip 6) unable to locate your network Sysmtem confirmation Make sure the WIFI or LAN both will not work Solution netsh winsock reset catalog (reset winsock entries) netsh int ip reset resetlog.txt  (reset TCP/IP stack) Rebooted the box, it works great again, however APIPA is still enabled. Oh well. Regards Rashid Bilgrami Best visualization http://www.bestvisualization.com/

System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed. dnn installation

Today i install the dnn at windows 7 64 bit windows and identify this error System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed. dnn installation And here it the solution 1) Click on the application pool under the IIS 2) Click on the Defualt pool and click on the advance setting button on the right side   3) change the identity to network Regards Rashid Bilgrami CEO Best visualization http://www.bestvisualization.com/

Delete a specific URL at the Internet Explorer Address Bar History

I just found one useful item that how you delete the specific URL from your IE Address bar For IE 1. Start Registry Editor (Regedit.exe). Note: As always, before making changes to your registry you should always make sure you have a valid backup. In cases where you’re supposed to delete or modify keys or values from the registry it is possible to first export that key or value(s) to a .REG file before performing the changes. 2. Locate the following key in the registry: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs 3. Delete all the URLx (e.g. URL1, URL2 and so on) that you do not wish to be visible in the address bar drop down list. Note: If you delete only certain keys, make sure that the remaining keys are in renamed in sequential order start from url1. Otherwise you might corrupt your remaining keys. 4. Close the registry editor. For Firfox In Firefox, if you want to delete an individual entry from the History, just highlight it (eithe...

How to send the Arabic email through PHP

<        ?          php $to = "info@bestvisualization.com"; $subject = "You have received the new email"; $body = " FULL NAME:".$_POST['T1']." GENDER:".$_POST['T2']." CITY:".$_POST['T3']." MOBILE NUMBER:".$_POST['T4']." LAND LINE NUMBER:".$_POST['T5']." DATE OF BIRTH:".$_POST['T6']." ID NUMBER:".$_POST['T7']." ANSWER FIELD:".$_POST['T8']." "; $fromName = "Rashid Bilgrami"; $fromAddress = "info@bestvisualization.com"; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: '. $fromName . "<".$fromAddress.">" . "\r\n"; if (mail($to, $subject, $body, $header)) { echo("<p>Message successfull...

Enable Sharepoint Version History

Original Link 1.If the list or library is not already open, click its name on the Quick Launch. If the name of your list or library does not appear, click View All Site Content, and then click the name of your list or library. On the Settings menu , click List Settings, or click the settings for the type of library that you are opening. For example, in a document library, click Document Library Settings. 2.Under General Settings, click Versioning settings. 3.Do one of the following: For list items, to specify that versions are tracked, click Create a version each time you edit an item in a list in the Item Version History section. For files, to specify that only one type of version is tracked, click Create major versions in the Document Version History section. For files, to specify that both major and minor versions are tracked, click Create major and minor (draft) versions in the Document Version History section. 4.You can specify how many versions of items...

How to Make Flash Autofit to browser

Look for the code that embeds the Flash Movie. It should look similar to this: <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="480" height="125"> <param name="movie" value="flashmovie.swf" /> <param name="quality" value="high" /> Regards CEO Best visualization http://www.bestvisualization.com <embed src="flashmovie.swf" quality="high" type="application/x-shockwave-flash" width="480" height="125" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> To make the Flash auto zoom and auto fit into its container, you should change the code as following. The changes are shown in red. <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=...