************************************************************** mysql5.7.19的特有问题: mysql server安装需要的环境依赖: Microsoft Visual C++ 2013 Redistributable(X64) - 12.0.40660 需先安装这个才行 *************************************************************
2021-06-22 11:59:43 6.66MB mysql5.7.19
1
Microsoft Visual C++ 2008速成版 SP1
2021-06-21 22:40:44 2.61MB C++ 2008速成版
1
用Microsoft Visual C++ 6.0做的学生成绩管理系统,里面包含源文件,测试数据,Word报告以及各类关联文件
2021-06-19 14:23:29 315KB Microsoft Visual C++ 6.0
1
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools
2021-06-17 16:21:09 2.78MB Django LDAP pycharm Visual
1
MSVCR100.dll Microsoft Visual C++ 2010 Redistributable Package (x64)
2021-06-16 18:29:23 5.41MB MSVCR100.dll
1
Microsoft Visual C++ 2015-2019 运行库合集,包含32位64位,解决缺失dll包问题。
Microsoft Visual C++ 2013 Redistributable (x64) ,window的基础组件,安装mysql等应用所需的必要基础组件
2021-06-16 10:06:14 6.66MB C++2013
1
版本:11.0.61030.0 Microsoft Visual C++ 2012 SP1 Redistributable Package (x64) 安装在未安装 Visual C++ 2012 的计算机上运行使用 Visual C++ 开发的 64 位应用程序所需的 Visual C++ 库的运行时组件。 此软件包安装 C Runtime (CRT)、Standard C++、ATL、M FC、OpenMP 和 MSDIA 库 的运行时组件。对于支持并行部署模式的库(CRT、SCL、ATL、MFC 和 OpenMP),这些运行时组件安装在支持并行程序集的 Windows 操作系统版本的本
2021-06-15 09:24:52 6.86MB Visual C++2012 Update4 X64
1
使用python3安装eth环境时遇到安装问题,最棘手就是异常提示,试了很多种方法都不行,这是最终且最好的解决方案
2021-06-14 22:00:18 248KB python VisualC++14.0 eth
1
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace XKGLXT { public partial class Login : Form { Model.User mdl_ui = new Model.User(); BLL.User bll_ui = new BLL.User(); Model.Student mdl_st = new Model.Student(); BLL.Student bll_st = new BLL.Student(); BLL.Right bll_rt = new BLL.Right(); public Login() { InitializeComponent(); } private void BtnLogin_Click(object sender, EventArgs e) { //MessageBox.Show(cbxRole.SelectedIndex.ToString()); if (cbxRole.Text=="管理员") { mdl_ui.UserID = TxtUser.Text; mdl_ui.Pwd = TxtPass.Text; Model.Login.UserNo = TxtUser.Text; if (bll_ui.login(mdl_ui) > 0) { Model.Login.flag = true; MessageBox.Show("登录成功"); this.Close(); } else { Model.Login.flag = false; MessageBox.Show("用户名或密码错误!"); } } if (cbxRole.Text == "教师") { mdl_ui.UserID = TxtUser.Text; mdl_ui.Pwd = TxtPass.Text; Model.Login.UserNo = TxtUser.Text; if (bll_ui.login(mdl_ui) > 0) { Model.Login.flag = true; MessageBox.Show("登录成功"); this.Close(); } else { Model.Login.flag = false; MessageBox.Show("用户名或密码错误!"); } } if(cbxRole.Text=="学生") { mdl_st.StuNo = TxtUser.Text; mdl_st.Pwd = TxtPass.Text; Model.Login.StuNo =
2021-06-13 22:29:33 2.71MB Microsoft Visual Studio 2010
1