从命令行将参数传递给bool函数

时间:2016-01-26 17:45:09

标签: c++ arguments

我是c ++的新手,我试图在网上寻求帮助,但没有成功, 我正在尝试将参数传递给CreateProfileWithIProfAdmin函数,我想这是我无法传递args的原因,因为它是一个bool类型函数,它只接受布尔值,但是,我试图添加{{1 {}}到(int argc, char *argv[])函数,

你可以在函数内部看到szProfile,szMailbox等的变量。我的目标是直接从命令行传递这些变量args1 args2等。

我需要做些什么才能将char args传递给函数?

我对c ++很新,非常感谢任何帮助,谢谢......

main()

1 个答案:

答案 0 :(得分:1)

我强烈建议您抓一本关于C ++的书。

Public string panda(string lola = @"Server=.\SQLEXPRESS; DataBase=panda; Integrated Security=true;")
{
      SqlConnection panda = new SqlConnection(lola);
      panda.Open();
      return lola;         
}

public string Show_details(string Command = "Select name From panda")
{
     SqlConnection cn = new SqlConnection(panda());
     SqlCommand Show;
     SqlDataReader read;

     Show = new SqlCommand(Command, cn);
     cn.Open();

     read = Show.ExecuteReader();

     while (read.Read())
     {
        listBox1.Items.Add(read["name"]);
     }

     return Command;
}

private void button3_Click(object sender, EventArgs e)
{
   Show_details();
}

我在那里写的东西有点疯狂。这肯定是不安全的。