我需要的是创建一个具有像 full_name 和father_name 这样的文本框的应用程序。
现在我想在像 ms-word 这样的 textox 字段中输入印地语。
我不知道该怎么办。
我在视觉基础方面更强大
我正在使用此代码在 sql 中插入值
Try
connection.Open()
cmd1 = New SqlCommand("INSERT INTO admin_users(id, username, password, is_active) VALUES('" + id + "', '" + username.Text + "', '" + password.Text + "', '" + is_active_set + "' )", connection)
ra = cmd1.ExecuteNonQuery()
MsgBox("Category Added!!")
Catch ex As Exception
MsgBox("Category Failed to add!!")
End Try
请给我一些想法,我该怎么做。