NI LabVIEW,CVI,数据采集等产品讨论区

取消
显示结果 
搜索替代 
您的意思是: 

如何把字符串数组内容转移到一个列表里,数组一个单元格内容对应一个列表项

请教高人,如何把字符串数组内容转移到一个列表里,数组一个单元格内容对应一个列表项,我原先把十六进制字符串换为字节数组,两者可以连起来,但是列表内容却还是空的,不知道要怎么处理
0 项奖励
1 条消息(共 5 条)
3,915 次查看

hi...

 

Why Hex String?

 

If you mean Listbox, all you need to a 1D String Array wired to the Listbox's property: ItemNames

Ian F
Since LabVIEW 5.1... 7.1.1... 2009, 2010, 2014
依恩与LabVIEW
LVVILIB.blogspot.com
0 项奖励
2 条消息(共 5 条)
3,898 次查看
thank you!I just solve it today^_^
0 项奖励
3 条消息(共 5 条)
3,895 次查看
我还想问一下,一个程序里case结构比较多,且每个case的分支比较多会不会影响程序整体执行速度?如果会要怎么优化程序结构?
0 项奖励
4 条消息(共 5 条)
3,894 次查看

Why do you need that many case结构 within a loop?

If you need two or more cases to run "at the same time", try multiple loops. Else, put all cases in one case structure instead.

 

You may use Event structure or even Queue Event structure. 

Ian F
Since LabVIEW 5.1... 7.1.1... 2009, 2010, 2014
依恩与LabVIEW
LVVILIB.blogspot.com
0 项奖励
5 条消息(共 5 条)
3,892 次查看