How can Debug.Print?

  • Thread starter Thread starter Christian Blackburn
  • Start date Start date
C

Christian Blackburn

Hi Gang,
I'm wondering what the VB6 equivalent of Debug.Print is?
Thanks in Advance,
Christian Blackburn
 
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
 
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
 
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.
 
Hello,

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

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