''标准对话框(SmDialog)
   ''
   Option Explicit
   ''''定义一个全局变量,用于保存字体的各种属性
   Public Type SmFontAttr
   FontName As String ''字体名
   FontSize As Integer ''字体大小
   FontBod As Boolean ''是否黑体
   FontItalic As Boolean ''是否斜体
   FontUnderLine As Boolean ''是否下划线
   FontStrikeou As Boolean
   FontColor As Long
   WinHwnd As Long
   End Type
   Dim M_GetFont As SmFontAttr
   ''''**系统常量------------------------------------------
   Private Const SWP_NOOWNERZORDER = &H200
   Private Const SWP_HIDEWINDOW = &H80
   Private Const SWP_NOACTIVATE = &H10
   Private Const SWP_NOMOVE = &H2
   Private Const SWP_NOREDRAW = &H8
   Private Const SWP_NOREPOSITION = SWP_NOOWNERZORDER
   Private Const SWP_NOSIZE = &H1
   Private Const SWP_NOZORDER = &H4
   Private Const SWP_SHOWWINDOW = &H40
   Private Const RESOURCETYPE_DISK = &H1 ''网络驱动器
   Private Const RESOURCETYPE_PRINT = &H2 ''网络打印机
   ''/------------------------------------------------------------
   Private Const NoError = 0
   Private Const CSIDL_DESKTOP = &H0
   Private Const CSIDL_PROGRAMS = &H2
   Private Const CSIDL_CONTROLS = &H3
   Private Const CSIDL_PRINTERS = &H4
   Private Const CSIDL_PERSONAL = &H5
   Private Const CSIDL_FAVORITES = &H6
   Private Const CSIDL_STARTUP = &H7
   Private Const CSIDL_RECENT = &H8
   Private Const CSIDL_SENDTO = &H9
   Private Const CSIDL_BITBUCKET = &HA
   Private Const CSIDL_STARTMENU = &HB
   Private Const CSIDL_DESKTOPDIRECTORY = &H10
   Private Const CSIDL_DRIVES = &H11
   Private Const CSIDL_NETWORK = &H12
   Private Const CSIDL_NETHOOD = &H13
   Private Const CSIDL_FONTS = &H14
   Private Const CSIDL_TEMPLATES = &H15
   Private Const LF_FACESIZE = 32
   Private Const MAX_PATH = 260
   Private Const CF_INITTOLOGFONTSTRUCT = &H40&
   Private Const CF_FIXEDPITCHONLY = &H4000&
   Private Const CF_EFFECTS = &H100&
   Private Const ITALIC_FONTTYPE = &H200
   Private Const BOLD_FONTTYPE = &H100
   Private Const CF_NOFACESEL = &H80000
   Private Const CF_NOSCRIPTSEL = &H800000
   Private Const CF_PRINTERFONTS = &H2
   Private Const CF_SCALABLEONLY = &H20000
   Private Const CF_SCREENFONTS = &H1
   Private Const CF_SHOWHELP = &H4&
   Private Const CF_BOTH = (CF_SCREENFONTS Or CF_PRINTERFONTS)
   ''/------------------------------------------
   Private Type CHOOSECOLOR
   lStructSize As Long
   hwndOwner As Long
   hInstance As Long
   rgbResult As Long
   lpCustColors As String
   flags As Long
   lCustData As Long
   lpfnHook As Long
   lpTemplateName As String
   End Type
   Private Type OPENFILENAME
   lStructSize As Long
   hwndOwner As Long
   hInstance As Long
   lpstrFilter As String
   lpstrCustomFilter As String
   nMaxCustFilter As Long
   nFilterIndex As Long
   lpstrFile As String
   nMaxFile As Long
   lpstrFileTitle As String
   nMaxFileTitle As Long
   lpstrInitialDir As String
   lpstrTitle As String
   flags As Long
   nFileOffset As Integer
   nFileExtension As Integer
   lpstrDefExt As String
   lCustData As Long
   lpfnHook As Long
   lpTemplateName As String
   End Type
   ''/-----------------------------------------------------------
   Private Type LOGFONT
   lfHeight As Long
   lfWidth As Long
   lfEscapement As Long
   lfOrientation As Long
   lfWeight As Long
   lfItalic As Byte
   lfUnderline As Byte
   lfStrikeOut As Byte
   lfCharSet As Byte
   lfOutPrecision As Byte
   lfClipPrecision As Byte
   lfQuality As Byte
   lfPitchAndFamily As Byte
   lfFaceName As String * LF_FACESIZE
   End Type
   Private Type CHOOSEFONT
   lStructSize As Long
   hwndOwner As Long
   hdc As Long
   lpLogFont As Long
   iPointSize As Long
   flags As Long
   rgbColors As Long
   lCustData As Long
   lpfnHook As Long
   lpTemplateName As String
   hInstance As Long
   lpszStyle As String
   nFontType As Integer
   MISSING_ALIGNMENT As Integer
   nSizeMin As Long
   nSizeMax As Long
   End Type
   ''/--------------
   Private Type SHITEMID
   cb As Long
   abID() As Byte
   End Type
   Private Type ITEMIDLIST
   mkid As SHITEMID
   End Type
   ''/------------------------------------------
   Private Declare Function SHGetPathFromIDList Lib "shell32.dll" Alias
   "SHGetPathFromIDListA" _
   (ByVal Pidl As Long, ByVal pszPath As String) As Long
   Private Declare Function SHGetSpecialFolderLocation Lib "shell32.dll" _
   (ByVal hwndOwner As Long, ByVal nFolder As Long, _
   Pidl As ITEMIDLIST) As Long
   ''/------------------------------------------
   Private Declare Function GetSaveFileName Lib "comdlg32.dll" Alias "GetSaveFileNameA"
   (pOpenfilename As OPENFILENAME) As Long
   Private Declare Function GetOpenFileName Lib "comdlg32.dll" Alias "GetOpenFileNameA"
   (pOpenfilename As OPENFILENAME) As Long
   Private Declare Function CHOOSECOLOR Lib "comdlg32.dll" Alias "ChooseColorA"
   (pChoosecolor As CHOOSECOLOR) As Long
   Private Declare Function WNetConnectionDialog Lib "mpr.dll" (ByVal hWnd As Long,
   ByVal dwType As Long) As Long
   Private Declare Function CHOOSEFONT Lib "comdlg32.dll" Alias "ChooseFontA"
   (pChooseFont As CHOOSEFONT) As Long
   ''/=======显示断开网络资源对话框============
   Private Declare Function WNetDisconnectDialog Lib "mpr.dll" _
   (ByVal hWnd As Long, ByVal dwType As Long) As Long
   ''/================================================================================
   Private Declare Sub CoTaskMemFree Lib "ole32.dll" (ByVal pv As Long)
   Private Declare Function SHBrowseForFolder Lib "shell32.dll" Alias
   "SHBrowseForFolderA" _
   (lpBrowseInfo As BROWSEINFO) As Long
   Private Type BROWSEINFO
   hOwner As Long
   pidlRoot As Long
   pszDisplayName As String
   lpszTitle As String
   ulFlags As Long
   lpfn As Long
   lParam As Long
   iImage As Long
   End Type
   ''/结构说明: _
   hOwner 调用这个对话框的窗口的句柄 _
   pidlRoot 指向你希望浏览的最上面的文件夹的符列表 _
   pszDisplayName 用于保存用户所选择的文件夹的显示名的缓冲区 _
   lpszTitle 浏览对话框的标题 _
   ulFlags 决定浏览什么的标志(见下) _
   lpfn 当事件发生时对话框调用的回调函数的地址.可将它设定为NULL _
   lparam 若定义了回调函数,则为传递给回调函数的值 _
   iImage As Long 保存所选文件夹映像索引的缓冲区 _
   ulFlags参数(见下:)
   Private Const BIF_RETURNONLYFSDIRS = &H1 ''仅允许浏览文件系统文件夹
   Private Const BIF_DONTGOBELOWDOMAIN = &H2 ''利用这个值强制用户仪在网上邻居的域级别
   中
   Private Const BIF_STATUSTEXT = &H4 ''在选择对话中显示状态栏
   Private Const BIF_RETURNFSANCESTORS = &H8 ''返回文件系统祖先
   Private Const BIF_BROWSEFORCOMPUTER = &H1000 ''允许浏览计算机
   Private Const BIF_BROWSEFORPRINTER = &H2000 ''允许游览打印机文件夹
   ''/--------------------------------------------------------------------------------
   Dim FontInfo As SmFontAttr ''字体
   ''/--------------------------------------------------------------------------------
   Private Function GetFolderValue(wIdx As Integer) As Long
   If wIdx < 2 Then
   GetFolderValue = 0
   ElseIf wIdx < 12 Then
   GetFolderValue = wIdx
   Else
   GetFolderValue = wIdx + 4
   End If
   End Function
   ''
   Private Function GetReturnType() As Long
   Dim dwRtn As Long
   dwRtn = dwRtn Or BIF_RETURNONLYFSDIRS
   GetReturnType = dwRtn
   End Function
   ''
   ''文件夹选择对话框
   ''函数:SaveFile
   ''参数:Title 设置对话框的标签.
   '' hWnd 调用此函数的HWND
   '' FolderID SmBrowFolder枚举(默认:我的电脑).
   ''返回值:String 文件夹路径.
   ''例子:
   Public Function GetFolder(Optional Title As String, _
   Optional hWnd As Long, _
   Optional FolderID As SmBrowFolder = MyComputer) As String
   Dim Bi As BROWSEINFO
   Dim Pidl As Long
   Dim Folder As String
   Dim IDL As ITEMIDLIST
   Dim nFolder As Long
   Dim ReturnFol As String
   Dim Fid As Integer
   Fid = FolderID
   Folder = String$(255, Chr$(0))
   With Bi
   .hOwner = hWnd
   nFolder = GetFolderValue(Fid)
   If SHGetSpecialFolderLocation(ByVal hWnd, ByVal nFolder, IDL) = NoError Then
   .pidlRoot = IDL.mkid.cb
   End If
   .pszDisplayName = String$(MAX_PATH, Fid)
   If Len(Title) > 0 Then
   .lpszTitle = Title & Chr$(0)
   Else
   .lpszTitle = "请选择文件夹:" & Chr$(0)
   End If
   .ulFlags = GetReturnType()
   End With
   Pidl = SHBrowseForFolder(Bi)
   ''/返回所选的文件夹路径
   If SHGetPathFromIDList(ByVal Pidl, ByVal Folder) Then
   ReturnFol = Left$(Folder, InStr(Folder, Chr$(0)) - 1)
   If Right$(Trim$(ReturnFol), 1) <> "\" Then ReturnFol = ReturnFol & "\"
   GetFolder = ReturnFol
   Else
   GetFolder = ""
   End If
   End Function
   ''
   ''文件保存对话框
   ''函数:SaveFile
   ''参数:WinHwnd 调用此函数的HWND
   '' BoxLabel 设置对话框的标签.
   '' StartPath 设置初始化路径.
   '' FilterStr 文件过滤.
   '' Flag 标志.(参考MSDN)
   ''返回值:String 文件名.
   ''例子:
   Public Function SaveFile(WinHwnd As Long, _
   Optional BoxLabel As String = "", _
   Optional StartPath As String = "", _
   Optional FilterStr = "*.*|*.*", _
   Optional Flag As Variant = &H4 Or &H200000) As String
   Dim Rc As Long
   Dim pOpenfilename As OPENFILENAME
   Dim Fstr1() As String
   Dim Fstr As String
   Dim I As Long
   Const MAX_Buffer_LENGTH = 256
   On Error Resume Next
   If Len(Trim$(StartPath)) > 0 Then
   If Right$(StartPath, 1) <> "\" Then StartPath = StartPath & "\"
   If Dir$(StartPath, vbDirectory + vbHidden) = "" Then
   StartPath = App.Path
   End If
   Else
   StartPath = App.Path
   End If
   If Len(Trim$(FilterStr)) = 0 Then
   Fstr = "*.*|*.*"
   End If
   Fstr1 = Split(FilterStr, "|")
   For I = 0 To UBound(Fstr1)
   Fstr = Fstr & Fstr1(I) & vbNullChar
   Next
   ''/--------------------------------------------------
   With pOpenfilename
   .hwndOwner = WinHwnd
   .hInstance = App.hInstance
   .lpstrTitle = BoxLabel
   .lpstrInitialDir = StartPath
   .lpstrFilter = Fstr
   .nFilterIndex = 1
   .lpstrDefExt = vbNullChar & vbNullChar
   .lpstrFile = String(MAX_Buffer_LENGTH, 0)
   .nMaxFile = MAX_Buffer_LENGTH - 1
   .lpstrFileTitle = .lpstrFile
   .nMaxFileTitle = MAX_Buffer_LENGTH
   .lStructSize = Len(pOpenfilename)
   .flags = Flag
   End With
   Rc = GetSaveFileName(pOpenfilename)
   If Rc Then
   SaveFile = Left$(pOpenfilename.lpstrFile, pOpenfilename.nMaxFile)
   Else
   SaveFile = ""
   End If
   End Function
   ''
   ''文件打开对话框
   ''函数:OpenFile
   ''参数:WinHwnd 调用此函数的HWND
   '' BoxLabel 设置对话框的标签.
   '' StartPath 设置初始化路径.
   '' FilterStr 文件过滤.
   '' Flag 标志.(参考MSDN)
   ''返回值:String 文件名.
   ''例子:
   Public Function OpenFile(WinHwnd As Long, _
   Optional BoxLabel As String = "", _
   Optional StartPath As String = "", _
   Optional FilterStr = "*.*|*.*", _
   Optional Flag As Variant = &H8 Or &H200000) As String
   Dim Rc As Long
   Dim pOpenfilename As OPENFILENAME
   Dim Fstr1() As String
   Dim Fstr As String
   Dim I As Long
   Const MAX_Buffer_LENGTH = 256
   On Error Resume Next
   If Len(Trim$(StartPath)) > 0 Then
   If Right$(StartPath, 1) <> "\" Then StartPath = StartPath & "\"
   If Dir$(StartPath, vbDirectory + vbHidden) = "" Then
   StartPath = App.Path
   End If
   Else
   StartPath = App.Path
   End If
   If Len(Trim$(FilterStr)) = 0 Then
   Fstr = "*.*|*.*"
   End If
   Fstr = ""
   Fstr1 = Split(FilterStr, "|")
   For I = 0 To UBound(Fstr1)
   Fstr = Fstr & Fstr1(I) & vbNullChar
   Next
   With pOpenfilename
   .hwndOwner = WinHwnd
   .hInstance = App.hInstance
   .lpstrTitle = BoxLabel
   .lpstrInitialDir = StartPath
   .lpstrFilter = Fstr
   .nFilterIndex = 1
   .lpstrDefExt = vbNullChar & vbNullChar
   .lpstrFile = String(MAX_Buffer_LENGTH, 0)
   .nMaxFile = MAX_Buffer_LENGTH - 1
   .lpstrFileTitle = .lpstrFile
   .nMaxFileTitle = MAX_Buffer_LENGTH
   .lStructSize = Len(pOpenfilename)
   .flags = Flag
   End With
   Rc = GetOpenFileName(pOpenfilename)
   If Rc Then
   OpenFile = Left$(pOpenfilename.lpstrFile, pOpenfilename.nMaxFile)
   Else
   OpenFile = ""
   End If
   End Function
   ''
   ''颜色对话框
   ''函数:GetColor
   ''参数:
   ''返回值:Long,用户所选择的颜色.
   ''例子:
   Public Function GetColor() As Long
   Dim Rc As Long
   Dim pChoosecolor As CHOOSECOLOR
   Dim CustomColor() As Byte
   With pChoosecolor
   .hwndOwner = 0
   .hInstance = App.hInstance
   .lpCustColors = StrConv(CustomColor, vbUnicode)
   .flags = 0
   .lStructSize = Len(pChoosecolor)
   End With
   Rc = CHOOSECOLOR(pChoosecolor)
   If Rc Then
   GetColor = pChoosecolor.rgbResult
   Else
   GetColor = -1
   End If
   End Function
   ''
   ''显示映射网络驱动器对话框
   ''函数:ConnectDisk
   ''参数:hWnd 调用此函数的窗口HWND.(ME.HWN)
   ''返回值:=0,成功,<>0,失败.
   ''例子:
   Public Function ConnectDisk(Optional hWnd As Long) As Long
   Dim Rc As Long
   If IsNumeric(hWnd) Then
   Rc = WNetConnectionDialog(hWnd, RESOURCETYPE_DISK)
   Else
   Rc = WNetConnectionDialog(0, RESOURCETYPE_DISK)
   End If
   ConnectDisk = Rc
   End Function
   ''
   ''显示映射网络打印机对话框
   ''函数:ConnectPrint
   ''参数:hWnd 调用此函数的窗口HWND.(ME.HWN)
   ''返回值:=0,成功,<>0,失败.
   ''例子:
   Public Function ConnectPrint(Optional hWnd As Long) As Long
   Dim Rc As Long
   If IsNumeric(hWnd) Then
   Rc = WNetConnectionDialog(hWnd, RESOURCETYPE_PRINT)
   Else
   Rc = WNetConnectionDialog(0, RESOURCETYPE_PRINT)
   End If
   End Function
   ''
   ''断开映射网络驱动器对话框
   ''函数:DisconnectDisk
   ''参数:hWnd 调用此函数的窗口HWND.(ME.HWN)
   ''返回值:=0,成功,<>0,失败.
   ''例子:
   Public Function DisconnectDisk(Optional hWnd As Long) As Long
   Dim Rc As Long
   If IsNumeric(hWnd) Then
   Rc = WNetDisconnectDialog(hWnd, RESOURCETYPE_DISK)
   Else
   Rc = WNetDisconnectDialog(0, RESOURCETYPE_DISK)
   End If
   End Function
   ''
   ''断开映射网络打印机关话框
   ''函数:DisconnectPrint
   ''参数:hWnd 调用此函数的窗口HWND.(ME.HWN)
   ''返回值:=0,成功,<>0,失败.
   ''例子:
   Public Function DisconnectPrint(Optional hWnd As Long) As Long
   Dim Rc As Long
   If IsNumeric(hWnd) Then
   Rc = WNetDisconnectDialog(hWnd, RESOURCETYPE_PRINT)
   Else
   Rc = WNetDisconnectDialog(0, RESOURCETYPE_PRINT)
   End If
   End Function
   ''
   ''字体选择对话框
   ''函数:GetFont
   ''参数:WinHwnd 调用此函数的窗口HWND.(ME.HWN)
   ''返回值:SmFontAttr 结构变量.
   ''例子:
   '' Dim mDialog As New SmDialog
   '' Dim mFontInfo As SmFontAttr
   '' mFontInfo = mDialog.GetFont(Me.hWnd)
   '' Set mDialog = Nothing
   Public Function GetFont(WinHwnd As Long) As SmFontAttr
   Dim Rc As Long
   Dim pChooseFont As CHOOSEFONT
   Dim pLogFont As LOGFONT
   With pLogFont
   .lfFaceName = StrConv(FontInfo.FontName, vbFromUnicode)
   .lfItalic = FontInfo.FontItalic
   .lfUnderline = FontInfo.FontUnderLine
   .lfStrikeOut = FontInfo.FontStrikeou
   End With
   With pChooseFont
   .hInstance = App.hInstance
   If IsNumeric(WinHwnd) Then .hwndOwner = WinHwnd
   .flags = CF_BOTH + CF_INITTOLOGFONTSTRUCT + CF_EFFECTS + CF_NOSCRIPTSEL
   If IsNumeric(FontInfo.FontSize) Then .iPointSize = FontInfo.FontSize *
   10
   If FontInfo.FontBod Then .nFontType = .nFontType + BOLD_FONTTYPE
   If IsNumeric(FontInfo.FontColor) Then .rgbColors = FontInfo.FontColor
   .lStructSize = Len(pChooseFont)
   .lpLogFont = VarPtr(pLogFont)
   End With
   Rc = CHOOSEFONT(pChooseFont)
   If Rc Then
   FontInfo.FontName = StrConv(pLogFont.lfFaceName, vbUnicode)
   FontInfo.FontName = Left$(FontInfo.FontName, InStr(FontInfo.FontName,
   vbNullChar) - 1)
   With pChooseFont
   FontInfo.FontSize = .iPointSize / 10 ''返回字体大
   小
   FontInfo.FontBod = (.nFontType And BOLD_FONTTYPE) ''返回是/否黑
   体
   FontInfo.FontItalic = (.nFontType And ITALIC_FONTTYPE) ''是/否斜体
   FontInfo.FontUnderLine = (pLogFont.lfUnderline) ''是/否下划线
   FontInfo.FontStrikeou = (pLogFont.lfStrikeOut)
   FontInfo.FontColor = .rgbColors
   End With
   End If
   GetFont = FontInfo
   End Function
   ''
   ''文件打开.(带预览文件功能)
   ''函数:BrowFile
   ''参数:Pattern 文件类型字符串,StarPath 开始路径,IsBrow 是否生成预览
   ''返回值:[确定] 文件路径.[取消] 空字符串
   ''例:Me.Caption =
   FileBrow.BrowFile("图片文件|*.JPG;*.GIF;*.BMP|媒体文件|*.DAT;*.MPG;*.SWF;*.MP3;*.MP2
   ")
   Public Function BrowFile(Optional Pattern As String = "*,*|*.*", _
   Optional StarPath As String = "C:\", _
   Optional IsBrow As Boolean = True) As String
   On Error Resume Next
   If Len(Trim$(Pattern)) = 0 Then Pattern = "*.*|*.*"
   P_FilePart = Pattern
   P_StarPath = StarPath
   P_IsBrow = IsBrow
   FrmBrowFile.Show 1
   BrowFile = P_FullFileName
   End Function
   ''
   ''显示网上邻居
   ''函数:ShowNetWork
   ''参数:FrmCap 窗口标题,Labction 提示标签名.
   ''返回值:[确定] 所选计算机名称.[取消] 空字符串.
   ''例:
   Public Function ShowNetWork(Optional FrmCap As String = "网上邻居", _
   Optional Labction As String = "选择计算机名称.") As
   String
   ShowLan.Hide
   ShowLan.Caption = FrmCap
   ShowLan.LabNNCaption = Labction
   ShowLan.Show 1
   ShowNetWork = P_NetReturnVal
   End Function

转载于:https://www.cnblogs.com/bennylam/archive/2009/10/28/1591498.html

VB用API实现各种对话框(总结)(转载)相关推荐

  1. Vb.net/VB 声明API函数实现父窗口功能

    回想第一次敲机房收费.自己调用了api函数实现了父窗口及其子窗口最小化的功能.现在再次遇到,自己就在思考,能不能继续使用API函数呢?答案当然是Of Course! 事实上细致看两者并没有多大的差别. ...

  2. VB中API函数的调用

    1.API函数       API的英文全称(Application Programming Interface),WIN32 API也就是MicrosoftWindows32位平台的应用程序编程接口 ...

  3. Vb.net/VB 声明API功能父窗口功能

    回想第一次敲房费,他说自己是api函数实现父窗口及其子窗口最小化的功能.现在再次遇到,自己就在思考,能不能继续使用API函数呢?答案当然是Of Course! 事实上细致看两者并没有多大的差别,先看看 ...

  4. VB中用API实现文件拖放

    借助API函数CallWindowProc.DragAcceptFiles.DragQueryFile.DragFinish同样可以实现文件从资源管理器EXPLORE到应用程序的拖放,另一种方法是采用 ...

  5. VB用API控制输入法状态

    在VB中,某些控件具有输入焦点,却没有IMEMode属性,比如RichTextBox,为了方便在这些控件中控制输入法状态,俺编写了这个函数,代码如下: 代码如下: Option Explicit '* ...

  6. api hook 例子,截获封包(转载)

    api hook 例子,截获封包(转载) api hook 例子,截获封包(转载) 有时候我们需要对其它应用程序发送和接收的网络数据进行拦截,比如要对IE发送的HTTP头进行分析,得到请求的地址等.这 ...

  7. C#调用API向外部程序发送数据(转载)

    转自:http://www.cnblogs.com/trieagle/p/3811375.html C#调用API向外部程序发送数据 最近有可能要做一个项目.在项目中有这么一个功能,在A程序中调用B程 ...

  8. windows api打开文件对话框

    用windows api 写打开文件对话框主要使用OPENFILENAME ,GetOpenFileName, GetSaveFileName; 1.OPENFILENAME 结构体介绍:要使用Get ...

  9. Win32 API 浏览目录对话框示例

    代码: #include <windows.h> #include<Shlobj.h>int APIENTRY WinMain(HINSTANCE hInstance,HINS ...

最新文章

  1. 使用 UIBezierPath 进行简单的图形绘制
  2. dataframe按某字段排序
  3. 中国互联网哪来的所谓“所谓”的创新?“狗日”的腾讯究竟动了谁的蛋糕?...
  4. 看门狗(Watch Dog)是嵌入式系统中一种常用的保证系统可靠性的技术,()会产生看门狗中断。【详细!小白也能看懂!】
  5. linux性能分析常用的命令
  6. 前端学习(1046):todolist删除数据1
  7. 中国搜 为人民服务 整合本地搜索引擎 出差旅游搜索国外国内当地服务网站 快速进行本地资源查找利用...
  8. VMWare学习总结(1)——Centos7安装完毕后无法联网的解决方法
  9. 自学python考哪些证书-给零基础学习Python的小伙伴的四个建议
  10. 第二次项目冲刺(Beta阶段)--第五天
  11. 微信红包工具服务器,微信红包 是怎么扛住全球用户的!
  12. 汽车DTC故障码格式解析
  13. 应用程序无法正常启动(0xc0150002)
  14. linux编译poco静态库,Xcode 编译poco c++静态库
  15. html css表格制作,CSS 表格(Table)
  16. 2021-10-01 REDIS全网最超级详细
  17. 牛啊,全国DNS服务器IP地址都在这里了
  18. 联想 Thinkpad SL410使用体验
  19. Refused to apply style from ‘http://localhost:8080/iconfont.css‘ because its MIME type (‘text/html‘
  20. consul命令行查看服务_Consul 命令行最全文档

热门文章

  1. python 入门学习
  2. C++ 判断系统大小字节序
  3. openstack placement 组件作用理解
  4. JavaMail--发送html邮件
  5. 照相机滤镜使用,优化解码和滤镜导致的预览卡屏现象
  6. 众多SEO专家集体盛赞
  7. 确认要从桌面删除计算机,确定要从界面上删除 我的电脑 ...
  8. cadence 旋转快捷键_cadence原理图快捷键
  9. 中文整合包_MIMOSA2: 基于微生物组和代谢组数据的整合分析
  10. npm install引起的项目崩溃(This is probably not a problem with npm,there is likely additional logging outp)