本文介绍了帮助创建一个功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我想创建一个函数,只能达到目标的一半。 dim sStr as string sStr = Entry(2," ; a,b,c,d")''设置sStr =" b" 条目(2,sStr)=" B" ''设置sStr =" a,B,c,d" 我尝试创建一个公共属性。但是,Set不允许 ByRef。我该如何解决这个问题? ----------------------------------- ------------------------ Gary Kahrau ka **** @ monair.com ----------------------- ------------------------------------ 解决方案 - -------------------------------------------------- ------- Gary Kahrau ka **** @ monair.com ---------------------------------------- ------------------- I want to create a function and can only get half way to my goal. dim sStr as stringsStr = Entry(2,"a,b,c,d") '' Sets sStr = "b"Entry(2,sStr) = "B" '' Sets sStr = "a,B,c,d"I tried create a public property. However, the Set does not allowByRef. How do I work around this?-----------------------------------------------------------Gary Kahrau ka****@monair.com----------------------------------------------------------- 解决方案 -----------------------------------------------------------Gary Kahrau ka****@monair.com----------------------------------------------------------- 这篇关于帮助创建一个功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-19 20:40