Window 開機後彈出一個 dialogue box [Window- 沒有磁片]

2007-06-08 11:49 am
兩個月前 Window 開機後突然彈出一個 dialogue box, 標題是中文 : Window- 沒有磁片 跟著以下寫著[ Exception processing Message c0000013 parameters 764ebf9c 4 764ebf9c 764ebf9c ] 至今仍然每次開機也彈出來, 每次也只能選擇 [繼續] 或 [取消] 才能 run up window ….. (已用過[系統公用程式]做過 uncheck, 再次開機, 問題也未解決到.

請教各高人怎樣解決以上問題 , 謝謝各位.

回答 (3)

2007-06-08 4:56 pm
✔ 最佳答案
出現這個情況只會是兩個中的一個問題:~

1)你的電腦中了電腦病毒。
該電腦病毒名稱為:Image File Execution Options (IFEO in short)劫持,是經不合法軟件而散播並感染,解決方法你可以參照以下網址,有詳細的圖文解說(簡體)。

==>http://hi.baidu.com/teyqiu/blog/item/faaf5edf595ecd124954039c.html

2)你的軟盤可能接觸不良或者壞掉。
開啟你的電腦機箱,查看一下Floppy機的接線(包括連接到底板的及電源供應的)有否鬆脫,若有,接上並查看可否解決問題。
仍未能解決,你可找朋友借來一正常的Floppy機裝到你的電腦內作測試情況,若即時能解決問題,你便可考慮
(1)買一新的Floppy機更換;
(2)開啟電腦時進入BIOS畫面,在Main畫面將Legacy Diskette A 改選為disable;Halt on改選為 All but Disk/Keyboard;在Boot畫面將Removable Drive改選為非floppy drive 或其它裝置。

你試試看^_^
2007-12-14 11:28 pm
I also got the same message windows-沒有磁片(Exception Processing Message c0000013 Parameters 764ebf9c 4 764ebf9c).

Coincidentally, I found that the same message showed when I clicked Quicktime. Then I uninstalled Quicktime and the message stopped showing again.
2007-06-08 5:23 pm
Dialogue boxes At times you may wish to confirm with a user that the requested action is really the one she/he wants. A common example of this is in saving a file, and the user enters a file name which already exists - does the user want to overwrite this file? A dialogue box is a common way to allow a user to confirm this. The basic syntax is my $dialog = $mw->Dialog( [ option => value ] );
Some basic options are -title => value
This gives the text to appear in the title bar for the dialog box. -text => value
This is the message to appear in the top portion of the dialog box. -bitmap => value
If this is non-empty, it specifies a bitmap to display in the top portion of the dialog, to the left of the text. If empty, then no bitmap is displayed in the dialog. -default_button => value
This is the text label string of the button that displays the default value. -buttons => list reference
This gives a reference to a list of button label strings. Each string specifies the text to display in a button, in order from left to right. The use of the dialogue box is different than the widgets considered so far in this chapter, in that it is invoked when the action of another widget calls for it. The answer received from the dialogue can be retrieved via my $answer = $dialog->Show(-global);
In this, -global, if specified, results in a global (rather than a local) grab being done. An example of the use of a dialogue box follows.
#!perl
# file dialog.pl
use Tk;
use strict;
use warnings;
my $message = 'nothing yet ...';
my $mw = MainWindow->new;
$mw->title('Dialog');
my $label = $mw->Label(-textvariable => \$message);
my $save = $mw->Button(-text => 'Press to save!',
-command => \&dialog);
my $exit = $mw->Button(-text => 'Exit',
-command => [$mw => 'destroy']);
$exit->pack(-side => 'bottom');
$save->pack(-side=>'top');
$label->pack(-side => 'top');
MainLoop;
sub dialog {
use Tk::Dialog;
my $dialog = $mw->Dialog(-text => 'Save File?',
-bitmap => 'question',
-title => 'Save File Dialog',
-default_button => 'Yes',
-buttons => [qw/Yes No Cancel/]);
my $answer = $dialog->Show();
$message = qq{You pressed '$answer'};
}
In this example, when the user presses the ``Press to save!'' button, a dialogue box will pop up, asking for confirmation. The value selected will subsequently be reflected in the label appearing in the main window. The dialogue box appears in the figure below.
Figure 3.23: Example of a dialogue box
圖片參考:http://theory.uwinnipeg.ca/perltk/widgets/dialog.png


收錄日期: 2021-04-29 19:30:29
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070608000051KK00488

檢視 Wayback Machine 備份