smarthub.sha
smart_hub2.png
code
#hws
...
public MyForm(string[] args) {
...
MessageBox.Show("");
MessageBox.Show("");
}
private void onClick5(Object sender, EventArgs args) { // Button5:"Push"
Hub2("HiAsm Studio!");
}
private void Hub2(string data) {
MessageBox.Show(data);
MessageBox.Show(data);
}
private void onClick6(Object sender, EventArgs args) { // Button6:"Push"
Hub2("Hello World!");
}
...