Showing posts with label Internet Explorer. Show all posts
Showing posts with label Internet Explorer. Show all posts

Jan 15, 2014

VB Script

I've needed to access an Access file from an html file. I did could do this using VBScript. It is running very well with Internet Explorer and could be a solutions in Corporatist offices wher security level is too paranoic.

Now I'm working with vbscripts. I use it to generate local xml files. Those xml files I use  to keep data from Access files to be easier to read in my network. The answer of my small app (.hta file) is much faster then if I read straight from MS Access file.

So, I used following code to generate a new .xml file:

<script type='text/vbscript'> 
        Set oFS = CreateObject("Scripting.FileSystemObject") 
           Const strXmlFile = "Documents.xml" 
           Set objXMLFile = oFS.OpenTextFile(strXmlFile, 2, True, 0) 
            objXMLFile.WriteLine "" 
            objXMLFile.WriteLine ""'" href=""Documents.xsl""?>" 
            objXMLFile.WriteLine "
           'Set myFolder = oFS.GetFolder("Documents") 
            'For Each File In myFolder.Files 
            'FileLast = File.DateLastModified 
            'FileMod = DateDiff("d", FileLast, Now) 
            '    If FileMod < 5 Then 
             'Corporate = File.Name 
             'myDate = Split(FileLast,"/") 
             'myYear = Left(myDate(2),4) 
             'myMonth = myDate(0) 
             'myURL = "Whatever your URL is" 
             'Download = "Wherever your download site is" 
             'Call CreateXML(Corporate,myYear,myMonth,myURL,Download) 
             Call CreateXML("Corporatia","myYear","myMonth","myURL","Download") 
              
                'End If 
            'Next 
           'This next call will run once the "CreateXML" has finished. 
           Call CloseXML() 
           Function CreateXML(Corporate,myYear,myMonth,myURL,Download) 
            objXMLFile.WriteLine vbTab & "
            objXMLFile.WriteLine vbTab & vbTab & "" & Corporate & "
            objXMLFile.WriteLine vbTab & vbTab & "" & myYear & "
            objXMLFile.WriteLine vbTab & vbTab & "" & myMonth & "
            objXMLFile.WriteLine vbTab & vbTab & "" & myURL & "
            objXMLFile.WriteLine vbTab & vbTab & "" & Download & "
            objXMLFile.WriteLine vbTab & "
           End Function 
           Function CloseXML() 
            objXMLFile.WriteLine "
"              wscript.echo "Completed XML Creation" 
           End Function 

          </script>

Aug 13, 2012

IE7 Preview for developers

Last 2 weeks I've tried to repair the css styles for a web app which must be opened with Internet Explorer 7.0

Now I use Windows 7 and IE10. So, for debug my webpage in IE7.0 I've used IETester.

Now, I founded a new app which is just trial for 60 days (unfortunatelly). This application is:
Microsoft Expression Web4 SuperPreview. I've downloaded from here:
http://www.microsoft.com/expression/try-it/Default.aspx

And looks like:



UPDATE: Now I can use this: http://browsershots.org/

Jan 3, 2011

Internet Explorer. What's next for IE?


Microsoft still isn't talking specifics in terms of what it plans to deliver as part of the next version of Internet Explorer, IE 8.0. But at the Mix '07 conference in Las Vegas, Chris Wilson, platform architect of Internet Explorer, did share some general directions the team is taking with its next release.
In his "IE Past Present and Future" talk on May 1, Wilson told the standing-room-only audience that he wasn't going to show an IE 8.0 feature list, as he "wasn't allowed to."
However, Wilson did tell attendees that Microsoft is planning to require Web site authors to "opt-in" to standards mode when developing IE 8.0 sites.
"Five years ago, no one in the top 200 Web sites was using standards," Wilson said. "Today it is half of the top 200 Web pages."
Wilson acknowledged that he wasn't sure exactly what form this kind of opt-in would take. But asking authors to opt in will "give us freedom to do some great things," he said. By giving Microsoft permission to make IE 8.0 more standards-complaint, authors will take responsibility for breaking pages.
Wilson said to expect Microsoft to be investing across layout, object model and Ajax development fronts in IE 8.0. Specificially, Wilson said Microsoft is investing in making IE 8.0 more compliant with CSS 2.1 layout standards. Microsoft also is working to make the IE 8.0 object model more interoperable with that used by other browsers, and is looking to provide more client-side application programming interfaces (APIs) to support local storage for mash-ups, Wilson said.
Microsoft is planning to make tweaks to IE that will allow developers to more easily add extensions to its browser, Wilson said. He said Microsoft acknowledged that extensions are powerful but potentially "scary."
He also said to expect Microsoft to continue to invest heavily in advancing its Web development toolbar with the next version of IE.
Wilson reiterated that Microsoft continues to see security as its No. 1 challenge with IE 8.0.
Wilson also noted that Microsoft isn't planning to wait another five years to release its next version of IE (as it did when the company waited five years between IE 6 and IE 7). Last year Microsoft officials said they expected to be able to release new versions of IE every 12 to 18 months, but Wilson said an every-two-year schedule was looking more likely.
Wilson said that a number of people have suggested Microsoft release new versions of IE in service packs or as part of the company's monthly security updates, but that Microsoft has ruled that out, as it would make IE too much of a "moving target."
If Microsoft holds to that schedule, IE 8.0 should ship some time in 2008. In January 2007, Microsoft began gathering feedback from developers on what kinds of features and functionality they'd like to see in IE in the future.
Wilson spent most of his talk focusing on the compatibility vs. standards-compliance connundrum which Microsoft has wrestling with its current and future IE releases. With a half-billion IE users out there, Microsoft takes its responsibility seriously to not break sites without solid reasons, Wilson told attendees.
Any feedback for the IE team as it moves forward with its next release?
Kick off your day with ZDNet's daily e-mail newsletter. It's the freshest tech news and opinion, served hot. Get it.