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

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

怎么在订阅发布主体内以16位数据发送 modbus 报文 - App Inventor 2 拓展 -...

...不出数据,啥原因,可以出一个相对完善点的解决方案
https://bbs.tsingfun.com/thread-1849-1-1.html 

App Inventor 2 怎么做倒计时,时倒计时,分倒计时,秒倒计时怎么做? - A...

...1小时,启动后开始显示倒计时?,客位大老能做个实例,谢谢?https://www.fun123.cn/reference/components/guide/Clock.html 知识点都在这里,代码需要你自己写!(^◡^)っ✎
https://bbs.tsingfun.com/thread-1850-1-1.html 

App Inventor 2 界面文本怎么很难对齐呢? - App应用开发 - 清泛IT社区,为创新赋能!

...一般使用表格布局,左右就能对齐。你说垂直没有对齐?可以尝试调整一下文本框的高度。
https://bbs.tsingfun.com/thread-1995-1-1.html 

如何调整超出屏幕部分的布局 - App应用开发 - 清泛IT社区,为创新赋能!

如何调整超出屏幕部分的布局 上图中,需要调整哪部分布局?能描述详细一些,谢谢
https://bbs.tsingfun.com/thread-2044-1-1.html 

如何让底部导航栏固定不随屏幕滑动而滑动呢? - App Inventor 2 中文网 - ...

...直滚动布局实现: 有点没看太明白,需要下载那个拓展App Inventor 2  发表于 2024-11-06 10:30 垂直滚动布局实现: 其他内容用了垂直滚动布局,但导航栏还会跟着滑动
https://bbs.tsingfun.com/thread-2047-1-1.html 

BLE数据收发 20个字节的限制问题 - 创客硬件开发 - 清泛IT社区,为创新赋能!

请问BLE插件只支持20个字节的数据接收与发送,我尝试超过20个字节就会自动忽略掉后面的字节
https://www.tsingfun.com/it/cpp/1528.html 

sizeof、strlen简单总结 - C/C++ - 清泛网 - 专注C/C++及内核技术

sizeof、strlen简单总结sizeofstrlenconst char* p4字符串长度std::string4字符串长度"......"字符串长度+1 (' 0')字符串长度 sizeof strlen const char* p 4 字符串长度 std::string 4 字符串长度 "......" 字符串长度+1 ('\0')...
https://www.tsingfun.com/it/cpp/2085.html 

MFC中ComboBox控件的使用 - C/C++ - 清泛网 - 专注C/C++及内核技术

... nStartAfter,LPCTSTR lpszItem )//可以在当前所有行中查找指定的字符传的位置,nStartAfter指明从那一行开始进行查找。 int SelectString( intnStartAfter, LPCTSTR lpszItem )//可以选中包含指定字符串的行 二、如何控制Combo Box的下拉长度 1,首先...
https://www.tsingfun.com/it/cpp/1514.html 

std::string截取字符串,截取ip:port - C/C++ - 清泛网 - 专注C/C++及内核技术

std::string截取字符串,截取ip:portstd::string ip("127.0.0.1:8888");int index = ip.find_last_of(':'); 获取ipip.substr(0, index).c_str(); 获取portip.substr(index + 1).c_str();std::string ip("127.0.0.1:8888"); int index = ip.find_last_of(':'); // 获取ip ip.substr(0, index).c_str();...
https://bbs.tsingfun.com/thread-1611-1-1.html 

App Inventor如何取文本每一个字符进行运算? - App Inventor 2 中文网 - ...

问:App Inventor如何取文本每一个字符进行运算? 答: [hide]1、拿出文本的长度,进行循环,然后用文本.截取方法,拿出每一个字符,比如某个字母'a'。 文档:https://www.fun123.cn/reference/blocks/text.html#segment 2、要看具体的每个...