Im writing a program for college and we have to write an MOT Quotation program that prints to text file that is created through the use of a function or procedure:

This is the specification:

When the user clicks the Calculate Total button: Print button becomes available and on click message box asking if they would like the quotation printed. For this program, printing the quotation will involve writing the details to a text file C:\temp\CARSERVICE-QUOTE.txt with the following format:

The print feature should be implemented as a function or procedure. You can use ControlChars constants such as VbCrLf and VbTab to format your output as appropriate.

*If there is any more information needed I can send screenshots etc, its due tomorrow and this is the final piece I need to get it working

Recommended Answers

All 2 Replies

I can't imagine that I/O wasn't one of the first things covered in whatever programming course you are taking but here is an example

    Dim text() = {"line 1", "line 2", "line 3"}

    Dim sw As New System.IO.StreamWriter("D:\output.txt")

    For Each line As String In text
        sw.WriteLine(line)
    Next

    sw.Close()

its due tomorrow

Procrastination?

commented: I bet it's to prepare them for their clients. +12
commented: Never put off 'til tomorrow what you can put off 'til the day after tomorrow. +14
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.