Answered by:
VS community 2015 is different

-
I've been coding in visual basic using VS 2010. I downloaded VS Community 2015 and have found it to be a complete overhaul for VB. for instance, you can no longer check if another form is visible anymore
if form1.visible = true then
end if
and you are unable to perform actions from one form to another:
form1.button1.perform_click
am I missing something or was this taken out of vb altogether (or done a different way)
I will be legendary someday, just not today.
Question
Answers
-
I think that it should work. Maybe it is a limitation of IntelliSense. Then try this:
Dim f1 = Form1
If f1.Visible Then
' . . .
End If
f1.Button1.PerformClick()
- Proposed as answer by Weiwei CaiMicrosoft contingent staff, Moderator Thursday, May 19, 2016 7:52 AM
- Marked as answer by Weiwei CaiMicrosoft contingent staff, Moderator Friday, May 27, 2016 1:50 AM
-
Hi mreed72,
For your question, as we know VS 2015 Community doesn't support IntelliTrace.
Please refer to:
https://www.visualstudio.com/products/compare-visual-studio-2015-products-vs
Besides, please see the screenshot:
Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey.- Edited by 宝宝徐Microsoft contingent staff, Moderator Friday, May 20, 2016 8:49 AM
- Proposed as answer by Weiwei CaiMicrosoft contingent staff, Moderator Monday, May 23, 2016 9:47 AM
- Marked as answer by Weiwei CaiMicrosoft contingent staff, Moderator Friday, May 27, 2016 1:50 AM
All replies
-
I think that it should work. Maybe it is a limitation of IntelliSense. Then try this:
Dim f1 = Form1
If f1.Visible Then
' . . .
End If
f1.Button1.PerformClick()
- Proposed as answer by Weiwei CaiMicrosoft contingent staff, Moderator Thursday, May 19, 2016 7:52 AM
- Marked as answer by Weiwei CaiMicrosoft contingent staff, Moderator Friday, May 27, 2016 1:50 AM
-
-
Thanks for Viorel_'s help.
Hi mreed72,
Since your problem is caused by the intellisense function, please check following settings from Tools -> Options -> Text Editor and Intellisense to confirm you have enable this function.
Best Regards,
WeiweiWe are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey. -
-
Hi mreed72,
For your question, as we know VS 2015 Community doesn't support IntelliTrace.
Please refer to:
https://www.visualstudio.com/products/compare-visual-studio-2015-products-vs
Besides, please see the screenshot:
Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click HERE to participate the survey.- Edited by 宝宝徐Microsoft contingent staff, Moderator Friday, May 20, 2016 8:49 AM
- Proposed as answer by Weiwei CaiMicrosoft contingent staff, Moderator Monday, May 23, 2016 9:47 AM
- Marked as answer by Weiwei CaiMicrosoft contingent staff, Moderator Friday, May 27, 2016 1:50 AM