CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2001
    Posts
    45

    How could I print a double-quote in

    As the title, how could I print a double-quote in VB6?

    I try
    Print """
    but it does not work.

    BTW, where could I find some reference about the string manipulation and file input/output in VB6?

    Thanks!


  2. #2
    Join Date
    Apr 2000
    Posts
    737

    Re: How could I print a double-quote in

    whenever you want to print ", you need to put "" instead of "

    thus, it should be

    print """"

    you can find all those information in MSDN.

    cksiow
    http://vblib.virtualave.net - share our codes



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured