Migration 3 4: borderStyle=none?

I've started to test a migration of a Flex 3 app to Gumbo. I couldn't find out how to remove the border from components like e.g. mx:TextInput. The code below shows the problem:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application
    xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/halo"
    layout="vertical"
    >
    <mx:TextInput
        borderStyle="none"
        borderThickness="0"
        borderColor="red"
        text="A red border is visible but I expect no border."
        />
    <mx:TextInput
        borderColor="red"
        text="A red border is visible"
        />
</mx:Application>
How can I remove the border of Flex 3 components?
Thanks for any hints,
Marc

Marc,
I believe you may need a custom TextInput border skin to achieve the same effect with the Spark skins for the mx:TextInput control. Certain styles that were supported by the default Halo controls/containers are not as easily tweakable with the Spark skins.
So, long story longer, here is my solution. I copied the default Spark skin for the Halo TextInput control (you can find the default skin, TextInputBorderSkin.mxml, in the <SDK_Dir>\frameworks\projects\sparkskins\src\mx\skins\spark\ folder) and made a couple minor tweaks and then saved my custom skin as CustomTextInputBorderSkin.mxml in the /src/skins/ folder of my Flex Project. Here's the revised CustomTextInputBorderSkin.mxml file:
<?xml version="1.0" encoding="utf-8"?>
<!--- The Spark skin class for the border of the Halo TextInput component. -->
<local:SparkSkinForHalo xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:local="mx.skins.spark.*"
        implements="mx.core.IBorder">
    <fx:Script>
        <![CDATA[
            import mx.core.EdgeMetrics;
            import mx.core.IUIComponent;
            /* Define the skin elements that should not be colorized. */
            static private const exclusions:Array = ["background"];
            override public function get colorizeExclusions():Array {return exclusions;}
            /* Define the content fill items that should be colored by the "contentBackgroundColor" style. */
            static private const contentFill:Array = ["bgFill"];
            override public function get contentItems():Array {return contentFill};
            /* Define the border items.*/
            static private const borderItem:Array = [];
            override protected function get borderItems():Array {return borderItem;}
            static private const metrics:EdgeMetrics = new EdgeMetrics(2, 2, 2, 2);
            public function get borderMetrics():EdgeMetrics {
                return metrics;
            override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {
                super.updateDisplayList(unscaledWidth, unscaledHeight);
                if (parent && parent is IUIComponent && !IUIComponent(parent).enabled) {
                    alpha = 0.5;
                } else {
                    alpha = 1;
        ]]>
    </fx:Script>
    <!-- fill -->
    <s:Rect id="background" left="1" right="1" top="1" bottom="1">
        <s:fill>
            <s:SolidColor id="bgFill" color="0xFFFFFF" />
        </s:fill>
    </s:Rect>
</local:SparkSkinForHalo>
And then I specified the custom border skin by specifying the borderSkin style on the Halo TextInput control, as seen in the following example:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/halo">
    <mx:TextInput
            borderStyle="none"
            borderThickness="0"
            text="A red border is visible but I expect no border."
            borderSkin="skins.CustomTextInputBorderSkin" />
    <mx:TextInput
            borderColor="red"
            text="A red border is visible" />
</mx:Application>
Hopefully that helps. For a lot of other great migration information and differences between Flex 3 and Flex 4 (and how to use the Halo skins in your projects), see the following article on the Flex Developer Center: http://www.adobe.com/devnet/flex/articles/flex3and4_differences.html
Peter deHaan
Flex SDK Team | Adobe Systems Inc

Similar Messages

  • MDIChildren flickering problem while switching between child form with dockstyle.fill and borderstyle.none

    I have an mdi applicaton in Visual studio 2010 (.Net framework 4.0). I'm having a flickering problem when user switch between an MDI Child form. I'm declaring the child form then setting the borderstyle.none at design time and dock property to fill
    through programming and make them a MDIChildren before I show them so that it takes up the entire space of the MDI Parent window without being maximized (client request). 
    i don't want to display control box(minimize, maximize,close) of child form in mdi parent form. (client request)
    The problem is that when the child form is being displayed it is briefly shown in it's default size with icon and control box before being resized to fill the available area on the MDI Parent form. When a Child Form loads, you can see it in it's original
    size (the size from Design-time) then all this flickering while maximizing .
    In other words, child form show up in the client area of the MDIForm, not maximized, with a caption, very shortly, before they are finally filling the client area. there is a short flicker when a new form is created and displayed. This process is most noticeable
    with a not-so-powerful PC or there are lots of control inside child form.
    below is my code to show child form 
       MyChild1 c1 = new MyChild1();
                                c1.MdiParent = MdiMainParent;
                                c1.Dock = DockStyle.Fill;
       c1.Show(); 
    how can i solved the problem of flickering issue?
    I tried many options which i have described below
    1.double buffering.
    2.set style property to child form
          this.SetStyle(ControlStyles.UserPaint, true);
          this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
          this.SetStyle(ControlStyles.DoubleBuffer, true); 
    3. override below method in each child form
    protected override CreateParams CreateParams
                get
                    CreateParams cp = base.CreateParams;
                    cp.ExStyle |= 0x02000000;
                    return cp;
    4. override below method in each child form
      const int WM_NCPAINT = 0x85;
            const int WM_SIZE = 0x05;
            protected override void WndProc(ref Message m)
                if (m.Msg == WM_NCPAINT)
                    if (this.WindowState == FormWindowState.Maximized)
                        return;
                if (m.Msg == WM_SIZE)
                    if (this.WindowState == FormWindowState.Maximized)
                        return;
                base.WndProc(ref m);
    but I didn't see any effects.  please someone help me to resolve flickering issue. thanks in advance.

    Hi hardikvaishnav,
    This is a known issue which has been reported to Microsoft Connect. Unfortunately, this issue will not fix due to stability issues around MDI. For more details, see 
    https://connect.microsoft.com/VisualStudio/feedback/details/97787/border-of-mdi-child-form-flashes-up-despite-formborderstyle-none.
    You might use a user control or panel instead.
    Best Regards,
    Bob Wu [MSFT]
    MSDN Community Support | Feedback to us

  • 10.5.x mail server migration to 10.6 (non upgrade)

    Hi all,
    So I have been reading up on the various issues with upgrading 10.5.x servers to 10.6 however my question involves going from a 10.5.x server to a clean 10.6 server (non upgrade install). I generally start fresh with a new OS and migrate the data anyway however this is the first time I have experienced a switch away from cyrus (Instead of to cyrus which I have done enough now).
    Has anyone done this yet? With the switch to dovecot, I am unsure how this works from a migration standpoint. Can I just use ditto to move the mail stores over and then the new dovecot server will simply recognize everything? I somehow feel like it can't be that easy with cyrus involved (though cyrus has worked well for me).
    I recall seeing an imap sync tool some use here to transfer imap mail to a new / different server. Would that be the preferred method? Mailbfr hasn't been updated for 10.6 yet so I can wait for that amazing software as well but I am itching to test our mail stores and scripts, etc out on the test box.
    I have a test server that is being freed up this week so I'll try myself anyway but was wondering if anyone had performed this sort of migration yet in a non upgrade fashion?

    John Lockwood wrote:
    Shane Depner1 wrote:
    Hi all,
    So I have been reading up on the various issues with upgrading 10.5.x servers to 10.6 however my question involves going from a 10.5.x server to a clean 10.6 server (non upgrade install). I generally start fresh with a new OS and migrate the data anyway however this is the first time I have experienced a switch away from cyrus (Instead of to cyrus which I have done enough now).
    Has anyone done this yet? With the switch to dovecot, I am unsure how this works from a migration standpoint. Can I just use ditto to move the mail stores over and then the new dovecot server will simply recognize everything? I somehow feel like it can't be that easy with cyrus involved (though cyrus has worked well for me).
    I recall seeing an imap sync tool some use here to transfer imap mail to a new / different server. Would that be the preferred method? Mailbfr hasn't been updated for 10.6 yet so I can wait for that amazing software as well but I am itching to test our mail stores and scripts, etc out on the test box.
    I have a test server that is being freed up this week so I'll try myself anyway but was wondering if anyone had performed this sort of migration yet in a non upgrade fashion?
    Kerio provide a free tool to do IMAP migrations to Kerio, something similar for (Snow) Leopard Server would be nice. However it might be possible to do basically the same thing via the command line using Dovecot's own routines.
    See http://wiki.dovecot.org/Migration
    That page also refers to an open source utility called imapsync to do direct IMAP transfers, it looks like it is a Perl program and should run on a Mac (it will almost certainly need some Perl modules adding and this requires you to install XCode). Ah! I have just found another tool called Larch which is written in Ruby, this looks from reports to be more flexible and more reliable.
    imapsync - http://freshmeat.net/projects/imapsync
    Larch - http://github.com/rgrove/larch/tree/master
    Let me know if you successfully do an IMAP->IMAP migration. If anyone manages to use Larch under Mac OS X let us know what was involved. I have done some Perl, and a bit of PHP but never touched Ruby before.
    I've used imapsync in the past; it is fairly reliable, although there are definitely a few caveats that you must read the documentation to catch (for example, there is a command-line switch that, if not used, will reset the sent/received dates of ALL transferred email to the current date, and another that is used to preserve the seen/unseen status). Getting it up and running requires (or at least required, as of my last use of it back in July of this year, on a 10.5 server) installing of a few Perl modules from CPAN as well, necessitating the installation of XCode on the server; you are correct on that point. That being said, it's a pretty handy tool for doing a wide variety of migrations, as it doesn't care WHAT the source and destination mail servers are, so long as they both speak IMAP. There are, of course, minor issues if the source server is Microsoft Exchange, since Exchange's IMAP implementation is a bit ... nonstandard ... at times.
    Just my $0.02 on that topic

  • I have a number od cds referring to X-rays and MRI scans which played perfectly on my old PC, but now that I've migrated to an imac none of them will open. Any suggestions? I am anything but an expert.

    Hi anybody,
    I have a number of cds referring to X-rays and MRI scans taken over the last few years, and I used to be able to open them on my old PC, but having recently migrated to an imac none of these will open. Any suggestions to a complete non-expert in the mac world would be greatly appreciated.
    Ray in Galway

    Another thought, if they're just typical image files like jpegs, or PDFs or some other universal file format.  Have a friend with a windows computer copy the contents of the CDs to an external media source (flash drive, external HDD etc) and copy them to your mac.
    If they were burned by the medical staff to be ran as a program then they may not be comptable with Mac OS.  If this is the case see about having a friend copy the images for you.

  • BackgroundAlpha="0.0" and borderStyle="none"  in Flex 4

    Hi Friends
    <mx:TextArea width="200" height="200" text="default value" editable="false" borderStyle="none" backgroundAlpha="0.0" />
    When I update the flex sdk from 3.2 to 4.0. borderStyle and backgroundAlpha do not work.
    Maybe someone can tell me what should i do. thanks

    We have also expierenced the same problem, or similiar even.
    After reading the docs on the opensource website
    http://opensource.adobe.com/wiki/display/flexsdk/Per-Module+Style+Management
    you will find that there is a flag you can set on the compiler arguments as follows:
    -isolate-styles=false
    by doing this, i think this allows the modules to work as before, inheriting the styles by default from the application.
    There seems to be a new way of using the StyleManager in the current release of Flex 4.
    Let me know if this helps.
    !Sharif

  • Info : Migrating Apex Application from Non-SSO to SSO environment

    Hi All,
    This post is to share my experience while working on APEX. This may be useful to some apex developer.
    If we migrate an apex application from a non-sso (i.e. http) to sso (i.e. https) environment, the flash chart doesn't work.
    I found that in the source of a Flash Chart region, we use #HOST# variable to locate the swf file. The environment variable takes the correct path but with "http" as prefix. But to access application pages "https" is used. Because of which, the swf file couldn't be located by the application.
    Work-around Solution : If I hard code the value i.e. the application path having "https" replacing #HOST# variable then the flash chart works fine. I couldn't found a way by which the #HOST# parameter value can be updated to take "https".
    The same environment host other non-sso applications as well.
    Any comments on this are welcomed.
    Regards,
    Mangal

    Hi Dirk,
    Thanks for the reply.
    As I mentioned earlier, by Non-SSO I mean "http" and by SSO I mean "https". This is because, before migration the application was accessible using "http" and now we have to use "https" alongwith SSO to access the application. I only want to highlight the Flash Chart issue with this migration.
    The problem doesn't solves with your solution as I am getting correct instance/environment name with #HOST# but prefixed with "http" and not "https". Hence the application won't be able to locate the required swf file.
    Even the workaround I mentioned is only feasible, if an application has only few Flash Charts. However, if there are large no. of Flash charts in an application, then it would be a tedious task to update all flash chart source either by an application item (as you mentioned in your post) or hard coding the path itself. Also, every new Flash Chart source needs to be updated by a developer to fix this.
    A better solution is required by which the Flash chart source is not touched and the #HOST# variable for the application is updated to take the "https" prefixed to the swf file path.
    Regards,
    Mangal
    Edited by: Mangal on Mar 5, 2009 11:31 PM

  • Migrate Data from External (non time machine) backup to new HD

    I have a late 2007 iMac that HD went bad. Only 51 sectors were bad and I was able to Carbon Copy off 99% of the data onto an external drive. I have gotten a new HD installed and have restored the Lion OS. My question is,  How do I migrate all of the data that I was able to save to new system so everything is there? For example, all of my saved emails, Pictures, desktop, etc, etc.
    Thanks for any help that you can give.
    P.S. I tried renaming the Applications and System folders out of the way, starting the new drive at a "T"arget drive on the iMac and then copying those two folders (What would copy) onto the new HD on the iMac ... unfortunately it didn't show any success.
    Thanks again!

    Okay, I have finally completed the task that I set about trying to complete a week ago.
    I reformatted the drive s instructed above as one partition of GUID Mac OS Journalled format.
    I then wanted to clone my Time Machine back up hard drive to the new hard drive in Disk Utility. When I tried using the restore function, it would copy all the back-up's that had been created using "Backup", but would error out on the first app when copying the time machine backups.
    Confused, I then tried Carbon Copy Cloner and it too errored out, but on the third app in the apps folder of the first time machine back up file.
    Before giving up I tried to clone the hard drive using Super Duper!
    11 hours later I now have a perfectly working cloned hard drive. I redirected my time machines to the new hard drive and it backed up to the correct folder as if nothing had changed. So all is good now and I just wanted to thank everyone for their advice.
    Thanks.
    PS. I have no idea why DU and CCC errored when copying... but at this point, I don't really care. It worked with Super Duper!

  • Migration FOREX deals from Non-SAP system

    Hi,
    has someone experience with migrating Treasury deals?
    > how did you migrate?
    > what tool/ transaction did you use?
    > what number of deals should there be to have automated update?
    > what problems could arise?
    > are there specific settings required in
    > Other hints?
    We have around 600 (forward) FOREX transaction that would need to be taken into a SAP ERP 6.0 system and we try to find out how to do this best.
    Any hints much appreciated.
    Thanks
    Hein

    Hi,
    In ECC6.0, you will need to activate the extension EA-FS. When you do this, you will see a new node for Financial Supply Chain Management in the IMG. Navigate as below for the data transfer process:
    Financial Supply Chain Management ->Treasury and Risk Management->Transaction Manager->General Settings->Tools->Legacy Data Transfer
    You will need to refer to the IMG help and the link below for help.
    [Legacy Data Transfer|http://help.sap.com/saphelp_erp2005/helpdata/en/56/d880392c58ab54e10000000a114084/frameset.htm]
    Cheers.

  • Migration Assistant fails on non-existent file

    Here's an interesting one. I made a bootable clone of my harddrive (with SuperDuper) that works like a champ. Bought a new (much larger) hard drive for my Macbook, installed OS X with no problem, got it all updated. Then went to use Migration Assistant to import my user from the clone, and it fails on trying to copy an invisible file (begins with .) that actually doesn't exist (I have Finder set to show hidden files). This causes the whole import to fail and MA says the user can't be created. Is there any way to tell it to skip this "file"? Other suggestions welcome.

    Yeah, that didn't work so well since SuperDuper ran across repeated errors trying to do so; I suspect it's something to do with the drive. (SuperDuper complains about WD's MyBook, which is what the drive is.) Because SD stops the entire copy operation on single errors, it'd be a painstaking process.
    Besides that, I like doing fresh installs of all the bits.

  • Migration over private network - Non-Cluster

    Hello everyone...
    I have a hyper-v cluster (3 nodes), and a second stand-alone hyper-v host; all of which is managed by SCVMM 2012 R2.  The VMM server, and all hyper-v hosts are connected to a 10gbs private network.
    When doing a live migration between nodes in the cluster; everything is being transferred over the 10gbs network.
    When doing a live migration between one of the cluster nodes and the stand-alone host, it uses the public LAN.
    All machines can ping each other on the 10gps network, so it isn't a connectivity issue.  (I am using that network to do backups as well.)
    On the stand-alone host, I have "use the following IP subnets" set to the subnet of the private network.
    All machines are running Windows Server 2012 R2.
    Any suggestions on how I can do the migration using the 10gps network?
    Thanks!

    Hi Sir,
    >>I have a hyper-v cluster (3 nodes), and a second stand-alone hyper-v host; all of which is managed by SCVMM 2012 R2.  The VMM server, and
    all hyper-v hosts are connected to a 10gbs private network.
    >>When doing a live migration between one of the cluster nodes and the stand-alone host, it uses the public LAN.
    If I understand correctly , you may need to check the link layer between the cluster node's live migrate IP and that stand-alone host's LM IP .
    I want to know the detail of the network topology between cluster and stand-alone host because you mentioned "it uses the public lan" .
    Best Regards,
    Elton Ji
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] .

  • Cleanup after a 2013 forklift migration...leftover non-user mailboxes on old server?

    So, I did a forklift migration from 2013 RTM to 2013 SP1. Everything is great with 1 exception: Arbitration and system mailboxes still think they are on the RTM server, so I can't remove the RTM server from the environment.
    I ran the powershell command to "re-home" all the user mailboxes to the SP1 server's database...it succeeded!
    Because the original information store file isn't mounted on the RTM server, I can't issue a get-mailbox -arbitration | New-Moverequest -Targetdatabase
    "SP1 SERVER'S DATABASE"
    My question:
    Wouldn't a forklift have brought the Arbitration and system mailboxes to the new SP1 server and all I have to do is run a seperate command to rehome them specifically?
    Is there a better way? Can I safely recreate the Arbitration and system mailboxes on the SP1 server?
    -Dane

    Hi Martina, thanks for chiming in!
    Upon running that, I get the list of all mailboxes in that Old Database.
    DisplayName                             ItemCount    StorageLimitStatus       
           LastLogonTime
    SystemMailbox{311ff57d...         193
    HealthMailbox87302716d...         4783                                                      4/18/2014
    7:52:46 PM
    Personal Archive - Hea...             0                                                           4/18/2014
    7:52:46 PM
    Discovery Search Mailbox            3
    Microsoft Exchange                     10
    Microsoft Exchange                     22
    Microsoft Exchange App...            3
    Microsoft Exchange Fed...            3
    Microsoft Exchange Mig...            19
    HealthMailbox311ff57db...           9044                                                 
    5/13/2014 11:02:04 AM
    Personal Archive - Hea...             0                                                            4/24/2014
    7:46:02 AM
    test1                                         70                                                           4/22/2014
    2:32:52 PM
    9102_Scion                                9                                                            4/24/2014
    6:15:27 PM
    admin                                       38                                                           4/23/2014
    2:58:54 PM
    Anna Valle                                14904                                                      4/23/2014
    2:58:55 PM
    That HealthMailbox311ff57db...is the only one with a recent logon, could that be the culprit!?!?
    Everything else shows a logon timestamp of the evening it was forklifted to a new database, which is what I expect to see.
    -Dane

  • Migrate reference library to non-referenced ...

    I wanted to give iPhoto'11 a thorough test-run (working with faces, building albums & such) prior to committing to it. So I initially setup the library to be a reference library. I'm now satisfied (mostly) with iPhoto, and (more importantly) I'm now getting tired of making sure both my original photo library on disk and the iPhoto reference library are in sync (e.g., adding new photos to both). Is there a trivial way to force iPhoto to now import all the existing referenced photos, so that my library will no longer be a referenced library? As I now have lots of meta-data, e.g., faces, I don't think rebuilding the library from scratch is an alternative. Thanks!
    -aka

    Is there a trivial way to force iPhoto to now import all the existing referenced photos, so that my library will no longer be a referenced library?
    No.
    The Library packages contains aliases that point to the actual files. You'll need to replace these aliases with the actual files.
    Regards
    TD

  • What to do when SLS - Lion Server Upgrade & Migration Fail

    Hi everyone,
    I've had a tough time over the past week trying to updating my SLS to LS. (It was a slow week at the office so despite the warnings in these discussions I wasn't disturbing anyone, so I thought I'd try...) Both an upgrade to the current running system and a clean install on a wipe of that hard drive stall at the "Configuring Services" "Upgrading services" screen of the set up process. The migration path eventually fails, and as far as I can tell, it seems that the upgrade path just stays there forever.
    Don't worry - I'm doing this all on a Super Duper! clone of my primary drive, so I can go back to SLS whenever I need to.
    BUT, I can tell that the server's status is at least partially okay, even in this stalled setup state - iChat seems to work on various clients, and I can use Server Admin to see stats and services, etc.
    So despite the discomfort of a failed install, part of me feels like I'll be fine with the LS if I can just figure out how to move my old data into the right places for the new system to use it. But I can't find any guidance for that. I'm looking to migrate OD (seems to have migrated fine), iCal, iChat, Address Book, Wikis, Time Machine, and File Sharing (which should be trivial to set up, I reckon).
    Can anyone point me in the right direction?
    Thanks very much,
    Willhaus

    Okay, so I've had some marginal success.
    After leaving the hung install for a ridiculous amount of time (24+ hours), I realized that I could click the help button, and from the help window click the "further info about Lion Server" link to launch Safari. That gave me access to Software Update from the Apple menu, which then let me install the latest Safari update which conveniently enough requires a restart.
    After restart, the Server Migration Assistant kicked in again, but failed quickly in the upgrading services stage. Another restart, and the sever finally booted more or less normally.
    The strange thing was that although chat services worked fine during the hung install, all OD-related services stopped working after restarting. Turns out there were no users or groups in OD. Importing them from an OD archive, though, restored them.
    So now iChat works great (even the old chat longs migrated successfully), and AFP is properly sharing our volumes across our studio's network. So our server is limping along.
    The other services we need that aren't up yet are Wiki and iCal. Some info about those:
    Wiki: administrators can log in and see all wikis just fine. That's awesome because it means the data migrated successfully. Any non-admin users can log in, but are then get a wiki-styled page that says simply "No wikis found". It's as if they don't have permissions to see the wikis, even though in Server.app they belong to the groups that the wikis are associated with. I've tried removing and re-adding users to groups, but that doesn't seem to do it. Any ideas how to fix this?
    Calendar: While I can't get this to work, it's not like it's completely lifeless. An account in a client Lion iCal configured with the proper Lion settings returns an error that reads:
    "The Server is Busy or Unavailable.
    "The server at myserver.com is currently unable to handle the connection for account “ Calendars” due to a temporary overloading or maintenance of the server. If this continues you should contact the server administrator.
    "You may try to connect to the server again or take the account offline."
    As a logged in administrator, in a wiki clicking on Calendar in the nab bar goes to the calendar style page with an unending dialogue box that reads "Getting events from server". And clicking on Calendar from Home page footer takes me to the URL https://myserver.com/webcal with an error that says:
    "Service Temporarily Unavailable
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8r DAV/2 Server at myserver.com Port 443"
    Again, at least I'm confident that the data migrated properly -  I can find all the calendar data in it's proper new location - but either the service won't start or something's not configured correctly. I've tried chaining the hostname and restarting the service about a billion times. I've got no idea what to try next. Any ideas?
    Thank you so much,
    Willhaus

  • No migrated network IP / Removal VMware Tools

    Hello guys! good night!
    I'm trying to convert about 100 VMWARE VMs to my Hyper-V 2012 R2 environment. I'm using the new MVMC 2.0.
    After converting the VM, I realize that the network IP address was absent. The NIC was using the DHCP config. (The source VMWARE VM was configured with Static IP).
    Other point is that the VMWARE tools wasn't removed.
    In addition, during the migration process, the source VMWARE VM was power on and the MVMC did the snapshot and turned it off.
    None of this itens has occured after the VM migration complete process. Even the VLAN ID in the VM settings on the Hyper-V was blank. No error message was returned. The whole migration process has completed successfully (green check mark). 
    On the link http://blogs.technet.com/b/privatecloud/archive/2014/04/08/migration-automation-toolkit-for-mvmc-2-0.aspx
    states that with this tool is possible to:
    MVMC removes VMware tools;
    MVMC migrates network IPs;
    But none of this itens has occured after the VM migration complete process. Even the VLAN ID in the VM settings on the Hyper-V was blank.
    Besides this issues, the whole migration process has completed successfully (green check mark). 
    I would like to confirm that steps should I take to do a troubleshooting (for example, where can I find the verbose logs, etc).
    Best regards, 
    Leandro
    Leandro Soares - MCP/MCSA/MCTS

    I have the same problem on ESXI 5.5 for over a month now, tried the patches, tried the LTS kernel which others say results in an immediate result without patches, nothing seems to work and nobody seems to be able to offer a solution.
    Did you make any progress ??
    Error! Build of vmblock.ko failed for: 3.10.25-1-lts (x86_64)
    Consult the make.log in the build directory
    /var/lib/dkms/open-vm-tools/2013.09.16/build/ for more information.
    make[2]: *** No rule to make target '/var/lib/dkms/open-vm-tools/2013.09.16/build/vmblock/linux/inode', needed by '/var/lib/dkms/open-vm-tools/2013.09.16/build/vmblock/vmblock.o'. Stop.
    Makefile:1224: recipe for target '_module_/var/lib/dkms/open-vm-tools/2013.09.16/build/vmblock' failed
    make[1]: *** [_module_/var/lib/dkms/open-vm-tools/2013.09.16/build/vmblock] Error 2
    make[1]: Leaving directory '/usr/src/linux-3.10.25-1-lts'
    Makefile:120: recipe for target 'vmblock.ko' failed
    Last edited by crankshaft (2014-01-10 11:32:32)

  • Migrated files to new MBPro w/Mountain Lion, Excel Files won't save

    Just received my new MB Pro and migrated files from my 5 y/o MB Pro to the new machine using Migration Assistant.  Now, none of my Excel files on the new machine can be updated and saved.  Help!!
    Thanks,
    Alan

    Hi
    I have a problem along similar lines. MBP 2007 new logic board fitted. Restored files from Time Machine. iPhoto messed up - still to fix but appears to be something to do with permissions. Now to your problem, and mine, with Excel. I originally found one file opening as Read Only. Checked all the permissions, etc, as you have done. Initially thought it was only one file as others opened OK. I have now found another one with the same problem. I found that by changing the name of the file in the Finder i.e. adding a "1" to the name, the files would open OK. In looking through the Microsoft site I found one similar problem and one suggestion was to copy (I just dragged them) the files to the Desktop and see if they would open. Answer, yes they do. The theory is that there is a sharing problem. I have checked these two files and enclosing folders. Nothing is locked and nothing is, or ever has been, shared. All the permissions appear to be correct and I am signed in as Administrator. That is as far as I have got at the moment. You might like to see if your file(s) will open from the Desktop - just double click them.
    Not sure where to go next but at least I can now use the files.
    TY

Maybe you are looking for

  • How can I add features to Windows 7 Standard Embedded 64-bit?

    Hey guys, I apologize if I am posting in the incorrect place but the embedded forum was specifically for POS Systems it seems. My problem is that a third party has provided us with some systems that include Windows 7 Standard SP1 (64-bit) for their o

  • Creating a Business Service for Start/Stop Application Service in CCB 2.3.1

    Hi, I'm in the process of creating a BPA script that invokes a Business Service to perform a Start/Stop for a given Account ID/Premise ID combination. The Business Service is using the base Application Service: Start Stop (CILCSSEP). I am moving the

  • Development of Form for Returnable and Non-returnable material Gate pass

    Dear Experts, I am working with an Indian client impementing SAP PM. I need help in developing a form for Returnable and Non Returnable Gatepass. Requirements are below; RGP/NRGP should be made for all materials going out of the factory, irrespective

  • No internet connection after migration of profile

    I just migrated an os x 10.68 user profile to a fully functional install of Yosemite.  Now, while the system gets an IP address from my router (an airport extreme), I get the message - "not connected to the internet" whenever i try to browse the web.

  • Netbeans, java3d, menubar, toolbar, jpanel  HELP

    I'm attempting to make an application using netbeans which features a menu, a toolbar, and a jpanel beneath that which displays a Canvas3D. I got this to partially work, but the Canvas3D will not automatically resize. If I .add the canvas3D to the fr