本文介绍了减法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 这是我减去按钮的代码 mdcurrentresult - = txtresult.Tex txtresult.Text = mdcurrentresult.ToString( mbOperationbuttonPressed = Tru 现在这几乎可以减去并获得正确答案,除了它将所有内容都变为负数之外的数字除了数字之外它会变成正数。 例如 6-4 = -2应该等于 4-6 = 2应该等于 - 我可以对代码做些什么让它正常工作 另外我如何使用keypress以及我在哪里放入代码以及如何使其工作 thanx everyone 解决方案 嗨汤姆, 我不直接看到它然而这不是真正好的代码。 你可能经常在这个新闻组看到这里使用后期绑定, 这使得它有点不可预测。 如果在类上方设置Option String,则会出现错误。 mdcurrentresult = mdcurrentresult - Cint(txtresult.Text)''假设你在哪里 使用整数 txtresult.Text = mdcurrentresult .ToString() mbOperationbuttonPressed = True 当您使用VS.net并点击设计器中的按钮时,它将为 您创建了一个点击事件。不是最好的,但是对于这个可用的 按键你可以在你的代码中选择下拉框中的按钮上面的然后在下面的rigth下拉框中的按键事件同一行。 我希望这有帮助吗? Cor " COR'QUOT; < no*@non.com> schrieb This is the code ive got for a subtract buttonmdcurrentresult -= txtresult.Textxtresult.Text = mdcurrentresult.ToString(mbOperationbuttonPressed = TruNow this almost works it subtracts and gets the right answer apart from the fact that it turns everything into a negative number except numbers which are meant to be minus which it turns into positives.for exampl6-4= -2 should equal4-6= 2 should equal -What can I do to the code to make it work properlyAlso how do I use keypress and where do I put in the code for it and how do I make it workthanx everyone 解决方案Your wife might have Option String On, but not VB.NET;-)))--Armin 这篇关于减法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-15 07:48