MS.net 2003 安装MSDN以后无法使用的问题。(50分)

  • 主题发起人 主题发起人 小红河
  • 开始时间 开始时间

小红河

Unregistered / Unconfirmed
GUEST, unregistred user!
1、启动VS.net2003,或者启动MSDN for MS.net2003,开始都会出现提示:
“帮助正在更新,以反映最近所做的更改,这可能需要几分钟的时间。。”
过一会儿以后,这个提示就没有了。
2、打开VS.net 2003,到“我的配置文件”里面进行设置
配置文件选项,有“VISUAL C#开发人员”这个选项,可是选不上,自己自动变成“自定义”
帮助筛选器选项,,可以选择C#,但是下次打开MS.NET以后,这个地方又变成“(无筛选器)”了
3、打开MSDN for MS.net2003,打开“索引”,在筛选依据的地方选择任何东西,都会出现提示:“选定的筛选器包含一个错误,从而阻止了它的应用”
 
这个分丢了多可惜呀,我先接着,有高手来了我再让吧,嘻嘻~~
 
顶 。。。。。。。。。。。。。。。。。
 
DirectoryListBox1.Directory 这个后面是不是有'/'的,不清楚,猜测一下
 
没有.测试过了..不是这个原因...谢谢
 
str:=DirectoryListBox1.Directory+'.{D6277990-4C6A-11CF-8D87-00AA0060F5BF}'
Rename(f,str);
 
to tang_xue_feng,不对....我改了,没有用.
如下代码:
unit1.pas的:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, FileCtrl;
type
TForm1 = class(TForm)
Button3: TButton;
DriveComboBox1: TDriveComboBox;
DirectoryListBox1: TDirectoryListBox;
procedure Button3Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
implementation
{$R *.dfm}
{ TForm1 }

procedure TForm1.Button3Click(Sender: TObject);
var
f:file;
s:string;
begin
s:=DirectoryListBox1.Directory;
assignfile(f,s);
s:=s+'.{D6277990-4C6A-11CF-8D87-00AA0060F5BF}';
Rename(f,s);
end;

end.

unit1.dfm的:
object Form1: TForm1
Left = 187
Top = 200
Width = 696
Height = 480
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object Button3: TButton
Left = 384
Top = 56
Width = 75
Height = 25
Caption = 'Button3'
TabOrder = 0
OnClick = Button3Click
end
object DriveComboBox1: TDriveComboBox
Left = 48
Top = 210
Width = 129
Height = 19
DirList = DirectoryListBox1
TabOrder = 1
end
object DirectoryListBox1: TDirectoryListBox
Left = 48
Top = 232
Width = 300
Height = 129
ItemHeight = 16
TabOrder = 2
end
end
Project2.dpr的:
program Project2;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.

以上的代码可以直接保存为相应的文件,可以直接运行.
谢谢..
 
顶...................啊.............................
 
后退
顶部