大约有 14,000 项符合查询结果(耗时:0.0138秒) [XML]

https://bbs.tsingfun.com/thread-1053-1-1.html 

App Inventor 2在不同屏幕之间传递变量 - App Inventor 2 中文网 - 清泛I...

...始值”控制块,如下: 屏幕1代码如下: 屏幕2代码如下: 如果有两个变量,该如何操作?引用: 6921孙 发表于 2023-01-28 20:23 如果有两个变量,该如何操作? 两种思路: 1、多个变量可以用逗号拼在一...
https://bbs.tsingfun.com/thread-2482-1-1.html 

AppInventor2使用 MaterialIcons 图标字体,快捷展示专业图标 - App应用开...

平时布局话,如果要使用图标,一般需要去找 png 图片,且透明背景。如果需要根据不同常见图标进行变色话,就需要准备多张不同样式图标,还要考虑图片分辨率等等因素,非常麻烦。 这时,如果我们使用图标...
https://www.tsingfun.com/it/cpp/1560.html 

获取控件几种方法总结 - C/C++ - 清泛网 - 专注C/C++及内核技术

获取控件几种方法总结最简单直观:CString str;GetDlgItemText(IDC_EDIT_TEST, str);int d=atoi(str.GetBuffer(0));更优雅:.h:int m_editTest;.cpp:v...最简单直观: CString str; GetDlgItemText(IDC_EDIT_TEST, str); int d=atoi(str.GetBuffer(0)); 更优雅...
https://www.tsingfun.com/it/da... 

Ora-00257 错误处理一列 - 数据库(内核) - 清泛网 - 专注C/C++及内核技术

...处理一列sqlplus assysdba报错ORA-12162切回系统确认系统当前ORACLE_HOME和ORACLE_SID环境变量[oracle@asdlabdb01~]$echo$ORACLE_HOME空[oracle...sqlplus /as sysdba 报错ORA-12162 切回系统 确认系统当前ORACLE_HOME和ORACLE_SID环境变量 [oracle@asdlabdb01 ~]$ ...
https://bbs.tsingfun.com/thread-1376-1-1.html 

HC-05 蓝牙模块开发 - 创客硬件开发 - 清泛IT社区,为创新赋能!

它有六个引脚,引脚作用如下: 通过厂商App连接串口测试,发现HC-05模块是经典蓝牙2.0,并不支持蓝牙5.0(低功耗BLE),它需要配对码进行配对,App Inventor 2 中使用“蓝牙客户端”组件,而非BLE拓展,必须在手机设置中...
https://bbs.tsingfun.com/thread-1554-1-1.html 

APP 添加新房间开关 - App Inventor 2 中文网 - 清泛IT社区,为创新赋能!

APP 在使用中 如果想添加新房间开关控制,在前期制作APP 时,如何制作这一部分功能?我理解,就是新增一个设备连接成功即可,然后把它归类到某个房间。房间可以添加多个,维护设备和房间一个映射关系。意思就是 ...
https://bbs.tsingfun.com/thread-2559-1-1.html 

电脑上文件如何拷贝到模拟器中? - App应用开发 - 清泛IT社区,为创新赋能!

Q:电脑上文件如何拷贝到模拟器中? A:文件拷贝具体步骤如下(这里以mumu模拟器为例展示,其他模拟器也都是大同小异):模拟器菜单,文件传输功能:打开模拟器与电脑共享目录:将想要传输文件拷贝到共享目...
https://stackoverflow.com/ques... 

Preserve line breaks in angularjs

... improvement that even the accepted answer does not have. <div class="angular-with-newlines" ng-repeat="item in items"> {{item.description}} </div> /* in the css file or in a style block */ .angular-with-newlines { white-space: pre-wrap; } This will use newlines and whitespace...
https://stackoverflow.com/ques... 

How to match “anything up until this sequence of characters” in a regular expression?

Take this regular expression: /^[^abc]/ . This will match any single character at the beginning of a string, except a, b, or c. ...
https://www.tsingfun.com/it/cpp/707.html 

汇编常用寄存器及指令基础总结 - C/C++ - 清泛网 - 专注C/C++及内核技术

... DH&DL=DX:数据寄存器,常用于数据传递 为运用所有内存空间,8086设定四个段寄存器,专门用来保存段地址: CS(Code Segment):代码段寄存器 DS(Data Segment):数据段寄存器 SS(Stack Segment):堆栈段寄存器 ES(Extra ...