Is it possible to run procedure only?

  • Thread starter Thread starter Jerome Smith
  • Start date Start date
J

Jerome Smith

Hello all,

Is it possible in Visual Studio.NET to run only a procedure Sub...End Sub,
and not the whole project? I am used to developing with VBA (Visual Basic
for Applications) in which you can.

Thank you,

Jerome Smith
 
Hi Jerome,

The only subs that are processed are the ones that you said that they should
be processed.

But if you put a button on your form and add and event for that and create
that in a sub.

Yes than you say when the user pusses a button, you have to process that
sub.

I hope this helps?

Cor
 
Jerome,

AFAIK, you can't do this with VS.net 2003. IMHO, VB.net's immediate mode
debugger is nowhere as useful as VB6's (and VBA's). However, I believe there
are big improvement coming in this area in the next version.

You might want to try posting in microsoft.public.vsnet.debugging and
microsoft.public.vsnet.ide

Hope this helps,

Trev.
 
Thanks Trev!

Trev Hunter said:
Jerome,

AFAIK, you can't do this with VS.net 2003. IMHO, VB.net's immediate mode
debugger is nowhere as useful as VB6's (and VBA's). However, I believe there
are big improvement coming in this area in the next version.

You might want to try posting in microsoft.public.vsnet.debugging and
microsoft.public.vsnet.ide

Hope this helps,

Trev.
 
Back
Top