How can Debug.Print?

  • Thread starter Christian Blackburn
  • Start date
C

Christian Blackburn

Hi Gang,
I'm wondering what the VB6 equivalent of Debug.Print is?
Thanks in Advance,
Christian Blackburn
 
N

Narayan

Hi,

If you are referring to VB.NET it is
System.Diagnostics.Debug.WriteLine()

Check up the numerous methods of the System.Diagnostics.Debug object.

Best Regards

Narayan
 
C

Christian Blackburn

Thanks Guys,
It looks like I can use Debug.Write or Debug.WriteLine. If I type in a
command like Debug.WriteLine what's the easiest way to find out it's parent
object? Check the online help?
Thanks,
Christian
 
A

Armin Zingler

Christian Blackburn said:
Hi Gang,
I'm wondering what the VB6 equivalent of Debug.Print is?
Thanks in Advance,
Christian Blackburn

Simply type "Debug." and you should get a list of available members.

See also (VS 2003 docs):
ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB/vbcn7/html/vaconProgrammingElement
sChangesInVB7.htm

(see hints in signature)


--
Armin

- Links might be split into two lines. Concatenate them using notepad.
- Links might require to add a ".nnnn" after the "2003FEB", e.g.
"2003FEB.1033" for localized versions.
- Links starting with "ms-help" are URLs for the document explorer (<F1>).
Paste them in the URL textbox and press enter. Using internal help (menu
tools -> options -> environment -> help), display the "Web" toolbar that
contains the textbox.
 
H

Herfried K. Wagner [MVP]

Hello,

Christian Blackburn said:
I'm wondering what the VB6 equivalent of Debug.Print is?

Use 'Debug.Write' and 'Debug.WriteLine' etc. instead.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top