Page 1 of 2 12 LastLast
Results 1 to 40 of 64

Thread: How does Metro work?

  1. #1

    Thread Starter
    Fanatic Member esposito's Avatar
    Join Date
    Sep 2003
    Location
    Perugia, Italy
    Posts
    961

    How does Metro work?

    Hello, I've read something very fragmentary about the new Metro applications that will work on Windows 8 for ARM.

    What I have understood is that "legacy" applications designed for Intel-based Windows 7/8 will not work on ARM tablets.

    What I still have to understand is whether a Metro application designed for the new WinRT will also work on Intel-based Windows 8.

    Do you know how Metro apps will work?

    Thanks in advance.
    Since I discovered Delphi and Lazarus, VB has become history to me.

  2. #2
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    As far as I can determine there are three kinds of Metro applications:
    • Native C++
    • A modified form of .Net
    • HTML5 with JavaScript

    Since only the first is native code (the others being basically JITted script) only C++ Metro applets need to be compiled in different editions for x86, x64, or ARM. I'm not even sure WinRT applets can target x64 so maybe there are only two editions to be created.

    No native x86 or x64 code is going to run on the ARM platforms. However scripted WinRT applets created for x86 (at least) should run on the ARM machines in most cases. The exception might be a few APIs that don't exist on ARM.


    It gets confusing since Microsoft has chosen to call Windows-On-ARM "WinRT" because of course there is a WinRT on x86/x64 machines as well.
    Last edited by dilettante; Jul 9th, 2012 at 02:11 PM.

  3. #3
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    BTW: In theory the WinRT APIs and requirements are all "open" in the sense of documented. This means somebody could come along and create another native code or script-based language to run there (e.g. a native code Delphi, or XAML with VBScript).

    How likely this is might be another question though.

  4. #4

    Thread Starter
    Fanatic Member esposito's Avatar
    Join Date
    Sep 2003
    Location
    Perugia, Italy
    Posts
    961

    Re: How does Metro work?

    Thanks.

    Is there a version of C++ specifically optimized for the development of Metro applications?
    Since I discovered Delphi and Lazarus, VB has become history to me.

  5. #5
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    As far as I know the only one you can use is the one Microsoft had provided with the Developer Preview Tools version of the Dev Preview Win8 ISO.

    I'm not sure what the final, released compiler will be part of or whether any "Express" edition will ever support Metro.

    Ahh:

    You can use the tools in Visual Studio 2012 Express RC for Windows 8 to create Metro style apps for Windows 8. The tools include a fully featured code editor, a powerful debugger, a focused profiler, and rich language support that you can use to build apps written in HTML5, JavaScript, C++, C# or Visual Basic. Visual Studio 2012 Express RC for Windows 8 also includes a device simulator that you can use to test Metro style apps on multiple form factors.
    Link: http://msdn.microsoft.com/en-us/wind.../br229516.aspx
    Last edited by dilettante; Jul 9th, 2012 at 02:18 PM.

  6. #6

    Thread Starter
    Fanatic Member esposito's Avatar
    Join Date
    Sep 2003
    Location
    Perugia, Italy
    Posts
    961

    Re: How does Metro work?

    If I understand correctly, there will be two types of Metro applications: those for x86 (and probably x64) and those for ARM. And there may be incompatibility between these two types.

    Is it true that the only way to distribute Metro apps (including freeware) will be through the Microsoft App Store? If this is true, will it apply to x86 apps as well?
    Last edited by esposito; Jul 9th, 2012 at 02:24 PM.
    Since I discovered Delphi and Lazarus, VB has become history to me.

  7. #7
    Cumbrian Milk's Avatar
    Join Date
    Jan 2007
    Location
    0xDEADBEEF
    Posts
    2,448

    Re: How does Metro work?

    I believe C++/CX is the language extension designed to support the WinRT API.

    http://blogs.msdn.com/b/vcblog/archi.../10228473.aspx
    W o t . S i g

  8. #8
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    The main source of incompatibility would be the actual compiled binary for native code (right now only C++) programs. There may also be WinRT APIs that will not be available on ARM, and WinRT applications can also use many regular Win32 APIs, some of which may not be available on ARM.

    As far as I know the "app store" is the only distribution option except for a mechansim being talked about for enterprise customers.

    Have you worked your way through the blogs yet?

    http://blogs.msdn.com/b/b8/

  9. #9

    Thread Starter
    Fanatic Member esposito's Avatar
    Join Date
    Sep 2003
    Location
    Perugia, Italy
    Posts
    961

    Re: How does Metro work?

    Quote Originally Posted by dilettante View Post
    As far as I know the "app store" is the only distribution option except for a mechansim being talked about for enterprise customers.http://blogs.msdn.com/b/b8/
    How sad Microsoft is drawing inspiration from one of the worst (from the developer's point of view) business strategies adopted by Apple.

    The Apple's App Store is not considered a case of monopoly abuse simply because Apple does not have the monopoly of operating systems. I'm not sure the European Commission will not intervene if Microsoft adopts the same distribution system, which obliges developers to give MS a certain fee out of each application sold.

    I have recently started developing software for the Mac using Lazarus and, with some other developers, have decided to inform the EC about a presumed monopoly abuse perpetrated by Apple:

    http://www.lazarus.freepascal.org/in...c,16799.0.html

    Particularly, the next version of the OS for the Mac (Mountain Lion) will be shipped with the default option which prevents unsigned apps from being installed.

    In my opinion, this is unfair competition against independent software developers and the App Store does not differ much.

    It breaks my heart to hear that MS is following Apple's money-hungry policy.
    Since I discovered Delphi and Lazarus, VB has become history to me.

  10. #10
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    WinRT (short for Windows RunTime) is the new framework that is part of Windows that runs 'Metro' apps.

    To target WinRT, you have several options depending on what you are familiar with already as a developer, or possibly, what you are looking to accomplish.

    If you currently write .NET, then you will be able to write Metro apps. If you have done any WPF, Silverlight or WindowsPhone 7 development, you will be in better shape, because you will know a bit about XAML which is the XML/HTML looking markup that makes up the UI now. The old top/left location/anchor system of WinForms is gone. But in reality, it has been gone for a long time, as WinForms stopped being developed some time ago.

    Microsoft basically built .NET classes to consume the WinRT API, to allow you to program for it using what you already know about .NET, and to also use lots of (but not all of) the existing classes in the framework.

    They also did the same thing for Javascript and HTML5, so web developers who are more comfortable there, or perhaps want to write something that can be brought to various platforms with little retooling, can write Metro apps that target WinRT because Javascript/HTML5 is a first class supported language there.

    If you wanted to make a 3D app (most likely a game), then you can target Direct3D via C++. There is no way to use C# or VB to make Direct3D based games, and there is nothing like XNA right now. There are some 3D effects you can do using VB or C#, but nothing on the scale of what you can do with Direct3D.

    When it comes to ARM versus non ARM Windows 8, the reality is when it comes to Metro apps, it does not matter, because they WinRT API is the same across both. If you write an app for Metro, it can run on ARM or x86/x64.

    Metro is a little more sandboxed than what you would be used to with WPF or WinForms. There are certain requirements, and permission restrictions, more inline with the set of permissions you would see a "standard user" having in Windows XP or Windows 7. Limited access to the file system and limited abilities to control other system wide settings.

    You can of course also still write WinForms or WPF apps that run on the desktop. These apps however will not run on ARM based versions of Windows 8, because that version will only support the desktop for running desktop versions of Microsoft Office and Internet Explorer. 3rd party desktop programs can not be run on ARM based Windows 8.

    I also believe Metro apps must be approved through the AppStore process. I am not sure if x86 versions of Win8 will allow you to install metro apps from other locations, but I know the ARM version is set to be tightly controlled to avoid poor performance from badly written apps.

    I hope to get a few articles about metro up soon in VB, showing how you can get some stuff done. Right now I have been working on programming live tiles.
    Last edited by kleinma; Jul 10th, 2012 at 12:22 AM.

  11. #11
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    Quote Originally Posted by kleinma View Post
    When it comes to ARM versus non ARM Windows 8, the reality is when it comes to Metro apps, it does not matter, because they WinRT API is the same across both. If you write an app for Metro, it can run on ARM or x86/x64.
    If you leave out C++ this is certainly true.

    But native code needs recompilation for the three instruction sets. At least I haven't heard of any plan and compiler toolchain the would compile code for x86, x64, and ARM into a single multi-targeted program file.

    Quote Originally Posted by kleinma View Post
    WinRT (short for Windows RunTime) is the new framework that is part of Windows that runs 'Metro' apps.
    I was pretty sure Microsoft marketing wants to call Windows-on-ARM "WinRT" too now, adding some confusion.

  12. #12
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    Yes they do want to call WOA WinRT but that sort of makes sense since WOA devices can ONLY run 3rd party apps on the WinRT platform.

    As far as C++ and D3D, I have not heard anything to state it will not work on ARM. The fact that the whole metro UI and even the composite windows desktop since vista is hardware accelerated, I have to think D3D will be on ARM and ANY metro app you write will work across the platforms. Well as long as they are able to be certified for the App store anyway. I would imagine if you make use of Win32 API calls and what not in side loaded metro apps, those will not work on ARM.

  13. #13
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    I didn't mean to suggest WOA will not support Direct3D. I was merely saying the compiled code isn't portable. If you have alternative info on this (e.g. multi-targeted compiler output) I'd be interested in hearing about it.

  14. #14
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    I will have to look into it, but it was my understanding that it was, since it all targets WinRT under the hood, and the hooks for WinRT are the same between ARM and x86.

    I will try to get more info and post back.

  15. #15
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,608

    Re: How does Metro work?

    Admin comment -

    Guys - we have an entire forum here for Metro / Win 8 discussions. I suggest different topics be talked about in different threads. That way, it will be easier to follow the discussions!

    Thanks!

    Brad!
    Have you given out your reputation points today? Select the Rate This Post link to give points for good posts!
    -------------------------------------------------------------
    Brad! Jones
    Lots of Software, LLC
    (I wrote: C Programming in One Hour a Day) (Dad Jokes Book) (Follow me on Twitter)

    --------------------------------------------------------------

  16. #16
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    Hmm, I thought we were sticking fairly close to one topic here: Metro app portability between Win8 on Intel and Win8 on ARM

  17. #17
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,608

    Re: How does Metro work?

    Quote Originally Posted by dilettante View Post
    Hmm, I thought we were sticking fairly close to one topic here: Metro app portability between Win8 on Intel and Win8 on ARM
    Ah. okay - if you agree that is a single topic, then I'll stop my off topics posting and let you carry on

    My apologies.

  18. #18
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    No problem. But the good news is we're close to a final answer that will resolve this thread.

  19. #19
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    I suspect where we're at is that when you write a Metro applet in a .Net language or in "HTML5+JavaScript" (you have to use another VS tool for this) they should be portable between Intel and ARM.

    When you use C++ you have to compile separately targeted object programs.


    See C++ Applications for ARM based devices, which suggests the same thing. The dearth of specific statements by Microsoft on this suggests to me that it's a bit of a "dirty little secret" they'd rather not talk about right now.

    Are WinRT Metro apps cross-compatible (x86/64 and ARM)? leaves us in the same place, but see Larry Osterman's reply there. This should be considered authoritative:
    A JS app should work on ARM unmodified. I'm not 100% sure about C#, an app written for "any CPU" should just work on ARM (but I've not confirmed). C++ applications will work, but will need to be recompiled specially for ARM.
    Comments there also touch on some issues with C#/VB.Net applets that may not be portable.
    Last edited by dilettante; Jul 12th, 2012 at 02:55 PM.

  20. #20
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    C#/VB.NET apps definitely are, because in the compile options, there is AnyCPU, x86, x64, and ARM in the drop down menus. Compiling for AnyCPU to me means it is good to go on any of those 3, since you are just making IL, and the .NET framework will JIT and run the IL on any CPU type it supports. Metro is walled in enough to not have to worry about things not compatible. Any Metro development in VB/C# is simply targetting .NET wrappers that target WinRT. WinRT was made to be compatible between the different CPU types. C++ may be the exception due to its low level non IL nature.

  21. #21
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    This is from a Microsoft employee:

    That is correct. In general the move from x86 to ARM is just changing the target and recompiling. So long as your app gracefully handles lower end hardware you should be fine.

    Once ARM systems are available you will want to test on them, but I wouldn't expect significant problems.
    Sounds like a recompile is needed for C++, but if the app is coded correctly, it really should be as simple as a compiler switch and recompile. Something that could even be autmated with MSBuild.

  22. #22
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    I didn't expect anything difficult about recomplation, the only snags being the use of any platform-specific API calls and that should be avoidable in most cases.

    What I was wondering about was a possible option to create a "multitarget" binary containing separate codefile resources with code for each of x86 and ARM for example.

    Sounds like a C++ Metro applet would be "posted" to the app store in two editions.

  23. #23
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    There are no platform specific APIs though. Your metro app targets WinRT, and WinRT is the same on both platforms. The only exception I see here would be for side loaded non store certified apps, and I expect those to be few and far between, certainly not available for commercial purchase.

    I would imagine the app gets listed once, and when you download it, it gives you whatever payload you need based on the system you are on. After all, if you buy it on your ARM tablet, you can then go home and install it on your desktop.

  24. #24
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,608

    Re: How does Metro work?

    Can a C++ app be compiled down to IL code like C# and VB rather than all the way native? I should know this, but I don't....

  25. #25
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    You might peruse C++/CLI:
    C++/CLI should be thought of as a language of its own (with a new set of keywords, for example), instead of the C++ superset-oriented Managed C++ (MC++) (whose non-standard keywords were styled like __gc or __value). Because of this, there are some major syntactic changes, especially related to the elimination of ambiguous identifiers and the addition of .NET-specific features.
    So yes, but no.

  26. #26

    Thread Starter
    Fanatic Member esposito's Avatar
    Join Date
    Sep 2003
    Location
    Perugia, Italy
    Posts
    961

    Re: How does Metro work?

    If you are targeting Intel-based Windows 8, is there any reason why you should prefer developing a Metro app to creating a "legacy" program which also works on Windows 7?
    Since I discovered Delphi and Lazarus, VB has become history to me.

  27. #27
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,608

    Re: How does Metro work?

    Quote Originally Posted by esposito View Post
    If you are targeting Intel-based Windows 8, is there any reason why you should prefer developing a Metro app to creating a "legacy" program which also works on Windows 7?
    I think this is a short-term versus long-term type of decision and is also impacted by who your target audience is.

    I think if you are targeting a consumer type application, you need to consider whether you are looking for short gains/sales or long term sales. If the answer is 'short term' then I think it is valid to consider the legacy approach. If you are looking to make inroads in the long run, then I think the metro look and feel will eventually win out.

    shifting from your question a bit...
    The other unknown is whether the Windows RT (arm) market will grow fast enough to offset the legacy market. If it does, then that is another reason to consider the Metro approach over a legacy approach.

    In the short term, it seems to me that the legacy approach has the best chance of success since that is where most people in the market currently are. Having said that, we've been talking to companies like DevExpress that are creating templates that let you create apps that look "Metro" without being Metro. That seems like a great transitional approach.

    Brad!
    (this response of course is just one opinion)

  28. #28

    Thread Starter
    Fanatic Member esposito's Avatar
    Join Date
    Sep 2003
    Location
    Perugia, Italy
    Posts
    961

    Re: How does Metro work?

    I have a feeling that it may be too early for me to shift my attention to Metro. I think it might be wiser to wait for the reaction of the market and, if the sales are promising, take Metro into consideration.
    Since I discovered Delphi and Lazarus, VB has become history to me.

  29. #29
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    This is really a case where right now, the market has little choice but to embrace it. It will be on Windows PC's, Tablets, Laptops, and phones. The only other real option is Apple, and many people won't pay the insane premiums to get those products. Even if metro gets some feedback that changes it's course a little (like making apps windowed), it will still be good to have an understanding of the technology and be able to work in it a little. While WinRT is new, VB and XAML are not, and those are what you would be working with.

  30. #30
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    Actually the move sounds a lot like Apple: "You must use our tools, sell through our store. Resistance is futile."

    While this worked for Apple they rely a lot on herd mentality/boutique sales among a relative minority of computer users. Microsoft tried this before with Phone 7. Dismal sales, dwindling mindshare.

    It may be interesting to see how it all plays out and what serious new alternatives arise for the desktop, as in the Post-WinMo phone market. Only time will tell.

  31. #31
    PowerPoster SJWhiteley's Avatar
    Join Date
    Feb 2009
    Location
    South of the Mason-Dixon Line
    Posts
    2,256

    Re: How does Metro work?

    Quote Originally Posted by dilettante View Post
    Actually the move sounds a lot like Apple: "You must use our tools, sell through our store. Resistance is futile."

    While this worked for Apple they rely a lot on herd mentality/boutique sales among a relative minority of computer users. Microsoft tried this before with Phone 7. Dismal sales, dwindling mindshare.

    It may be interesting to see how it all plays out and what serious new alternatives arise for the desktop, as in the Post-WinMo phone market. Only time will tell.
    As someone who is moving to Apple development, this is certainly an interesting turn of affairs with Win8/Metro. Specifically, as you note, the Apple model works quite well because the whole Apple Machine was built with a strict distribution model.

    Windows, on the other hand, is a much more open model. But the 'App Store' for the desktop, which potentially restricts the distribution channel, may turn off a lot of people. The 'classic' desktop is still there, but if a lot of people go back to the desktop, what is the advantage of upgrading to windows 8? (Microsoft's forced obsolescence not withstanding). The phone/tablet market is obviously booming, but MS is a notorious failure, here.

    With Apple, it feels like each upgrade is supplying a new feature; with Windows it - from experience - feels like we need to always ask 'what are we losing?'. The Metro interface is obviously an addition, but are they selling us an SUV instead of a Compact just to get around town?

    Microsoft are serious latecomers to the market, but the Juggernaut will not obviously be stopped, even if Windows 8 does turn out to be a Vista/ME rehash. People have grown accustomed to 'Windows: it just breaks." :/ The expectation for a $300 desktop of $500 laptop is astonishingly low. If Metro/8 turns out to be less-than-reliable will people tolerate such failures in a $500 phone or tablet?
    "Ok, my response to that is pending a Google search" - Bucky Katt.
    "There are two types of people in the world: Those who can extrapolate from incomplete data sets." - Unk.
    "Before you can 'think outside the box' you need to understand where the box is."

  32. #32
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,608

    Re: How does Metro work?

    Quote Originally Posted by SJWhiteley View Post
    Microsoft are serious latecomers to the market, but the Juggernaut will not obviously be stopped,

    They might be late, but the market has changed. How many tablets and netbooks don't even have CD or disk drives anymore? How are people install software on their phones and these diskless devices? Expectations have changed.

    The abilty to use cloud services (whether we know it or not) has also entered the market. How many people have installed an app on a smart phone (iPhone, Android, WP, or otherwise)? Lots. People have already been installing apps without going to the store to by disks.

    This is all a change from the last few years. It is a different paradigm now. Microsoft might be late, but they really aren't late by much. And, when you look at Microsoft's history, it is when they are a little late that they do their best.


    Quote Originally Posted by SJWhiteley View Post
    If Metro/8 turns out to be less-than-reliable will people tolerate such failures in a $500 phone or tablet?
    You'll need to define "less than reliable". Win8 seems to be quite capable at what it does. I don't think the issue will be reliable, but rather a level of frustration with the learning curve.

    Quote Originally Posted by SJWhiteley View Post
    even if Windows 8 does turn out to be a Vista/ME rehash.
    You say this as if Vista/Me were failures. I don't believe Microsoft considers them a failure. I'm guessing that what is defined as a failure would be based on sales and not on reviews. In this case, both OSes sold, which would imply success.

  33. #33
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How does Metro work?

    The Vista/Me negativity seems to come from a herd mentality more than anything. People don't realize that they are standing alone and naked when they make these comments, rather than safe throwing stones from within a crowd.

    Personally I prefer Vista to Windows 7 in many ways, and two of my machines are still running Vista. I have a retail Win7 Ultimate just sitting in a box here, and only run Win7 on a tablet that has no Vista drivers available.

  34. #34
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    Quote Originally Posted by SJWhiteley View Post
    Windows, on the other hand, is a much more open model. But the 'App Store' for the desktop, which potentially restricts the distribution channel, may turn off a lot of people. The 'classic' desktop is still there, but if a lot of people go back to the desktop, what is the advantage of upgrading to windows 8? (Microsoft's forced obsolescence not withstanding). The phone/tablet market is obviously booming, but MS is a notorious failure, here.
    I think people have many misconceptions about metro and the start screen. The "app store" is really mostly for metro apps. Metro apps must be installed through the app store, and that is a good thing. Desktop apps can be installed through the app store or any of the traditional ways we have always installed apps. people think of "metro" and "desktop" as these 2 different modes on windows 8, and in some ways they are, but the more you use windows 8, the more that the desktop just becomes a "metro" app. I find it pretty easy to navigate around and get to what I need to get to. It did take a little time to get used to it, but everything they have done makes pretty good sense once you start using it.

    I also wouldn't call MS a failure in the phone/tablet market. Windows Mobile did pretty well for a long time, and had tons of features prior to things all going touch screen. WinPhone7 clearly doesn't put up the numbers that android and iPhone do, but I don't think MS expected to spearhead into the market and grab an instant lead in market share. I think Windows Phone 8 is probably going to be the start of their marketshare gains there. The problem is going to be getting people away from the iPhone or Android, not just winning over some of the people who haven't moved to smartphones yet.

    In the tablet space, I am not sure how MS is considered a failure when they have never really launched a tablet OS/device yet. If surface bombs, then we can call it a failure, but it hasn't even launched yet. With BB going down the crapper, we could see the enterprise really embrace WinPhone8, Surface, etc. because of its superior management and policy capabilities. iPhones and Android are a free for all in that department.

  35. #35
    PowerPoster SJWhiteley's Avatar
    Join Date
    Feb 2009
    Location
    South of the Mason-Dixon Line
    Posts
    2,256

    Re: How does Metro work?

    Quote Originally Posted by dilettante View Post
    The Vista/Me negativity seems to come from a herd mentality more than anything. People don't realize that they are standing alone and naked when they make these comments, rather than safe throwing stones from within a crowd.

    Personally I prefer Vista to Windows 7 in many ways, and two of my machines are still running Vista. I have a retail Win7 Ultimate just sitting in a box here, and only run Win7 on a tablet that has no Vista drivers available.
    You need to think about it from the 99.9% of the market that are not developers or 'computer geeks'. Vista was an atrocity. The underlying reality that XP/windows 7 is based on the same technology as Vista is irrelevant. This is like concluding that a Trabant is based on the same technology as a Mercedes, so people who knock the Trabant really are 'throwing stones'. The technology may be similar but the 'experience' is different: which comes to...

    I think people have many misconceptions about metro and the start screen. The "app store" is really mostly for metro apps. Metro apps must be installed through the app store, and that is a good thing. Desktop apps can be installed through the app store or any of the traditional ways we have always installed apps. people think of "metro" and "desktop" as these 2 different modes on windows 8, and in some ways they are, but the more you use windows 8, the more that the desktop just becomes a "metro" app. I find it pretty easy to navigate around and get to what I need to get to. It did take a little time to get used to it, but everything they have done makes pretty good sense once you start using it.
    That is my understanding: the desktop is 'within' the Metro environment (if I can draw a childish and old parallel: early versions of Windows was an application 'in' the DOS environment). I don't really know, and honestly - as a a user - don't care about inconsequential elements. I don't disagree that the App store will be a good thing - if it can bring some discipline to application developers. But critically, how will the experience hold for the majority of users?

    Maybe I'm being too cynical, but it seems the tablet Metro interface - the desktop PC doesn't appear to be the real market for Metro - does appear to be presented for the user 'lowest common denominator'. Ironically, perhaps that truly is the average user.

    Microsoft have tried tablets, previously - perhaps before it was ready, true - by trying to 'miniaturize' the laptop and add a touch screen. They were rubbish. Really, really, rubbish.

    Likewise with the windows CE variants, windows mobile, Windows 6 point whatever, and so on. A developers nightmare - each incarnation was a big middle finger to developers for these devices - and an appalling 'user experience'. It wasn't surprising that blackberry took the baton with a smaller screen, but a more productive interface. Microsofts foray into such a market is not a recent one. Of course, technology has changed, hardware has changed: the capability to truly put a 'f888ing computer in your hand' is here and now, and have been for a couple of years (actually more than that).

    Developers need to step out of 'developer' mode and think about what people want from a device: for example, the difference between the Zune and iPod. Both with similar technology, and while Zune didn't have an extensive market share, and in dollar terms, wasn't necessarily a 'failure' or loss leader (although I'm not so sure about that since it was kiboshed), it really, overall, didn't succeed. The question is, why? I was seriously in the market a few years ago for a music player - Zune, iPod or other. The Zune did, actually, work reasonably well with few flaws. But it didn't have....something (I'm a UI designer, and am constantly evaluating good and bad interfaces, and what makes people do the things they do with device/machine interfaces - I couldn't pin-point what was wrong, if anything).

    Honestly, the bottom line, I think, is that the Windows moniker comes with too much baggage and has been typecast to a specific role.

    Can Microsoft pull of the Metro Experience? Personally, I'm doubtful from a user experience standpoint, but from a Juggernaut perspective it is possible by ramming it through the desktop. It will be an uphill struggle, with an extensive marketing campaign to convince people why they want Windows on their phone. Will the Metro interface bring the [Microsoft] mobile market up, or will is drag the desktop market down?

    As an engineer, I'd like to see it stick around for a bit - the Microsoft mobile development 'platform' is haphazard BS which constantly gives developers the shaft (well, I gave up during windows mobile). I don't have time to spend 110% of my time learning new development tools and platforms - I like to get things done in my primary field: developing is a tool to get a job done.

    [Sorry if this rant went off-topic].
    "Ok, my response to that is pending a Google search" - Bucky Katt.
    "There are two types of people in the world: Those who can extrapolate from incomplete data sets." - Unk.
    "Before you can 'think outside the box' you need to understand where the box is."

  36. #36
    Super Moderator FunkyDexter's Avatar
    Join Date
    Apr 2005
    Location
    An obscure body in the SK system. The inhabitants call it Earth
    Posts
    7,900

    Re: How does Metro work?

    You say this as if Vista/Me were failures. I don't believe Microsoft considers them a failure. I'm guessing that what is defined as a failure would be based on sales and not on reviews. In this case, both OSes sold, which would imply success.
    I think this somewhat misses the point. In the desktop OS market, at least, Microsoft has such a level of dominance that any new OS they release is pretty much guaranteed to be a success in terms of its immediate sales. The question is whether each iteration increases or erodes their level of good will in the market. If they released too many weak OS's in a row that good will would start to erode quite quickly and their market share would follow.

    In the case of ME and Vista, I believe both were weak releases. I never tried ME and had a pretty good experience with Vista (I'm still using it in fact) so I can't really call them technically weak but neither can I deny the resounding raspberry that very large sections of the market greeted them with. They're still held up as yardsticks for bad OSs to this day. But in both cases Microsofts continued market share was rescued by subsequent, stronger releases, XP and 7 respectively. I've always felt that it would take at least 3 bad releases in a row to really hurt MS and they always seemed to manage a strong release at least one in two so they've never really been hurt by the weaker releases.

    In terms of 8, I've got to be honest, I'm predicting a weak release. Whether it's technically weak or not I'm really not positioned to say as I haven't tried it, but the response from the market is already sounding pretty flatulent so you can expect it to breed a simailar sort of resentment that ME and Vista did. Will that mean the collapse of Microsoft? No. It'll be Windows 9 and 10 that govern that. And if there's one thing Microsoft prove again and again it's that they're not afraid of a weak release and are actually very, VERY good at learning from the experience. On that basis you can probably expect 9 to be an excellent piece of work.
    The best argument against democracy is a five minute conversation with the average voter - Winston Churchill

    Hadoop actually sounds more like the way they greet each other in Yorkshire - Inferrd

  37. #37
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    I think Windows 8 will be a pretty strong release actually. It has a lot of things going for it to make that so.

    1) Anyone buying Windows 7 right now gets an upgrade to Windows 8 (i think either free or 15 dollars)
    2) Anyone with Windows XP or higher can get the upgrade version for 40 bucks
    3) It will be released on 3 form factors of tablet, laptop, and desktop
    4) Metro aside, there have been many improvements to the desktop experience and underlying archetecture of Windows (task manager, file copy, drive storage pools, acct sync across devices, etc..)
    5) It boots faster, runs faster, and uses less memory than Win7
    6) Any hardware that was compatible with Vista should work fine, and most stuff from the XP era will also work assuming 64 bit drivers were made at some point for Vista/Win7
    7) For the first time ever, Microsoft is making their own hardware PC device that will come without a bunch of bloatware like your standard Dell and HP system
    8) The only real alternative is to get a Mac, and for compatibility or price reasons, that might not be a valid option.
    9) most of the criticism I have read is based on bad or just wrong information. Some of the criticism is valid and I agree with a few statements that have been made, but I have been using Win8 on a regular basis now for 2 months while working with Metro development, on a non touch device, and I don't find myself feeling like the mouse and keyboard are not good input devices even in metro apps. On my home PC with dual monitors, I have the start screen come up on my secondard monitor, which means my desktop is always there.

  38. #38

    Thread Starter
    Fanatic Member esposito's Avatar
    Join Date
    Sep 2003
    Location
    Perugia, Italy
    Posts
    961

    Re: How does Metro work?

    A technical question: what happens when you install a legacy application under Windows 8? Since the classic desktop is not there anymore by default, do you get an icon (if it is still called that way) on the Metro desktop or is your application's icon only visible when you activate the classic desktop?

    Thanks in advance.
    Since I discovered Delphi and Lazarus, VB has become history to me.

  39. #39
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: How does Metro work?

    Metro doesn't have a desktop so to speak, the Metro start screen is the replacement for the old start menu. So if the desktop app installed entries into the old start menu (most do) then those icons will show up on the metro start screen. If the desktop app also created a desktop shortcut (some do) then it will still make one on the windows desktop like it always did.

  40. #40

    Thread Starter
    Fanatic Member esposito's Avatar
    Join Date
    Sep 2003
    Location
    Perugia, Italy
    Posts
    961

    Re: How does Metro work?

    Quote Originally Posted by kleinma View Post
    Metro doesn't have a desktop so to speak, the Metro start screen is the replacement for the old start menu. So if the desktop app installed entries into the old start menu (most do) then those icons will show up on the metro start screen. If the desktop app also created a desktop shortcut (some do) then it will still make one on the windows desktop like it always did.
    The desktop shortcut created after the installation of a legacy application is usually represented by a typical icon the size of which may be only 32x32 pixels (766 bytes).

    When I see the tiles on the Metro Start screen, they look quite big. So, will the tiny icons be stretched in order to occupy the entire area of the tiles? If this is the case, since their definition is very low, the resulting tile would be an eyesore. Is it the way it works?

    Thanks.
    Since I discovered Delphi and Lazarus, VB has become history to me.

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width