-> Client_OLE2.create_obj ('Excel.Application') when he called by form of Oracle for the second time to desnt work


Here is the code that is written in "WHEN-BUTTON-PRESSED" trigger of a button in the form of Oracle

Questions:

1. for the first time in the excel sheet data loaded into record block.

2. If I once again to open the screen and try to import another excel file the record block appers to be empty and no error thrown

Comment:

1. second time when I try to download the excel sheet, the code ends in "Client_OLE2.create_obj('Excel.Application')" and not further progress (on track by putting the message in the code)

Code:

DECLARE
application Client_OLE2. Obj_Type;
Client_OLE2 workbooks. Obj_Type;
workbook Client_OLE2. Obj_Type;
Client_OLE2 spreadsheets. Obj_Type;
worksheet Client_OLE2. Obj_Type;
worksheet2 Client_OLE2. Obj_Type;
cell Client_OLE2. OBJ_TYPE;
Client_OLE2 args. OBJ_TYPE;
cell_value varchar2 (100);
num_wrkshts NUMBER;
wksht_name VARCHAR2 (250);
EOD Boolean: = false;
j integer: = 1;
v_fName VARCHAR2 (250);
BEGIN
-Get the name of the file to open
-v_fName: = "D:\MyDevelopment\Forms\Samples\WebUtil\Read_Excel\planets3.xls";
v_fName: = WebUtil_File.File_Open_Dialog)
directory_name = > "C:\". »
-, file_name = > Get_Form_Property (:System.Current_form, Form_Name) |'. XLS
, File_Filter = > null
, Title = > 'Select customer filename to open.'
);

IF (v_fName IS NOT NULL) THEN

-The following sets a communication with the excel worksheet
-- --------------------------------------------------------------
-Open the OLE application
application: = Client_OLE2.create_obj ('Excel.Application');
-Keep the hidden application
Client_OLE2.set_property (application, 'Visible ','false ');

workbooks: = Client_OLE2. Get_Obj_Property (application "Filing cabinets");
args: = Client_OLE2. CREATE_ARGLIST;

-Open the selected file
-- ----------------------
Client_OLE2.add_arg (args, v_fName);
workbook: = Client_OLE2. GET_OBJ_PROPERTY (Workbooks, 'Open', args);
Client_OLE2.destroy_arglist (args);

worksheets: = Client_OLE2. GET_OBJ_PROPERTY (workbook, 'Worksheets');

-Get the number of spreadsheets
-- ------------------------
num_wrkshts: = Client_OLE2. GET_NUM_PROPERTY (worksheets, 'Count');
worksheet: = Client_OLE2. GET_OBJ_PROPERTY (application, 'activesheet');

-Go to the first record
go_block ('planets');
premier_enregistrement;

loop
If: system.record_status <>'NEW' then
create_record;
end if;

When the exit NEM;

for 1.3 k loop - 3 frames / record
args: = Client_OLE2.create_arglist;
Client_OLE2.add_arg (args, j);
Client_OLE2.add_arg (args, k);
cell: = Client_OLE2.get_obj_property (spreadsheet calculation, 'Cells', args);
Client_OLE2.destroy_arglist (args);
cell_value: = Client_OLE2.get_char_property (cell, 'Value');

If upper (cell_value) = "NEM" then
Nem: = true;
Message ('end of data');
"exit";
end if;

-Could be done in this way also-->

/ * If k = 1 then
: dept.deptno: = cell_value;
end if;

If k = 2 then
: dept.dname: = cell_value;
end if;

If k = 3 then
: dept.loc: = cell_value;
end if;
*/

-Less code in this way - >
Copy (cell_value, name_in ('system.cursor_item'));
next_item;

end loop; -for

j: = j + 1;
end loop;-main loop

-Release the handles object Client_OLE2
IF (cell IS NOT NULL) THEN
Client_OLE2.release_obj (cell);
END IF;
IF (spreadsheet IS NOT NULL) THEN
Client_OLE2.release_obj (Worksheet);
END IF;
IF (spreadsheets IS NOT NULL) THEN
Client_OLE2.release_obj (Worksheets);
END IF;
IF (worksheet2 IS NOT NULL) THEN
Client_OLE2.release_obj (worksheet2);
END IF;
IF (workbook IS NOT NULL) THEN
Client_OLE2.release_obj (Workbook);
END IF;
IF (workbooks IS NOT NULL) THEN
Client_OLE2.release_obj (Workbooks);
END IF;
Client_OLE2. Invoke (application, 'Quit');
Client_OLE2.release_obj (application);
ON THE OTHER
Message ("no file selected.'");
message(' ');
RAISE Form_Trigger_Failure;
END IF;
END;

Any advice will be appreciated...

Thank you!!!

Hello

personally, I release the cell object as soon as the value is written in a variable and not in a procedure that closes the file. Note that there are many cells read (so you should relase each cell individually).

The publication of the application is such:

Procedure CloseApplication is

Begin

CLIENT_ole2.release_obj (Workbook);

CLIENT_ole2.release_obj (Workbooks);

CLIENT_ole2. Invoke (application, 'Quit');

CLIENT_ole2.release_obj (application);

End CloseApplication;

Greetings,

SIM

Tags: Oracle Development

Similar Questions

  • Automation error: The object invoked has disconnected from its clients when the exe to exectuted the VB6 for the second time

    Dear all,

    I had this really common automation error when I run an exe file created by Visual Basic 6 for the second time. Whenever I ran the program for the first time that it works really well. But the second time always fails. When I ran in debug mode in Visual Basic 6, sometimes it worked. I checked the code and found it would be discontinued in the next part - CommonDialog1.ShowSave.

    ReDim SelectedVar (1 NumSeleVar)
    ReDim SelectedVarTxt (1 NumSeleVar)
    I have = 1
    For j = 1 To NumVar_GasPlants
    If chkOpt (j - 1). Value then
    SelectedVar (i) = j
    SelectedVarTxt (i) is chkOpt (j - 1). Legend
    i = i + 1
    End If
    Next J

    'Get the name of the export file.
    If not g_RunOutputMacro then ' check-out
    CommonDialog1.cancelError = True
    CommonDialog1.InitDir = curCasePath
    If IsMonteCarlo then
    CommonDialog1.FileName = "HourlyData_GasPlants_" & cmbYear.Text & "_" & cmbMonteCarlo.Text & ".csv".
    On the other
    CommonDialog1.FileName = "HourlyData_GasPlants_" & cmbYear.Text & ".csv".
    End If
    CommonDialog1.Filter = ' (*.csv) | * .csv.
    CommonDialog1.FilterIndex = 1
            CommonDialog1.ShowSave
    SelectedOutputFile = CommonDialog1.FileName
    On the other
    SelectedOutputFile = g_Output_FileName
    End If

    I have been tormented by this problem for almost a month. Any suggestions or ideas would be very appreciated!

    Thanks a lot guys!

    Hello

    This problem would be treated better in the MSDN Visual Basic forums. Expertise it can help you with this problem.

    https://social.msdn.Microsoft.com/forums/vstudio/en-us/home?Forum=vbgeneral

    Thank you

    Stephanie Podder

  • Error-50103 during the VI call for the second time

    I have a main VI who, after the initial installation, called a VI that reads and writes several times to a data acquisition (USB 6356). This VI subroutine is called several times for each of the stages of the program. On the first pass through, there is no problem. During subsequent calls to the sub VI, however, it throws error-50103. I've identified the task that resolves this error. I made sure to do a self-cleaning on the task, create the task outside of loops and stop and clear the task after all the iterations are performed. To check if it is only the following calls may cause the error, I created a simple VI who just ran the sub VI twice now, and there are no errors.

    Any ideas on what is causing my problem or why it does occur during subsequent calls to my VI more complex?

    A picture of the frame and the task which gives me the number is attached.

    Thank you!

    I finally found the problem, although it was not the task that LabVIEW had identified. The problem task was a separate sub - VI who was called from the main VI and the Subvi that threw the error. I got this task stopped and cleared and it's not like he has over the matter.

    Thanks to all who have contributed.

  • Photo PhotoSmart 7520 tray is blocked when I try to print photo 4 x 6 for the first time.

    I just bought this 7520 and installed the software; then when I tried to print a picture for the first time, I kept getting the error message that the photo tray is locked (will not travel to bottom to pick up the blank photo paper) even if no clogging. The call centre could not solve the problem, and they ship me a replacement printer; but I suspect that this may be a common problem.

    I searched the post, and someone else had the same problem.  The solution is that the tab on the slide of paper size was outside the slide area.  I fixed it, and the printer now prints pictures.

  • problems of the admin: message saying insufficient privileges: you must be an administrator when you run this application for the first time

    I bought this new comp with windows 7 already installed. has worked fine up intill a week or two it y a. I installed a new game, and after installation, I press launch to play it and pop up with a message saying not sufficient privileges: you must be an administrator when you run this application for the first time. also, I thought that I must be the administrator when I tried to launch the disk defragmentation. my account is the administrator account so I don't understand why they say that.

    I'm sorry. I was reading through additional FAQS regarding the same problem. I saw where someone said to try to add another admisistrator account to try to take on the former. but I had no luck with this ether. I also downloaded the program of the UAC, and I turned it off, reset my computer and still no change to my problem. I also tried to download the MSE restore tool, but I found myself with a message saying that I have no MSE

    Sorry, the MSE tool is to set the MSE when its broken.
    UAC controller Tool v1.0 can be used to control the
    The UAC settings.

    However, I suggest you restart the PC and after BIOS hold the F8 key
    and when the Windows Startup Menu appears, select Mode safe mode with networking.

    Now, you will enter Safe Mode. On the page to connect, you will see the
    Standard Windows administrator click it to open a windows session, press and hold
    in mind, the password can be blank.

    Once you have done that make a new account administrator and giv it a name.
    Restart the PC. That you did this newspaper using the new account.
    Once you have done that decide what to keep with your current administrator
    account once you've done it restart the PC, BIOS hold down the F8 key and
    Select Mode safe mode with network and enter dependencies the Standard Windows administrator.

    Go to control panel-> user accounts control and security for the family-> user accounts, then
    Select manage another account. In the list, select the administrator account
    your select and then delete the account, then it will ask you if you want to keep
    files etc, it's your own decision. Itknowledge24.com

  • I just downloaded and installed the Lightroom update version (5.7).  When I now try to open the program I get an error message stating "the application could not start properly (0xc00007b).  It happened the last time I upgraded and I w

    I just downloaded and installed the Lightroom update version (5.7).  When I now try to open the program I get an error message stating "the application could not start properly (0xc00007b).  It happened the last time I upgraded and sent me a few files that has corrected the problem.  Can help you.  With our thanks.  John

    Try this: error "Unable to start properly - 0Xc00007b"

  • Why when saving a file already existing AI cs6 is acting like I am registering for the first time?

    Why when saving a file already existing AI cs6 is acting like I am registering for the first time? Assume that the file is called file.ai - when I'm working on that and go: Cmmand record - he said: ' replace file1.ai? I don't want to replace - simply record. What happens to me every few weeks in artificial intelligence. And it is a file that was NOT an older file - as I posted this Q once first before - and got no answer. Someone suggested that it might be that my file was from an older file. But no - this file is completely new. Work on it for a few days. Thank you very much!

    Applications > utilities > disk utility > repair permissions

  • MacPro is impossible to call to PC machine for the first time

    I have the fllowing problem:

    I have two computers a MacPro machine another machine and PC. I use Adobe video Sample Application for testing of Stratus. When I run the application for the first time on both machines and try to make a call from Mac to PC, nothing happens. PC receives no notification call. However, when the PC tries to make a call to the MacPro machine, everything's fine.

    There is one exception:

    MacPro machine can make a call to the PC machine with the following condition

    1 - PC has already appealed a PC to MacPro.

    Therefore, if the PC has already appealed to MacPro, then after puts end the call (from anyside), MacPro can call PC and all is well.

    Can you get it someone please let me know why, for the first time, MacPro is impossible to call the PC machine?

    Thanks in advance.

    Simply allow the 1024-65535 UDP ports, UDP not all necessarily.

    This is not necessary if your NAT supported through, or if the PC was not behind the NAT as well as other computers you want to talk or if there is no NAT.

    Post edited by: Michael Thornburgh on Wednesday, may 5 05:27:13 UTC 2010

  • IllegalStateException when Date by selecting the second time by using the date picker.

    I didn't think you could add a DatePicker to a field, and the only way to use the component is to use the method. doModal(). So I created a button which FieldChangeListener calls the method. It works the first time I click on the button and select a date, but the second time I get IllegalStateException.

    datePickerButton = new ButtonField("Date", ButtonField.CONSUME_CLICK | ButtonField.FIELD_RIGHT);
    datePickerButton.setChangeListener(new FieldChangeListener() {
        public void fieldChanged(Field field, int context) {
            UiApplication.getUiApplication().invokeLater(new Runnable()
            {
                public void run()
                {
                    datePicker.doModal();
                    datePickerButton.setLabel(SimpleDateFormat.getInstance(DateFormat.DATE_SHORT).format(datePicker.getDateTime()));
                }
            });
    
        }
    });
    

    Thread [Ritis_Maps (181) id = 295359488] (Suspended (exception IllegalStateException))
    SpinBoxDateTimePickerView (field) (Manager, int) .setManager line: 5399
    DateTimePickerDialog$ ConfirmManager (Manager) .insertInternal (field, int) line: 2203
    DateTimePickerDialog$ ConfirmManager (Manager) .add (Field) line: 545
    DateTimePickerDialog$ ConfirmManager. Line (field, ButtonField, ButtonField): 307
    DateTimePickerDialog. (DateTimePicker, XYRect, long) line: 94
    DateTimePickerController.getDateTimePickerScreen (XYRect) online: 332
    DateTimePickerController.doModal (int, XYRect) line: 340
    DateTimePickerController (DateTimePicker) .doModal () line: 255
    AdvancedIncidentListOptions$ 5.run (line): 193
    Line .dispatchInvokeLater (Runnable, object, int) UImain (Application): 1456
    UImain (Application) (Message) .doProcessNextMessage line: 2088
    UImain (Application) (Message) .processNextMessage line: 1530
    UImain (Application) () .enterEventDispatcher line: 1371
    UImain.main (String []) line: 24

    Maybe the datePicker does not clean themselves properly and you must create a new instance each time. I guess that since there doModal there are a few static fields/methods within the class to reiinitialized on each call.

  • When I installed for the first time the creative cloud I did not fit into the second computer and now I don't know how to do this. Can someone help me?

    When I installed creative cloud for the first time I was not installed in the second computer and now I don't know how to do this. Can someone help me?

    Hello

    Please refer to the help documents below to download the application Adobe CC:

    Creative cloud to desktop

    Download, install, update or uninstall applications

    Kind regards

    Sheena

    Moving to the cloud creative download & install

  • Windows7 64 bit. Why the desktop icons all be empty when you run Firefox nightly for the first time?

    Every time after I get a Firefox Nightly update and run it, it will display the next page:
    https://www.mozilla.org/en-US/firefox/nightly/firstrun/?oldversion=30.0 which is fine.
    But when it opens this page, all my desktop icons go clear/white and one by one, they all return with their correct icons. And all this happens in a few seconds.
    Why is the operation of Firefox every night for the first time, my desktop icons?

    I suspect that you have both nightly and Firefox version installed?

    "The Firefox 'about' shows 30.0. and I've now checked for updates and are now running 33.1.1"
    

    It's different from what you have first published here with!
    Firefox 33.1.1 represents the latest version - a 32-bit version.

    Whereas, the version you first posted here with was a generation of 64-bit channel every night from July. Every night is for "Alpha-testers" and is updated every day, where the name of "night".

    Everything that happens in the background on the Windows desktop should not be of concern right now, every night Win 64 bit is several months out.
    If you really want to test the Win 64 Nightly builds, follow and participate in the very different evenings and son of 'channels' on MozillaZine forum is based.

  • I'm afraid to do the last update because in the past when I update, I always lose something. The last time it was my tabs "pinned". What is the solution?

    I'm afraid to install the last update, because in the past when I update, I always lose something. The last time it was my tabs "pinned". What is the solution?

    No, they are not the same. You really need to put more emphasis on messages displayed by editors / moderators / Admins who have extensive validation "under their belt.

  • So, for the 3rd TIME WHEN I REQUEST SUPPLICANT why NOT update only FF updated my browser?

    You see, I ask myself this same question twice before, because Firefox has once more for the third time last updated browser DESPITE MY PLAIDANT ASK TWICE BEFORE NOT to DO SO. but now I have a platform to make public DISHONESY of Firefox, put to task for defying a very adamant demand, specifically NOT UPDATE MY BROWSER, CIRCUMSTANCES THAT systematically, repeatedly occurred throughout all these years I've been with Firefox since 2005.

    How is it that Firefox continues to deliberately defy, ignore the wishes of its customers most loyal me inflamed beyond words, when I repeatedly made KNOWN QUITE WELL NOT to HAVE MY BROWSER updated.

    BUT NOW, AFTER ALL THIS TIME, TOGETHER WITH THE INSIGHT I HAVE RUN AS ONE INDUSTRY COMPUTER SPECIALIST I know very well why Firefox CONTINUES THIS PRACTICE WITH ABANDON.

    1. they do not like anyone was sleeping with the subject: config (then why did you never included it in the first place) as I do.

    2. they don't like anyone made modules incompatible extensions again as I do.

    3. they do not like someone tampering Firefox as I do.

    And all Firefox should do to reduce to nothing all the meticulous work I spend change about: config. configurations to accommodate my own and the needs of my company and all the hard work. spend time of activation of newly incompatible extensions, I need to work as effectively as possibleamong other things that I tweaked, THAT I EXACTLY WHAT YOU DO for THE REASONS I GAVE. YOU deliberately, to DO so hatefully. And that's the final reason for YOUR contempt total without taking account of the request of a customer. In addition, YOU, fIREFOX feel that since you wrote the code, and the owner of the code, YOU can insist USERS to follow the protocols of Firefox exactly as I ask.

    Another example of YOUR dictatorial to browse the web - what approach YOU feel that no one should dare to take a peek to content that is not the level of WHAT YOU BELIEVE IS purity AND ALL OTHER CONTENT CORROMPRE THE MORALS OF OUR YOUTH.

    In one of the cases where my browser has been updated despite my unyielding position against it, someone in YOUR ORGANIZATION has removed several sites for adults STRICTLY STRAIGHT to my favorites.

    SO now, NOT ONLY DO you HAVE AN ATTITUDE INTRUSIVE big BROTHER THAT NOBODY DARE DEVIATE FROM the OFFICIAL FIREFOX BROWSING PROTOCOLS BUT NOW YOU have put in PLACE A CENSURER CAMPAIGN ON WHAT YOU CAN READ, WATCH at all SIMPLY BOOKMARK or.

    BUT IT IS EVEN WORSE, MUCH WORSE. THE LAST TIME TWO YOU UPDATED MY BROWSER AGAINST MY WILL, YOU GAVE ME THE REASON MORE LAME MORE STUPID, INSULTING, STUPID WHY YOU UPDATED TWICE BEFORE AS IF THEY WERE JUST CIRCUMSTANCES THAT OTHERWISE NEVER WOULD HAVE VIOLATED AS WELL AS THE PRIVACY BEING THE TERRIBLE REBEL COMMERCIAL PRACTICES, ARROGANT AND SIMPLY TO YOUR MITIGATING CUSTOMER. BUT NOW IN ADDITION TO PROVE YOURSELF TO BE A MEGALOMANIACAL SOCIOPATH YOU HAVE REVEALED YOURSELF TO BE ABSOLUTE LIARS CHRONICLES.

    AND IT OF BECAUSE I AM RESPONSIBLE FOR MY COMPUTER SERVICE COMPANY AND HAVE A LOT OF COMPUTERS UNDER MY CONTROL AND SUPERVISION. I HAVE ONLY RECENTLY PASSED ON SOME OF OUR COMPUTERS FROM IE TO FIREFOX AS A TEST AND I AM DEPRIVED OF WHAT HAPPENED BETWEEN THE COMPUTERS THAT WERE USING FIREFOX AS A TEST STUDY.

    AND WHILE THE TRUTH BEING WHAT IT IS, YOU ARE CAREFUL NOT TO MESS WITH MY BROWSER, AS IT IS WELL CONFIGURED TO NOT UPDATE, WHICH, IN YOUR HONOR, YOU GAVE HIM A LARGE DOCK, BUT YOU GRIMLY UPDATED SIX COMPUTERS THAT WERE PART OF OUR TEST STUDY
    WHO HAD THE SAME CONFIGURATION OF BROWSER REQUEST NOT TO BE UPDATED BUT THAT YOU UPDATED HOWEVER. THESE COMPUTERS WERE PART OF A STUDY OF PRODUCTIVITY WHICH, BY UPDATING IT SET ALL THE SMALL EXPERIENCE OF OUR BACK A LITTLE BIT.

    SO, WHAT AM I GOING TO DO WITH YOU? I HAVE TO REALLY THINK LONG AND SERIOUSLY ON HOW TO RESPOND TO AN ORGANIZATION THAT HAS SHOWN NOTHING BUT THE WORST KIND OF APATHY, PRACTICES DISHONEST COMMERCIAL I'VE SEEN SINCE BEING IN THE COMPUTER SECTOR.

    Automatic updates can sometimes damage the files in the profile, and I always read several web for a complaint indicating that it has not changed. This is one of the reasons why I don't like the automatic updates.

  • When I defragment I get message "suspended for the shadow copy of volume.

    Original title: Defrag problem

    When I defragment I get message 'suspended for the shadow copy of volume' whatever that means?

    The VSS Service should not be run unless you do some kind of a backup that uses it.

    Are you using any kind of third-party backup software that would force the VSS Service to run all the time?

    If defrag used to work, what do you think might have changed since the last time it worked correctly?

    I have my VSS Service set to "Manual" - in this way, it not start with XP on a restart and run all day to do nothing, but he will start by itself when I do a backup and stop when the backup is complete (it runs when you need).

    You check the VSS Service, click Start, run and enter in the box:

    services.msc

    Click OK to open the Services applet and find the Volume Shadow Copy Service.

    Select the status and Startup Type columns.

    If you do not have a backup at this time there, the Status column must be empty (not started) and the Startup Type should be set to manual.

    If this is not the case, let a right-click on the VSS Service, properties, Stop (to stop it), change the Startup Type to manual and OK your way out (ensure that it is reactivated by itself).  If it starts up again without a valid reason, you need to understand why and fix it.  Restart to make sure the changes 'stick '.

    See if your defragmentation works when the VSS Service does not work...

  • When you get a retailer to re - install Vista are you able to burn a copy of Vista as when he was the first new and turned on for the first time?

    Hello and Merry Christmas to all. Sorry its been a while that I had time to be on the forum, (family illness) Anywho my daughter had dropped her Lenovo and although we went through every conceiveable options to retrieve and detaches from the dreaded "black screen" we couldn't. We had the chance to recover his files before he died forever! That was the good part... I had to resume at Tiger Direct, where they installed a new concert 320 H/D and re-installed Vista. Because she graduated she had two of the residence and turned my basement into a hoarders paradise, lol point being that she has no idea where his original disk is so I contacted Lenovo who assured me that they would send me a copy of Vista (how naïve of me) they me sent recovery disc (two games not less and it took more than a month!) that I discovered after the fact that I could have burned my own through Neo-Smart...

    There is one thing that still bothers me and that's when we first pulled his new Lap Top for the first time and installed Vista I remembered that the very last paragraph said to make your own copy of the o/s before your done... what was not done! Is it still possible to make a copy of its operating system now? If Yes, how would go about this, if I wait for her to do it, it will not! She was lucky that I was able to use a slave to its hard disk of my XP Sata-IDE cable and get its files on the drive before it me locked. It has an external H/D as most of the people who do not know how to change their scores on the top of their Tower and get the full use out of them as desk top users do.

    As aways thanks for the fellow forumer for your time and trouble and any help is appreciated.

    Tiggerer

    Hello and Merry Christmas to all. Sorry its been a while that I had time to be on the forum, (family illness) Anywho my daughter had dropped her Lenovo and although we went through every conceiveable options to retrieve and detaches from the dreaded "black screen" we couldn't. We had the chance to recover his files before he died forever! That was the good part... I had to resume at Tiger Direct, where they installed a new concert 320 H/D and re-installed Vista. Because she graduated she had two of the residence and turned my basement into a hoarders paradise, lol point being that she has no idea where his original disk is so I contacted Lenovo who assured me that they would send me a copy of Vista (how naïve of me) they me sent recovery disc (two games not less and it took more than a month!) that I discovered after the fact that I could have burned my own through Neo-Smart...

    There is one thing that still bothers me and that's when we first pulled his new Lap Top for the first time and installed Vista I remembered that the very last paragraph said to make your own copy of the o/s before your done... what was not done! Is it still possible to make a copy of its operating system now? If Yes, how would go about this, if I wait for her to do it, it will not! She was lucky that I was able to use a slave to its hard disk of my XP Sata-IDE cable and get its files on the drive before it me locked. It has an external H/D as most of the people who do not know how to change their scores on the top of their Tower and get the full use out of them as desk top users do.

    As aways thanks for the fellow forumer for your time and trouble and any help is appreciated.

    Tiggerer

    Hey tiggerer

    NeoSmart is software startup repair not a recovery disk to reinstall vista

    and once you have replaced your hard disk you have lost the ability to do the recovery disk from the recovery partition that may have been defective hard disk

    and it depends on your version of vista as to whether you can now make a backup complete pc using microsoft software

    you need vista business or vista ultimate to backup full pc

    read information from microsoft about it at the link below microsoft

    http://Windows.Microsoft.com/en-us/Windows-Vista/back-up-your-programs-system-settings-and-files

    If you have not these versions vista expect from lenovo recovery disks be delivered or buy a third party program to do a full backup pc

    one of these programs is the true picture in the link below

    http://www.Acronis.com/

    have a happy holiday season

    Walter, the time zone traveller

Maybe you are looking for

  • Passcode lock

    I have a problem! My iPhone 4S is the locked access code and must be restored. I would like to know if it is possible to keep all the data, it is too important to me. Thank you!

  • Antenna wire disconnected

    I own a hp Pavilion elite quad core with phenom processor 2. At least I think. The name of model written on the bottom, RT3090. This morning, I accidentally unplugged a very thin wire when a fan is replaced. The wire connects to an antenna, which I t

  • do you know when the support runs for Vista. Can someone tell me if we could get 10 windows.

    Separated from this thread. Hello community: we have windows Vista on your laptop and desktop, does anyone know when is the support for Vista.  Laptop Dell old Desk top aged eight years and seven years.  Can someone tell me if we could get 10 windows

  • Pavilion G4-2111TX: HP Windows 7 unable to upgrade to Windows 10 laptop

    Have a HP Pavilion G4-2111TX laptop, running on Windows 7. When trying to upgrade to Windows 10 to get this prompt: "Air Display (Microsoft Corporation - WDDM v1.1). The manufacturer of the screen did not your screen compatible with Windows 10. Check

  • Windows starts do not

    I recently started to update my drivers after installing only most of them a few months ago on my new computer. Everything was fine and I shut down my computer as I did. Obviously, something went wrong and now Windows won't start, but instead to acce