登录
首页 » C# » 一个下拉框,能显示本机所有驱动器,还包括软驱,光驱,用C#编写....

一个下拉框,能显示本机所有驱动器,还包括软驱,光驱,用C#编写....

于 2023-02-03 发布 文件大小:15.13 kB
0 103
下载积分: 2 下载次数: 1

代码说明:

一个下拉框,能显示本机所有驱动器,还包括软驱,光驱,用C#编写.-a drop-down box, the machine can show all drives, including floppy drive, optical drive, using C#.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • string
    说明:  串的基本操作演示程序,具有较好的容错功能(The basic operation of string demo, with good fault tolerance)
    2011-03-06 15:22:05下载
    积分:1
  • CSharpDLl-zhuru
    C#版 DLL注入,比较难找到,选择dll后可以注入任意进程并且执行(C# version of the DLL injection, more difficult to find, select dll after injecting arbitrary process and execute)
    2021-03-19 15:19:19下载
    积分:1
  • STM32F407驱动OLED显示DS18B20数字温度
    实验器材: 探索者STM32F4开发板 实验目的: 学习单色OLED显示屏的使用 硬件资源: 1,DS0(连接在PF9)  2,ALIENTEK 0.96寸OLED模块(连接IO说明,见oled.h文件)  实验现象: 本实验利用开发板的OLED/CAMERA接口连接ALIENTEK OLED模块,实现OLED模块的显示,下 载成功后,通过把OLED模块插入开发板左下角的OLED/CAMERA模块接口,按下复位之后,就 可以看到OLED模块不停的显示ASCII码和码值。  注意事项:  1,开发板的OLED/CAMERA模块接口比OLED的插针多2个,OLED靠左插即可. 2,例程默认用的8080方式驱动OLED模块,所以OLED模块的BS0,BS1都需要接VCC(默认接的VCC).  一、主要程序代码如下 int main(void){    u8 t=0; short temperature; Stm32_Clock_Init(336,8,2,7);//设置时钟,168Mhz  delay_init(168);   //延时初始化   uart_init(84,115200);  //初始化串口波特率为115200  LED_Init();     //初始化LED  OLED_Init();    //初始化OLED  DS18B20_Init();     //DS18B20初始化  OLED_ShowString(0,10,"Temperature:",12); OLED_ShowString(85,10,".",12); OLED_ShowString(98,10,"C",12); OLED_Refresh_Gram();//更新显示到OLED   while(1)  {    if(t%10==0)//每100ms读取一次  {              temperature=DS18B20_Get_Temp();    OLED_ShowNum(72,10,temperature/10,2,12); //显示正数部分          OLED_ShowNum(89,10,temperature%10,1,12); //显示小数部分          OLED_Refresh_Gram();//更新显示到OLED     }          delay_ms(10);  t ;  if(t==20)  {   t=0;   LED0=!LED0;  } }}
    2020-12-07下载
    积分:1
  • 词法分析Lex
    名称:C语言词法分析器 功能:1)从C语言源代码文件中提取所有词素 2)检测程序的词法错误,给出错误行号及提示 3)语法分析器的预备程序 文件:分析器代码(Lex.c)、测试文件(test.c)、状态转换图、可执行程序 输出:错误记录文件、符号表文件、标识符文件(Name lexical analyzer for C language function: 1)Extract all lexems from C Language source code 2)Examine the syntax errors of the program and provide the line number of error line and note 3)preprocessed program file of the lexical analyzer source code of the analyzer(Lex.c), test file(test.c),status transformation chart,excutable program. Output: Error-recording file, symbol table file and identifier file.)
    2021-04-01 15:29:08下载
    积分:1
  • oi
    说明:  聚类和分类技术在生物信息学中的应用,不包含源代码!(Clustering and classification technology in bioinformatics applications, does not contain the source code!)
    2009-08-11 09:57:31下载
    积分:1
  • C++STL
    这是STL的介绍性程序。 这是STL的介绍性程序。 这是STL的介绍性程序。 (This is an introductory program STL. This is an introductory program STL. This is an introductory program STL.)
    2007-12-12 02:01:06下载
    积分:1
  • display-interface-and-LLJ
    气象雷达的显示界面,极坐标显示速度信息,可选择显示不同层,并在此基础上实现了低空急流识别算法,标示出了低空急流的高度、速度和方向。该软件属于气象类入门级软件!(Display interface of weather radar, information display speed of polar coordinates, can choose to display the different layers, and on this basis to achieve the low level jet recognition algorithm, marked the height, speed and direction of the low level jet. This software belongs to the meteorological entry-level software!)
    2014-11-04 22:23:34下载
    积分:1
  • 学生管理系统
    本系统包括:界面管理,学生信息查询、添加、修改、删除等部分。其主要功能有: Ø  学生信息的查询,其中包括修改学生和成绩信息。 Ø  学生信息的添加,其中包括输入学生基本的信息。 学生信息的删除,其中包括修改学生信息和成绩信息。 对学生信息进行添加,存入,查找,删除,修改,排序等管理操作。系统主要包含了系统学生信息的查询、更新、插入、删除、排序功能几大类的代码书写,每一类都包含了实现功能的最基本要求:学生信息的查询、更新、插入、删除、排序功能等。
    2022-01-28 12:54:03下载
    积分:1
  • C#OPC实用案例
    C#连接OPC得案例代码,使用MXLabelMemLib、MXLabelMemLib,案例不是很周到,但是可以给大家一个不一样得思路
    2022-09-29 09:40:03下载
    积分:1
  • reactionrate
    fluent表面反应udf文件,基于Langmuir机理的反应速率设置(Fluent Surface Reaction UDF File, Reaction Rate Setting Based on Langmuir Mechanism)
    2020-11-07 15:49:50下载
    积分:1
  • 696518资源总数
  • 105563会员总数
  • 11今日下载