我在visual basic 2015中编写程序以将用户添加到学校服务器。我有一些不可编辑的文本框,用于显示来自其他文本框的输入。听起来比这更复杂,但是文本框只显示您的条目,因此可以完成很多而不必加倍输入。当输入在输入文本框上更改时,它会更新到显示。但是,我无法检测到退格输入以更新显示的内容。有没有办法做到这一点? 这是代码示例。
$yourApiSecret = "myApiSecret"; // Available in Ionic Dashboard
$androidAppId = "myAndroidAppId"; // Available in Ionic Dashboard
$api_token = "my.api.token"; // Created in Ionic Dashboard
$data = array(
"tokens" => "send_to_all",
"profile" => "my_created_profile", //Created in Ionic Dashboard
"send_to_all" => true,
"notification" => array(
'title' => $title,
'message' => $message,
)
);
$data_string = json_encode($data);
$ch = curl_init('https://api.ionic.io/push/notifications');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER,
array(
'Content-Type: application/json',
'X-Ionic-Application-Id: '.$androidAppId,
'Content-Length: ' . strlen($data_string),
'Authorization: Bearer '.$api_token
)
);
$result = curl_exec($ch);
多年来我没有编程,忘记了很多事情。我很感激你能给我的任何帮助。
我正在使用visual studio 2015
答案 0 :(得分:0)
使用KeyDown事件。这将捕获任何类型,退格键或箭头键移动。