Urgent assistance needed on textfields/labels please!!

I have been trying for days to add labels and textFields to my applet and can only manage to display one.
My assignment instructions suggest I use makeTextField method and call the setEditable method from the makeTextField method to avoid repetition of code.
The following is my code...I must have this done in the next couple of days so if someone could please please give me some assistance it would be really appreciated....also, thoughts on my layout would be great as well...i cant seem to set up my buttons in the correct order.
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;
public class Registry4b extends Applet implements ActionListener {
public void init() {
backgroundColor = new Color(200,255,255);
this.setLayout(new FlowLayout(FlowLayout.CENTER,4,1));
makeButtons();
row1 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
row1.add(clearB);
row1.add(studFindB);
row1.add(studForB);
row1.add(courB);
row2 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
row2.add(studBackB);
row2.add(courFindB);
row2.add(courForB);
row2.add(studB);
row3 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
row3.add(courBackB);
add(row1);
add(row2);
add(row3);
Panel p = new Panel(new BorderLayout());
Label studID = new Label("STUDENT ID");
TextField entry = new TextField(" ");
p.add(studID,BorderLayout.WEST);
p.add(entry,BorderLayout.CENTER);
Label firstTF = new Label("FIRST NAME");
makePanel(new BorderLayout(2,2),backgroundColor);
add("West",courBackB);
add("East",studB);
makePanel(new BorderLayout(2,2),backgroundColor);
add("North",p);
add("South",courForB);
makePanel(new BorderLayout(2,2),backgroundColor);
add("North",courFindB);
add("South",studBackB);
makePanel(new BorderLayout(2,2),backgroundColor);
add("West",p);
add("East",studForB);
setBackground(backgroundColor);
clearB.addActionListener(this);
courBackB.addActionListener(this);
studB.addActionListener(this);
courForB.addActionListener(this);
courFindB.addActionListener(this);
studBackB.addActionListener(this);
courB.addActionListener(this);
studForB.addActionListener(this);
studFindB.addActionListener(this);
private Label makeLabel(String label) {
Label label1 = new Label(label,Label.RIGHT);
label1.setFont(new Font("Courier",Font.BOLD,10));
return label1;
public void start() {
appletWidth = 8*4+row1.getSize().width;
appletHeight = 8*(2+courBackB.getSize().height);
public void paint(Graphics g) {
setSize(appletWidth,appletHeight);
validate();
public void actionPerformed(ActionEvent e) {
String s = (String)e.getActionCommand();
private Button makeButton(String label, Color color, Font font) {
Button b = new Button(label);
b.setBackground(color);
b.setFont(font);
return b;
private Panel makePanel(LayoutManager lm, Color c) {
Panel p = new Panel();
p.setLayout(lm);
p.setBackground(c);
return p;
private void makeButtons() {
Font f = new Font("Courier", Font.BOLD, 10);
Color grey = new Color(255,100,100);
clearB = makeButton("CLEAR",grey,f);
studB = makeButton(" STUDENTS ",grey,f);
studForB = makeButton("->",grey,f);
studFindB = makeButton("FIND",grey,f);
courFindB = makeButton("FIND",grey,f);
studBackB = makeButton("<-",grey,f);
courB = makeButton(" COURSES ",grey,f);
courBackB = makeButton("<-",grey,f);
courForB = makeButton("->",grey,f);
TextField addressTF = new TextField("ADDRESS", 10);
static final String initialString = " ";
String Filler = " ";
Panel row1, row2, row3, p1;
int appletWidth, appletHeight;
Button clearB, studForB, studFindB, courFindB,
studBackB,courB, courBackB, studB, courForB;
Color backgroundColor;
thanks in advance for anything someone can do for me

I haven't tried your code, but since you use a layout manager, you shouldnt need to think about setting the size for the applet.
And I think when you call the method makePanel the last 4 times, you want to use the returned panel to add your components on. Right now you add everything directly to the panel and never use the panels you create.
And you also reuse some of your components more than once (like e.g. courBackB). You need to create a new button everytime, otherwise if you try to add the same button twice, the second one will not be displayed.
Try to add the components one by one and check it is displayed before you add the next one.
If you want to check what components and their sizes etc, you have on your applet, here is a little trick. Get the focus on your applet and press ctrl+shift+F1. If you run the applet in a browser, you will get something in the java console that displays all your GUI components and a description of them. So
It might help you.
Also take a look of the Java Tutorial for the AWT. You can download it from
     http://java.sun.com/docs/books/tutorial/information/download.html
called tut-OLDui.zip.

Similar Messages

  • Urgent advice needed on textfields...please!!

    I have been trying for days to add labels and textFields to my applet and can only manage to display one.
    My assignment instructions suggest I use makeTextField method and call the setEditable method from the makeTextField method to avoid repetition of code.
    The following is my code...I must have this done in the next couple of days so if someone could please please give me some assistance it would be really appreciated....also, thoughts on my layout would be great as well...i cant seem to set up my buttons in the correct order.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    public class Registry4b extends Applet implements ActionListener {
    public void init() {
    backgroundColor = new Color(200,255,255);
    this.setLayout(new FlowLayout(FlowLayout.CENTER,4,1));
    makeButtons();
    row1 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row1.add(clearB);
    row1.add(studFindB);
    row1.add(studForB);
    row1.add(courB);
    row2 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row2.add(studBackB);
    row2.add(courFindB);
    row2.add(courForB);
    row2.add(studB);
    row3 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row3.add(courBackB);
    add(row1);
    add(row2);
    add(row3);
    Panel p = new Panel(new BorderLayout());
    Label studID = new Label("STUDENT ID");
    TextField entry = new TextField(" ");
    p.add(studID,BorderLayout.WEST);
    p.add(entry,BorderLayout.CENTER);
    Label firstTF = new Label("FIRST NAME");
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",courBackB);
    add("East",studB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",p);
    add("South",courForB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",courFindB);
    add("South",studBackB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",p);
    add("East",studForB);
    setBackground(backgroundColor);
    clearB.addActionListener(this);
    courBackB.addActionListener(this);
    studB.addActionListener(this);
    courForB.addActionListener(this);
    courFindB.addActionListener(this);
    studBackB.addActionListener(this);
    courB.addActionListener(this);
    studForB.addActionListener(this);
    studFindB.addActionListener(this);
    private Label makeLabel(String label) {
    Label label1 = new Label(label,Label.RIGHT);
    label1.setFont(new Font("Courier",Font.BOLD,10));
    return label1;
    public void start() {
    appletWidth = 8*4+row1.getSize().width;
    appletHeight = 8*(2+courBackB.getSize().height);
    public void paint(Graphics g) {
    setSize(appletWidth,appletHeight);
    validate();
    public void actionPerformed(ActionEvent e) {
    String s = (String)e.getActionCommand();
    private Button makeButton(String label, Color color, Font font) {
    Button b = new Button(label);
    b.setBackground(color);
    b.setFont(font);
    return b;
    private Panel makePanel(LayoutManager lm, Color c) {
    Panel p = new Panel();
    p.setLayout(lm);
    p.setBackground(c);
    return p;
    private void makeButtons() {
    Font f = new Font("Courier", Font.BOLD, 10);
    Color grey = new Color(255,100,100);
    clearB = makeButton("CLEAR",grey,f);
    studB = makeButton(" STUDENTS ",grey,f);
    studForB = makeButton("->",grey,f);
    studFindB = makeButton("FIND",grey,f);
    courFindB = makeButton("FIND",grey,f);
    studBackB = makeButton("<-",grey,f);
    courB = makeButton(" COURSES ",grey,f);
    courBackB = makeButton("<-",grey,f);
    courForB = makeButton("->",grey,f);
    TextField addressTF = new TextField("ADDRESS", 10);
    static final String initialString = " ";
    String Filler = " ";
    Panel row1, row2, row3, p1;
    int appletWidth, appletHeight;
    Button clearB, studForB, studFindB, courFindB,
    studBackB,courB, courBackB, studB, courForB;
    Color backgroundColor;
    thanks in advance for anything someone can do for me

    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",courBackB);
    add("East",studB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",p);
    add("South",courForB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",courFindB);
    add("South",studBackB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",p);
    add("East",studForB);
    Those methods make Panels and return them... you are not assigning them any where and they are being lost. And then you directly adding everything to the applet.
    Panel panel = makePanel(new BorderLayout(2,2),backgroundColor);
    panel.add( .....
    Have fun

  • Itunes problem. Urgent assistance needed please!!

    Hello:
    Yesterday I updated my itunes version and installed the new 7.0.2 version but every time that I open the itunes, my computer get restarted. Please let me know what I have to do to resolve my problem.
    Thank you very much.

    Yesterday I updated my itunes version and installed the new 7.0.2 version but every time that I open the itunes, my computer get restarted.
    are you getting any sort of blue screen? if so, what numerical and text codes are you getting with it? (ie 0x[zeros/letters/numbers] CAPSANDUNDERSCORES)
    if the blue screen mentions a specific file, let us know what that is called too. (exact spelling, please.)
    here's a reference on the sorts of things i'm asking about:
    Troubleshooting Windows Stop Messages
    if you're not seeing a blue screen (or just a flash of one), we can use this technique to make hidden blue screens appear for us:
    1) Open your system control panel (Start->Control Panels->System).
    2) Select the "Advanced" tab.
    3) Click the "Startup and Recover" section's "Settings" button
    4) Verify that under "System Failure" the "Automatically restart" checkbox is not checked.

  • Can't get ATV working with Onkyo TX-SR605-URGENT ASSISTANCE NEEDED!!

    I'm hoping someone will be able to give me some advice, as I've now spent way too much time trying to figure out what's going wrong. I've just purchased the Onkyo receiver, which in itself is an extremely daunting piece of equipment after my very straightforward Rotel stereo amp!
    I have only 1 HDMI connection available on my 32" Panasonic LCD TV & have, to date, had my ATV connected to it. With my ATV also connected to my amp (via RCA cable), I've been happily viewing/listening to all my iTunes content this way. I understand from reading elsewhere in this forum that I should be able to maintain my HDMI connection to ATV, connect into the receiver using optical, and by so doing, obtain the same results (if not better, thanks to the optical connection) as was previously the case. So far, I've been unable to do this. The only way I've been able to get any audio happening through the speakers is by reconnecting the RCA cable. The optical cable I purchased by the way is a good quality one so I doubt this is where the problem lies - although I guess it's possible.
    The 1st problem I encountered when endeavouring to set the system up was that I was unable to get any onscreen information, as I couldn't find an AV input that responded to the receiver's 'setup instructions'. I assumed this would come via the TV's HDMI AV option, given the ATV is the means of connecting to the TV & that's connected via HDMI, but no joy. However, I did some of the basic setup w/o the onscreen visuals, and proceeded to see if I could access my iTunes content with the connections I referred to earlier. As I said before ... no go w/o the RCA cable connected and even then, no sound through the speakers if I reverted to just watching the TV.
    I'm driving myself crazy here, and am now at the point where I can see no value in continuing to read & re-read the Onkyo manual. Although I can accept that it's likely to take me some time to learn how to properly drive this beast and get the most out of it, I don't think (from what I've read elsewhere here) that it should be this hard to get what I'm wanting up and running.
    Please HELP and save my sanity!
    [Thanks in advance to anyone who comes to the rescue ]

    jrmccoy, thank you so much! I have never used an optical connection until now, & so was not aware of the necessity to get the 'snap' happening in order to get a good connection. With some trepidation, I applied the required force to the connection to the ATV - sure enough, it 'snapped' in. I tried to get the receiver connection to snap as well, but had no luck there - it seems to be a very 'sloppy' rather than tight connection that slips out with very little effort. However, after pushing really hard on the cable & getting no better connection, I gave up & tried it as was. The result was that , yipee, I now have it all working as I'd anticipated it should. The only thing I still don't have, is the TV sound coming through the speakers - I thought that with the ATV providing the conduit between the TV & the receiver, I wouldn't need any other connection from the receiver to the TV. I suspect now that that was an incorrect assumption! Thought it was all a bit too easy ... sigh.
    Once again Apple Discussions have come to my rescue - I honestly don't know what I'd do without the assistance of all you generous people out there with so much & such wide-ranging knowledge!

  • Spectre XT - screen frame broken ! urgent assistance needed

    I have exactely the same issue with my Spectre XT as some one else already posted before: The left hinge has become so stiff that it is starting to break the screen frame and lid apart unless I am ultra careful to pinch the front and back sides together while opening or closing the lid with my other hand. I'm based in Paris France and would like to have assistance from HP ASAP.  Many Thanks!

      Hi , Please use the following link to create yourself a case number, then call and it may help speed up the call process:
    Step 1. Open link: www.hp.com/contacthp/
    Step 2. Enter Product number or select to auto detect
    Step 3. Scroll down to "Still need help? Complete the form to select your contact options"
    Step 4. Scroll down and click on: HP contact options - click on Get phone number
    Case number and phone number appear.
    They will be happy to assist you immediately. Thanks.

  • Urgent Assistance needed on this

    Hi, I am fairly new to Java and this assignment is way over my knowledge, if anyone able to assist me on the whole coding, that would be great. Thanks all.
    I am thinking on using array and the file heading on hardware.dat can be omitted.
    Task-
    Imagine that you are an owner of a hardware store and need to keep an inventory that can tell you what different kind of tools you have how many of each you have on hand and cost of each one.
    Now do the following:
    (1) Write a program (Tool.java) that,
    (1.1) Initializes (and creates) a file ?hardware.dat?
    (1.2) lets you input that data concerning each tool, i.e. the program must ask the user for input and each of the user input is written back in the file.
    The file must have the following format:
    Record# Tool Name Qty Cost per item (A$)
    1 Electric Sander 18 35.99
    2 Hammer 128 10.00
    3 Jigsaw 16 14.25
    4 Lawn mower 10 79.50
    5 Power saw 8 89.99
    6 Screwdriver 236 4.99
    7 Sledgehammer 32 19.75
    8 Wrench 65 6.48
    (1.3) Exception handling that must be taken into account-
    (1.3.1) User must not input incorrect data
    (1.3.2) Cost of the item must be a number
    (2) Write another program (ListToolDetails.java) that,
    (2.1) lets you list all the tools, i.e. it will read the data from ?hardware.dat? in a proper manner (you can choose the display format), File name should not be hard coded.
    (2.2) lets you delete a record for a tool, as an example- you can delete all the details pertaining to the tool ? Wrench. Once you delete the information, records must be updated in the ?dat? file.
    (2.3) List the total price(rounded to two decimal places) of each tool, as an example, the total price of all the Hammers is A$128 * 10 = A$1280.00
    (2.4) Exception handling that must be taken into account-
    (2.3.1) In case user inputs an incorrect file name
    (2.3.2) In case user inputs incorrect Tool name (when the user wants to delete something)
    Bonus Task
    This task deals with the inclusion of Javadoc comments and generation of documentation pages.
    Task-
    Your task is to add meaningful javadoc comments in all the programs and generate HTML documentation pages.

    Hi, I am fairly new to Java and this assignment is
    way over my knowledge, if anyone able to assist me on
    the whole coding, that would be great. Thanks all.
    I am thinking on using array and the file heading on
    hardware.dat can be omitted.
    Task-
    Imagine that you are an owner of a hardware store and
    need to keep an inventory that can tell you what
    different kind of tools you have how many of each you
    have on hand and cost of each one.
    Now do the following:
    (1) Write a program (Tool.java) that,
    (1.1) Initializes (and creates) a file
    ?hardware.dat?
    (1.2) lets you input that data concerning each tool,
    i.e. the program must ask the user for input and each
    of the user input is written back in the file.
    The file must have the following format:
    Record# Tool Name Qty Cost per item (A$)
    1 Electric Sander 18 35.99
    2 Hammer 128 10.00
    3 Jigsaw 16 14.25
    4 Lawn mower 10 79.50
    5 Power saw 8 89.99
    6 Screwdriver 236 4.99
    7 Sledgehammer 32 19.75
    8 Wrench 65 6.48
    (1.3) Exception handling that must be taken into
    account-
    (1.3.1) User must not input incorrect data
    (1.3.2) Cost of the item must be a number
    (2) Write another program (ListToolDetails.java)
    that,
    (2.1) lets you list all the tools, i.e. it will read
    the data from ?hardware.dat? in a proper manner (you
    can choose the display format), File name should not
    be hard coded.
    (2.2) lets you delete a record for a tool, as an
    example- you can delete all the details pertaining to
    the tool ? Wrench. Once you delete the information,
    records must be updated in the ?dat? file.
    (2.3) List the total price(rounded to two decimal
    places) of each tool, as an example, the total price
    of all the Hammers is A$128 * 10 = A$1280.00
    (2.4) Exception handling that must be taken into
    account-
    (2.3.1) In case user inputs an incorrect file name
    (2.3.2) In case user inputs incorrect Tool name (when
    the user wants to delete something)
    Bonus Task
    This task deals with the inclusion of Javadoc
    comments and generation of documentation pages.
    Task-
    Your task is to add meaningful javadoc comments in
    all the programs and generate HTML documentation
    pages.First of all , If its your assignment you are ment to do it your self !!
    if u have a problem understanding stuff ask your tutor or prof.
    they are paid to teach u this stuff....
    second : break the problem in to small task as suggested before, it will help u understand the stuff better
    Last thing : No one here is gona do your home work for u
    so better start doing some research and if u have an implementation or a logic problem then post them here, sure people will help.
    now from what i read i think u need to start looking up on
    1) get data from the user : u need some thing like bufferedreader
    2) validate the input : check with the upper and lower bounds
    3) File handing : research on how to write to a file there are a milion pages there on the web teaching you this stuff

  • Urgent Assistance Needed

    Hi there fellows, 
    I am having a problem formatting this HP G62, well first issues is the heat exhaust, it very hot, however I manage that but  the real issue is the I cannot go ahead and complete to format this laptop, every time it says " A problem has been detected and windows has been shutdown to prevent damage to your computer".  I thought it was due to its heat exhaust, but it couldn't be since I directly faced it to an electric fan, aircon so it wont get hot. I tried logging in to its normal  windows 7 log in, but I couldn't since the format process has been halfway and all the data on the HD has been deleted, 
    I'll greatly appreciate all of your efforts in solving this concern of mine. 
    pls email me back ASAP.
    Thanks, 
    Rob Philipps

    Hi Rob,
    Please post the HP product number for your laptop so that the members of the community can better assist you with your questions and issues.
    Performing a hard reset as that can sometimes restore the system fan to working order. See Use Hard Reset to Resolve Hardware and Software Issues for details.  This posted article is an excellent source of information for dealing with heat issues.
    Now try the HP recovery disks or USB recovery flash.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • URGENT Help needed in XML Publisher Please...Business critical

    Hi
    I am having 2 different types of invoices like
    1.Normal Invoice
    2.Bundled Invoice
    Both cases will have different bodies BUT SAME summaries.
    So based on the Formula column FLAG (BUNDLED=YES or NO) I would like to
    choose a different body like G_NORMAL INVOICE_BODY Or G_BUNDLED_INVOICE_BODY.
    The summary for both of them are the same.
    Case 1: Normal Invoice Group
    <G_INV_TERM>
    <G_INVOICE>
    <G_LINES>
    invoice line details
    --------Line1
    ------- LIne2
    ------- LIne3
    </G_LINES>
    <G_SUMMARY>
    </G_SUMMARY>
    </G_INVOICE>
    </G_INV_TERM>
    Case 2: Bundled Invoice Group
    <G_INV_TERM>
    <G_INVOICE>
    <G_BUNDLE>
    ---Bundled Invoice Line
    </G_BUNDLE>
    <G_SUMMARY></G_SUMMARY>
    </G_INVOICE>
    </G_INV_TERM>
    Based on a condition.Like if BUNDLE=N then do the following:
    For Normal Invoice
    with <G_INV_TERM> --HEADER
    and then invoice lines group <G_LINES> for normal invoice.---BODY
    and then FOOTER Summary--<G_SUMMARY>
    Based on a condition.Like if BUNDLE=Y then do the following:
    with <G_INV_TERM> --HEADER
    and then invoice lines group <G_BUNDLE> for normal invoice.---BODY
    and then FOOTER Summary--<G_SUMMARY>
    In one single template How can I handle Different GROUPS based on a condition.?
    Thanks
    Prasanna

    Is this Sample XML ?
    <G_INV_TERM>
    <BUNDLED>Y</BUNDLED>
    <G_INVOICE>
    <G_LINES>
    <LINE>1 </LINE>
    <LINE>2 </LINE>
    <LINE>3 </LINE>
    <LINE>4 </LINE>
    <LINE>5 </LINE>
    <LINE>6 </LINE>
    <LINE>7 </LINE>
    </G_LINES>
    <G_BUNDLE>
    <BUNDLE>A</BUNDLE>
    <BUNDLE>B</BUNDLE>
    <BUNDLE>C</BUNDLE>
    <BUNDLE>D</BUNDLE>
    <BUNDLE>E</BUNDLE>
    </G_BUNDLE>
    <G_SUMMARY>
    Summary For all
    </G_SUMMARY>
    </G_INVOICE>
    </G_INV_TERM>

  • Urgently help needs on query performance please

    HI,
    Eache iteration taking four seconds while execution...
    What could be the reason for this????
    FOR tem_rec IN temp LOOP
                   UPDATE t_routing_operations_api SET routing= tem_rec.sub_routing
         WHERE routing_id=latest_routing_id and routing_id != 3 and routing = tem_rec.routing ;
         UPDATE t_next_operations_api SET routing = tem_rec.sub_routing
         WHERE routing_id=latest_routing_id and routing_id != 3 and routing = tem_rec.routing;
         --COMMIT;
    END LOOP;
    regards,
    Khaleel.

    Hi there, thank you all for showing the interest in solving my problem....
    here I am going bit more clear about my question...
    My compete procedure is....
    CREATE OR REPLACE
    procedure rand_route_gen1 is
         CURSOR get_routing_id IS SELECT * FROM t_routings_api WHERE routing_id=3;
         CURSOR temp IS SELECT * FROM c_rname_tem;
         CURSOR get_operation_id(v_routing_id number) IS SELECT *
                   FROM t_routing_operations_api WHERE routing_id=v_routing_id;
         CURSOR get_next_oper(v_operation_id number) IS SELECT * FROM t_next_operations_api
              WHERE operation_id=v_operation_id;
    random_no           INTEGER:=0;
    rt_id                INTEGER:=0;
    latest_routing_id      INTEGER:=0;
    BEGIN
    DELETE FROM c_rname_tem;
    --COMMIT;
    INSERT INTO c_Rname_tem SELECT distinct routing,null FROM t_routing_operations_api;
    --COMMIT;
    FOR routing_rec IN get_routing_id LOOP
    FOR c in 2..10 LOOP
         FOR tem_rec IN temp LOOP
    random_no:=dbms_random.value(1,3);
    UPDATE c_rname_tem SET sub_routing='T'||random_no WHERE routing LIKE tem_rec.routing;
         END LOOP;
         INSERT INTO T_ROUTINGS_API values ('R'||rout_id.nextval,'1000',null,null,'R',rout_id.nextval,null,1,null,'Test Routing'
         ,null,null,null,null,1,null,'N',null,null,'XL Sheet',null,null,null,null,null,null);
         --COMMIT;
         SELECT max(operation_id) INTO rt_id FROM t_routing_operations_api;
         rt_id:=rt_id+1;
         FOR Operation_Rec IN get_operation_id(routing_rec.routing_id) LOOP
              IF operation_rec.routing is not null THEN
    insert into T_ROUTING_OPERATIONS_API values (rout_id.currval,/*'T'||i,*/operation_rec.routing,null,
    null,rt_id,null,null,null,90,null,null,operation_rec.primary_flag,Operation_Rec.operation_rank,null,null,null,null,null,
    null,null,null,10,null,null,null,null);
    ELSE
    insert into T_ROUTING_OPERATIONS_API values (rout_id.currval,null,Operation_Rec.operation,null,rt_id,
              null,null,null,90,null,null,operation_rec.primary_flag,Operation_Rec.operation_rank,null,null,null,null,null,null,null,
              null,10,null,null,null,null);
    END IF;
    --commit;
         For next_oper_rec in get_next_oper(operation_rec.operation_id) loop
    BEGIN
    IF next_oper_rec.routing is not null THEN
    insert into T_NEXT_OPERATIONS_API values ( rt_id,rout_id.currval,null,null,null,null,
    next_oper_rec.operation_rank,null,null,null,null,
    /*'T'||i*/
    next_oper_rec.routing );
    ELSE
    insert into T_NEXT_OPERATIONS_API values ( rt_id,rout_id.currval,next_oper_rec.operation,null,
    null,null,next_oper_rec.operation_rank,null,null,null,null,null);
    --COMMIT;
    END IF;
    EXCEPTION
    when no_data_found then null;
    END;
    END LOOP;
         rt_id:=rt_id+1;
         --COMMIT;
         SELECT max(routing_id) INTO latest_routing_id FROM t_routings_api;
    DBMS_OUTPUT.PUT_LINE(' UPDATE STARTED AT::'||TO_CHAR(SYSDATE,'SSSSS'));
         /*THIS BLOCK TAKING TOO MUCH TIME*/
    FOR tem_rec IN temp LOOP
                   UPDATE t_routing_operations_api SET routing= tem_rec.sub_routing
         WHERE routing_id=latest_routing_id and routing_id != 3 and routing = tem_rec.routing ;
         UPDATE t_next_operations_api SET routing = tem_rec.sub_routing
         WHERE routing_id=latest_routing_id and routing_id != 3 and routing = tem_rec.routing;
         -- COMMIT;
    END LOOP;
              --COMMIT;               
    END LOOP;
    --COMMIT;
    END LOOP;
    END LOOP;
    COMMIT;
    END;
    For in that abouve probedure THE SHOWN BLOCK TAKING AROUND 4 SECONDS FOR EACH ITERATION.
    IN THE MAIN TABLES THERE ARE VERY LESS RECORDS, AROUND 15 ROWS. SO FOR ONE MAIN ITERATION ITS TAKING ONE MUNITE THERE ITSELF. SO TO COMPLETE ALL THIS PROCEDURE ITS TAKING AROUND 9 MUNITES...
    I HAVE VERY VERY LESS DATA IN THE TABLES.
    SO I HOPE IT GIVE YOU CLEAR IDEA FOR YOU. AWITING FOR YOUR REPLIES.....
    REGARDS,
    KHALEEL.

  • Urgent Assistance needed - Problems on entourage mail migration from

    I was migrating all my Entourage (office for Mac 04) e-mails from my Powerbook G4 to my new MacBook (with office for Mac 08). I see now that I lost all my e-mails (more than 40.000) and I canf found nothing on the HD of the Powerbook G4. I have also lost my backups before so I m in critical position. Somebody can help and give me hints to recover the HD or my emails? Many Thanks L.

    Unless you trashed the files, I would think they are still on your Powerbook. If I remember correctly, those files live in a Microsoft folder within the Users folder. You can do a search thru Spotlight.

  • General Database failure - Urgent assistance needed

    I've have the following error report:
    ------------------- Error Report -------------------
    Error report created 1/1/2014 10:15:52 PM
    CLR is not terminating
    --------------- Bucketing Parameters ---------------
    EventType=VMM20
    P1(appName)=vmmservice.exe
    P2(appVersion)=3.2.7510.0
    P3(assemblyName)=Utils.dll
    P4(assemblyVer)=3.2.7510.0
    P5(methodName)=Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery
    P6(exceptionType)=Microsoft.VirtualManager.DB.CarmineSqlException
    P7(callstackHash)=e796
    SCVMM Version=3.2.7510.0
    SCVMM flavor=C-buddy-RTL-AMD64
    Default Assembly Version=3.2.7510.0
    Executable Name=vmmservice.exe
    Executable Version=3.2.7510.0
    Base Exception Target Site=140710978931416
    Base Exception Assembly name=System.Data.dll
    Base Exception Method Name=System.Data.SqlClient.SqlConnection.OnError
    Exception Message=Unable to connect to the VMM database because of a general database failure.
    Ensure that the SQL Server is running and configured correctly, then try the operation again.
    EIP=0x00007ff9e45bab78
    Build bit-size=64
    ------------ exceptionObject.ToString() ------------
    Microsoft.VirtualManager.DB.CarmineSqlException: Unable to connect to the VMM database because of a general database failure.
    Ensure that the SQL Server is running and configured correctly, then try the operation again. ---> System.Data.SqlClient.SqlException: The INSERT statement conflicted with the FOREIGN KEY constraint "fk__ADHC_HostDisk__ADHC_ClusterDisk". The conflict
    occurred
    The statement has been terminated.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
       --- End of inner exception stack trace ---
       at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.Adhc.HostDisk.InsertIntoDB(HostDiskData data, SqlContext ctx)
       at Microsoft.VirtualManager.DB.Adhc.HostDisk.CreateInstance(HostDiskData data, SqlContext ctx, Guid taskID)
       at Microsoft.VirtualManager.DB.Adhc.Host.CreateHostDisk(HostDiskData data, SqlContext ctx, Guid taskID)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.<>c__DisplayClassb.<UpdateDiskAndVolumeInfo>b__6(HostDiskData d, SqlContext ctx)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDbObjects[TObj,TObjData](List`1 existing, List`1 fresh, ObjectDataComparer`2 isEqual, NewObjectCreator`2 createNew, SqlContext ctx, Guid taskID, Boolean deleteNonExisting, Boolean
    ignoreDeleteErrors, List`1 skipExistingOnDelete)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDiskAndVolumeInfo(Host host, List`1 existingDisks, List`1 refreshedDisks, List`1 existingVolumes, List`1 refreshedVolumes, Dictionary`2 volumeToDiskMap, CarmineObjectType serverType,
    Guid serverId, Nullable`1 hostGroupId, Guid taskID, SqlContext context, Boolean deleteNonExisting, ITaskContext taskContext)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDatabase()
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.UpdateAllInformation(Host host, HostUpdateInformation hostUpdateInfo, ITaskContext taskContext)
       at Microsoft.VirtualManager.Engine.Adhc.HostClusterRefresher.UpdateDb(HostClusterProperties refresher, HostCluster cluster, List`1 hosts, Dictionary`2 lockedHosts, ClusterUpdateInformation clusterInfo, List`1 hostInfos, Guid taskID, ITaskContext
    taskContext)
       at Microsoft.VirtualManager.Engine.Adhc.HostClusterRefresher.RefreshLockedCluster(HostCluster cluster, List`1 hosts, ITaskContext taskContext, Guid subtaskID, Guid taskId, Int32 recursionNesting)
       at Microsoft.VirtualManager.Engine.Adhc.HostClusterRefresher.RefreshLockedCluster(HostCluster cluster, List`1 hosts, ITaskContext taskContext, Guid subtaskID, Guid taskId, Int32 recursionNesting)
       at Microsoft.VirtualManager.Engine.Adhc.RefreshHostClusterSubtask.RunSubtask()
       at Microsoft.VirtualManager.Engine.TaskRepository.SubtaskBase.Run()
       at Microsoft.VirtualManager.Engine.TaskRepository.Task`1.SubtaskRun(Object state)
    *** Carmine error was: DatabaseFailure (2605); SQLServer; 547
    [s#10003db] ExecuteNonQuery()
    [s#fff15e] Task`1.SubtaskRun(this: (Task`1#12), TaskID: (guid) a1c63c5c-1527-4729-8012-6559a196b7a7)
    Full call stack from when the exception was thrown:   at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
       at System.Environment.get_StackTrace()
       at Microsoft.VirtualManager.DB.CarmineSqlException..ctor(SqlException sqlException)
       at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.Adhc.HostDisk.InsertIntoDB(HostDiskData data, SqlContext ctx)
       at Microsoft.VirtualManager.DB.Adhc.HostDisk.CreateInstance(HostDiskData data, SqlContext ctx, Guid taskID)
       at Microsoft.VirtualManager.DB.Adhc.Host.CreateHostDisk(HostDiskData data, SqlContext ctx, Guid taskID)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.<>c__DisplayClassb.<UpdateDiskAndVolumeInfo>b__6(HostDiskData d, SqlContext ctx)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDbObjects[TObj,TObjData](List`1 existing, List`1 fresh, ObjectDataComparer`2 isEqual, NewObjectCreator`2 createNew, SqlContext ctx, Guid taskID, Boolean deleteNonExisting, Boolean
    ignoreDeleteErrors, List`1 skipExistingOnDelete)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDiskAndVolumeInfo(Host host, List`1 existingDisks, List`1 refreshedDisks, List`1 existingVolumes, List`1 refreshedVolumes, Dictionary`2 volumeToDiskMap, CarmineObjectType serverType,
    Guid serverId, Nullable`1 hostGroupId, Guid taskID, SqlContext context, Boolean deleteNonExisting, ITaskContext taskContext)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDatabase()
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.UpdateAllInformation(Host host, HostUpdateInformation hostUpdateInfo, ITaskContext taskContext)
       at Microsoft.VirtualManager.Engine.Adhc.HostClusterRefresher.UpdateDb(HostClusterProperties refresher, HostCluster cluster, List`1 hosts, Dictionary`2 lockedHosts, ClusterUpdateInformation clusterInfo, List`1 hostInfos, Guid taskID, ITaskContext
    taskContext)
       at Microsoft.VirtualManager.Engine.Adhc.HostClusterRefresher.RefreshLockedCluster(HostCluster cluster, List`1 hosts, ITaskContext taskContext, Guid subtaskID, Guid taskId, Int32 recursionNesting)
       at Microsoft.VirtualManager.Engine.Adhc.HostClusterRefresher.RefreshLockedCluster(HostCluster cluster, List`1 hosts, ITaskContext taskContext, Guid subtaskID, Guid taskId, Int32 recursionNesting)
       at Microsoft.VirtualManager.Engine.Adhc.RefreshHostClusterSubtask.RunSubtask()
       at Microsoft.VirtualManager.Engine.TaskRepository.SubtaskBase.Run()
       at Microsoft.VirtualManager.Engine.TaskRepository.Task`1.SubtaskRun(Object state)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
       at System.Threading.ThreadPoolWorkQueue.Dispatch()
    --- SqlException details -----------------
    System.Data.SqlClient.SqlException (0x80131904): The INSERT statement conflicted with the FOREIGN KEY constraint "fk__ADHC_HostDisk__ADHC_ClusterDisk". The conflict occurred
    The statement has been terminated.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
    ClientConnectionId:0fca7b02-93ca-4a31-b609-0b6244178b6a
     Error = 547
    Index #0
    Source: .Net SqlClient Data Provider
    Number: 547
    State: 0
    Class: 16
    Server: VMM-SRV
    Message: The INSERT statement conflicted with the FOREIGN KEY constraint "fk__ADHC_HostDisk__ADHC_ClusterDisk". The conflict occurred
    Procedure: prc_ADHC_HostDisk_Insert
    Line: 39
    Index #1
    Source: .Net SqlClient Data Provider
    Number: 3621
    State: 0
    Class: 0
    Server: VMM-SRV
    Message: The statement has been terminated.
    Procedure: prc_ADHC_HostDisk_Insert
    Line: 39
    --- Caller StackTrace -----------------
    FileName:; Method:ExecuteNonQuery(); lineNo:0; ilOffset:178.
    FileName:; Method:InsertIntoDB(); lineNo:0; ilOffset:740.
    FileName:; Method:CreateInstance(); lineNo:0; ilOffset:23.
    FileName:; Method:CreateHostDisk(); lineNo:0; ilOffset:19.
    FileName:; Method:<UpdateDiskAndVolumeInfo>b__6(); lineNo:0; ilOffset:50.
    FileName:; Method:UpdateDbObjects(); lineNo:0; ilOffset:374.
    FileName:; Method:UpdateDiskAndVolumeInfo(); lineNo:0; ilOffset:769.
    FileName:; Method:UpdateDatabase(); lineNo:0; ilOffset:728.
    FileName:; Method:UpdateAllInformation(); lineNo:0; ilOffset:108.
    FileName:; Method:UpdateDb(); lineNo:0; ilOffset:539.
    FileName:; Method:RefreshLockedCluster(); lineNo:0; ilOffset:419.
    FileName:; Method:RefreshLockedCluster(); lineNo:0; ilOffset:440.
    FileName:; Method:RunSubtask(); lineNo:0; ilOffset:400.
    FileName:; Method:Run(); lineNo:0; ilOffset:354.
    FileName:; Method:SubtaskRun(); lineNo:0; ilOffset:221.
    FileName:; Method:RunInternal(); lineNo:0; ilOffset:112.
    FileName:; Method:Run(); lineNo:0; ilOffset:4.
    FileName:; Method:System.Threading.IThreadPoolWorkItem.ExecuteWorkItem(); lineNo:0; ilOffset:0.
    FileName:; Method:Dispatch(); lineNo:0; ilOffset:162.
    -------- exception.InnerException.ToString() -------
    System.Data.SqlClient.SqlException (0x80131904): The INSERT statement conflicted with the FOREIGN KEY constraint "fk__ADHC_HostDisk__ADHC_ClusterDisk". The conflict occurred
    The statement has been terminated.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
    ClientConnectionId:0fca7b02-93ca-4a31-b609-0b6244178b6a
    --------------- exception.StackTrace ---------------
    at Microsoft.VirtualManager.DB.SqlRetryCommand.ExecuteNonQuery()
       at Microsoft.VirtualManager.DB.Adhc.HostDisk.InsertIntoDB(HostDiskData data, SqlContext ctx)
       at Microsoft.VirtualManager.DB.Adhc.HostDisk.CreateInstance(HostDiskData data, SqlContext ctx, Guid taskID)
       at Microsoft.VirtualManager.DB.Adhc.Host.CreateHostDisk(HostDiskData data, SqlContext ctx, Guid taskID)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.<>c__DisplayClassb.<UpdateDiskAndVolumeInfo>b__6(HostDiskData d, SqlContext ctx)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDbObjects[TObj,TObjData](List`1 existing, List`1 fresh, ObjectDataComparer`2 isEqual, NewObjectCreator`2 createNew, SqlContext ctx, Guid taskID, Boolean deleteNonExisting, Boolean
    ignoreDeleteErrors, List`1 skipExistingOnDelete)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDiskAndVolumeInfo(Host host, List`1 existingDisks, List`1 refreshedDisks, List`1 existingVolumes, List`1 refreshedVolumes, Dictionary`2 volumeToDiskMap, CarmineObjectType serverType,
    Guid serverId, Nullable`1 hostGroupId, Guid taskID, SqlContext context, Boolean deleteNonExisting, ITaskContext taskContext)
       at Microsoft.VirtualManager.Engine.Adhc.HostDatabaseUpdater.UpdateDatabase()
       at Microsoft.VirtualManager.Engine.Adhc.HostRefresher.UpdateAllInformation(Host host, HostUpdateInformation hostUpdateInfo, ITaskContext taskContext)
       at Microsoft.VirtualManager.Engine.Adhc.HostClusterRefresher.UpdateDb(HostClusterProperties refresher, HostCluster cluster, List`1 hosts, Dictionary`2 lockedHosts, ClusterUpdateInformation clusterInfo, List`1 hostInfos, Guid taskID, ITaskContext
    taskContext)
       at Microsoft.VirtualManager.Engine.Adhc.HostClusterRefresher.RefreshLockedCluster(HostCluster cluster, List`1 hosts, ITaskContext taskContext, Guid subtaskID, Guid taskId, Int32 recursionNesting)
       at Microsoft.VirtualManager.Engine.Adhc.HostClusterRefresher.RefreshLockedCluster(HostCluster cluster, List`1 hosts, ITaskContext taskContext, Guid subtaskID, Guid taskId, Int32 recursionNesting)
       at Microsoft.VirtualManager.Engine.Adhc.RefreshHostClusterSubtask.RunSubtask()
       at Microsoft.VirtualManager.Engine.TaskRepository.SubtaskBase.Run()
       at Microsoft.VirtualManager.Engine.TaskRepository.Task`1.SubtaskRun(Object state)
    ------------- StackTrace from handler --------------
    This is the call stack from where the exception was caught, not where it was thrown.
    at Microsoft.VirtualManager.Utils.Diagnostics.WatsonReport.WriteReportTextFile(TextWriter reportFile)
       at Microsoft.VirtualManager.Utils.Diagnostics.WatsonReport.Send()
       at Microsoft.VirtualManager.Utils.Diagnostics.WatsonExceptionReport.Send()
       at Microsoft.VirtualManager.Utils.Diagnostics.WatsonCenter.ReportException(Exception e, WERReportOptions options, String& localReportPath)
       at Microsoft.VirtualManager.Engine.TaskRepository.Task`1.SubtaskRun(Object state)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
       at System.Threading.ThreadPoolWorkQueue.Dispatch()
    -------------------- Assemblies --------------------
    mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
        Module=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
        Version=4.0.30319.34003
        BuildType=retail
        Product=Microsoft® .NET Framework
    VMMService, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\vmmservice.exe
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\vmmservice.exe
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    System.ServiceProcess, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceProcess\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll
        Version=4.0.30319.34003
        BuildType=retail
        Product=Microsoft® .NET Framework
    TraceWrapper, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\TraceWrapper.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\TraceWrapper.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Utils, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Utils.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Utils.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    NativeMethods, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NativeMethods.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NativeMethods.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Common, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Common.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Common.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.IndigoAccessLayer, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.IndigoAccessLayer.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.IndigoAccessLayer.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    Skuhelper, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Skuhelper.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Skuhelper.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Errors, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Errors.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Errors.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Remoting, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Remoting.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Remoting.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
        Version=4.0.30319.33440
        Product=Microsoft® .NET Framework
    System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.DirectoryServices.AccountManagement, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.AccountManagement\v4.0_4.0.0.0__b77a5c561934e089\System.DirectoryServices.AccountManagement.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices.AccountManagement\v4.0_4.0.0.0__b77a5c561934e089\System.DirectoryServices.AccountManagement.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.Adhc.Operations, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Adhc.Operations.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Adhc.Operations.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.TaskRepository, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.TaskRepository.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.TaskRepository.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    ImgLibEngine, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ImgLibEngine.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ImgLibEngine.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    VmmHelperHost, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmHelperHost.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VmmHelperHost.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    VirtualizationInterfaces, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VirtualizationInterfaces.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VirtualizationInterfaces.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    NetworkServiceInterfaces, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NetworkServiceInterfaces.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\NetworkServiceInterfaces.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    ClusterUtil, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ClusterUtil.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\ClusterUtil.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    VMWareImplementation, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VMWareImplementation.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\VMWareImplementation.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.AuthorizationManager, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManager.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManager.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.AuthorizationManagerTasks, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManagerTasks.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.AuthorizationManagerTasks.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Backup, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Backup.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Backup.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.BitBos, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.BitBos.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.BitBos.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll
        Version=6.3.9600.16394
        BuildType=retail
        Product=Microsoft (R) Windows (R) Operating System
    WsManWrappers, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WsManWrappers.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WsManWrappers.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    SqmWrapper, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\SqmWrapper.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\SqmWrapper.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Deployment, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Deployment.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Deployment.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Placement.ResourceModel, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.ResourceModel.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.ResourceModel.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.ImgLibOperation, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ImgLibOperation.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ImgLibOperation.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.CustomProperties, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomProperties.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomProperties.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.VmOperations, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.VmOperations.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.VmOperations.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.MomDal, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.MomDal.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.MomDal.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.PxeServer, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.PxeServer.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.PxeServer.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Placement, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Placement.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.P2VCommon, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.P2VCommon.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.P2VCommon.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    PatchExtractor, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\PatchExtractor.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\PatchExtractor.dll
    Engine.ConfigurationProviders, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ConfigurationProviders.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ConfigurationProviders.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    GatewayInterfaces, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GatewayInterfaces.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GatewayInterfaces.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Microsoft.Management.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Management.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Management.Infrastructure.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Management.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Management.Infrastructure.dll
        Version=6.3.9600.16384
        BuildType=retail
        Product=Microsoft (R) Windows (R) Operating System
    Microsoft.CapacityManager.Modeling.Store.ModelLibrary, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Microsoft.CapacityManager.Modeling.Store.ModelLibrary.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Microsoft.CapacityManager.Modeling.Store.ModelLibrary.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.CustomPropertyTasks, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomPropertyTasks.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CustomPropertyTasks.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.UMOperation, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.UMOperation.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.UMOperation.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Scheduler, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Scheduler.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Scheduler.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.Tasks, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Tasks.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.Tasks.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.ServiceOperations, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ServiceOperations.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.ServiceOperations.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    GoalState, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GoalState.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\GoalState.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.CloudService, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CloudService.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.CloudService.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    WSManAutomation, Version=3.2.7510.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WSManAutomation.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WSManAutomation.dll
    wmiWrappers, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WMIWrappers.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\WMIWrappers.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    System.Transactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll
        Version=4.0.30319.33440
        Product=Microsoft® .NET Framework
    System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    DB.DelegatedAdmin, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\DB.DelegatedAdmin.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\DB.DelegatedAdmin.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    DB.TieredPerfCounters, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\DB.TieredPerfCounters.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\DB.TieredPerfCounters.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    SMDiagnostics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.PhysicalMachine, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.PhysicalMachine.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.PhysicalMachine.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.DirectoryServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    System.ServiceModel.Internals, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Internals\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Internals.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Internals\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Internals.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.UpdateManagement, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.UpdateManagement.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.UpdateManagement.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    Engine.RunAs, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.RunAs.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.RunAs.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
        Location=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll
        Module=C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Management\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Management.dll
        Version=4.0.30319.33440
        BuildType=retail
        Product=Microsoft® .NET Framework
    Engine.DB.Scheduler, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
        Location=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.DB.Scheduler.dll
        Module=C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\Bin\Engine.DB.Scheduler.dll
        Version=3.2.7510.0
        BuildType=retail
        Product=System Center Virtual Machine Manager 2012 R2
    --------- Extra Data for Watson Report -------------
    Error Reporting Enabled=True
    *** Extra Data ***
    Process ID = 1992 (0x07c8)
    Managed Thread ID = 10
    Native Thread ID = 3880 (0x0f28)
    I'd aprreciate your help in resolving this asap
    P.S. It's a SCVMM 2012 R2 U1. The SQL script mentioned in the Rollup's page was also run as instructed.
    Eran.

    The key error is here: Unable to connect to the VMM database because of a general database failure.
    Ensure that the SQL Server is running and configured correctly, then try the operation again
    Have you verified SQL connectivity, database connectivity, the user account used to connect, the SCVMM computer account used to connect, etc?
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.
    Disclaimer: Attempting change is of your own free will.

  • Assistance needed on this code, please

    The code below is an example program:
    /* package demo.swing; */
    import javax.swing.JFrame;
    * Hello World application
    * @author MAbernethy
    public class HelloWorld extends JFrame
         private javax.swing.JLabel jLabel = null;
         private javax.swing.JTextField jTextField = null;
         private javax.swing.JButton jButton = null;
         public static void main(String[] args)
              HelloWorld w = new HelloWorld();
              w.setVisible(true);
         public HelloWorld()
              super();
              this.setSize(300, 200);
              this.getContentPane().setLayout(null);
              this.add(getJLabel(), null);
              this.add(getJTextField(), null);
              this.add(getJButton(), null);
              this.setTitle("Hello World");
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setBounds(34, 49, 53, 18);
                   jLabel.setText("Name:");
              return jLabel;
         private javax.swing.JTextField getJTextField() {
              if(jTextField == null) {
                   jTextField = new javax.swing.JTextField();
                   jTextField.setBounds(96, 49, 160, 20);
              return jTextField;
         private javax.swing.JButton getJButton() {
              if(jButton == null) {
                   jButton = new javax.swing.JButton();
                   jButton.setBounds(103, 110, 71, 27);
                   jButton.setText("OK");
              return jButton;
    The code compiles without any probems,but when run the following error messsages appear:
    Exception in thread "main" java.lang.Error: Donot use HelloWorld.add() use HelloWorld.getContentPane().add() instead
    at javax.swing.Jframe.creatRootPaneException(Jframe.java:465)
    at javax.swing.Jframe.addImpl(Jframe.java:491)
    at java.awt.Container.add(Container.java:518)
    at HelloWorld.<init>(HelloWorld.java:26)
    at HelloWorld.main(HelloWorld.java:17)

    Donot use HelloWorld.add() use
    HelloWorld.getContentPane().add() instead
    Isn't that obvious enough?D'oh! That was pretty obvious... ;)Yup, but my comment was directed at the OP, and I wish he reads your answer and remembers it next time. :)

  • Urgent Assistance Needed:  All Documents deleted after setting system-wide viewing preferences for Finder

    I got myself into some trouble...
    Following the guide here to force a default Folder view to sub folders:  http://apple.stackexchange.com/questions/10488/system-wide-finder-view-preferenc es
    Which is:
    There is a simpler way.
    In the Terminal, navigate to your $HOME directory: cd ~
    Remove all the .DS_Store files:find ~ -name ".DS_Store" -depth -exec rm -f {} \;
    Relaunch finder going to: Force Quit → Finder
    Set your global preferences using ⌘J and press the Use as default button.
    Now, every folder you open or create will have the new settings.
    I now have the existing Folder structure in tact for Documents, but every single file is gone (in my entire Documents directory).
    Naturally I'm thinking two things:
    1)  Oh no.  I knew better than to go down this path without knowing exactly what I was doing.
    2)  How do I "get my files back..."
    I'm not sure if they're just not viewable or if they were deleted.  Essentially everything I've configured on the machine (From Apple login to mouse scroll reversal) has been undone.  I don't have TimeMachine set up yet - I brought two remote hard drives to work today to get it done but they're both NTFS so I couldn't progress. 
    I'm reasonably technical but new to Mac. 
    Advice is greatly appreciated... I'm GREATLY distressed at the moment...
    <Edited by Host>

    Ok so "DS_Store files are used by Mac OS X to store folder specific metadata information."  Supposedly they get recreated... except I didn't get a nice smooth transition of newly created invisible, instead every file on my machine is "gone."

  • Poor image quality on DVD made in iDVD - Urgent assistance required PLEASE

    I have imported pictures to form a slideshow in iDVD. The pictures are great quality and look good but the problem I am having is how distorted and blurry they become when burning the dvd.
    They look good for a split second when they transition in and then transition out, but become distorted whilst on display (set for 5 seconds)
    I need urgent assistance please with this matter.
    ps I am still a bit of a novice at this.
    Thanks

    I agree with Bengt - there are better ways to make slideshows. Here is mine:
    There are many ways to produce slide shows using iPhoto, iMovie or iDVD, but they all have one thing in common: they reduce the quality of the photos to that of a movie still frame and sometimes limit the number of photos you can use.
    If what you want is what I want, namely to be able to use high resolution photos (even 300 dpi tiff files), to pan and zoom individual photos, use a variety of transitions, to add and edit music or commentary, and to end up with a DVD that looks good on both your Mac and a TV - in other words end up with and end result that does not look like an old fashioned slide show from a projector - you may be interested in how I do it. You don't have to do it my way, but the following may be food for thought!
    Firstly you need proper software to assemble the photos, decide on the duration of each, the transitions you want to use, and how to pan and zoom individual photos where required, and add proper titles. For this I use Photo to Movie. You can read about what it can do on their website:
    http://www.lqgraphics.com/software/phototomovie.php
    (Other users here use the alternative FotoMagico: http://www.boinx.com/fotomagico/homevspro/ which you may prefer - I have no experience with it.)
    Neither of these are freeware, but are worth the investment if you are going to do a lot of slide shows. Read about them in detail, then decide which one you feel is best suited to your needs.
    Once you have timed and arranged and manipulated the photos to your liking in Photo to Movie, it exports the file to iMovie 6 as a DV stream. You can add music in Photo to Movie, but I prefer doing this in iMovie where it is easier to edit. You can now further edit the slide show in iMovie just as you would a movie, then send it to iDVD 7, or Toast, for burning.
    You will be pleasantly surprised at how professional the results can be!

  • ATT: Skyee Need your urgent Assist

    Dear Skyee
    Need your urgent Assist ASAP, i need to know if there were problems (like arabic language gone after belle update) ?
    also my product code on My C7 is 059B7V7 but the one on the nokia availability Site is 059b7v6 is what should i do Please Answer Me ASAP?

    I just replied to you here: /t5/Software-Updates/Nokia-Belle-Custom-Version-amp-Custom-Version-Date-Problem/td-p/1301317

Maybe you are looking for