Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8385185
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T17:36:22+00:00 2026-06-09T17:36:22+00:00

I have a listbox with 1 or more textfiles, which im going to print

  • 0

I have a listbox with 1 or more textfiles, which im going to print as commands.
but I dont know how to make the streamreader read from listbox ?

so far I got this.:

public void OutputBtn_Click(object sender, EventArgs e)
{
    PrintDocument PrintD = new PrintDocument();
    PrintD.PrintPage += new PrintPageEventHandler(this.PrintDocument_PrintPage);
    StreamReader SR = new StreamReader("C:\\myfile.txt");
    PrintD.Print();

}

is there enyway I can change “C:\myfile.txt” or do I have to use “foreach” ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T17:36:23+00:00Added an answer on June 9, 2026 at 5:36 pm

    Do you want something like this? I don’t fully understand the question

    string[] fileEntries = Directory.GetFiles("C:\\temp\\").Where(p => 
                                     p.EndsWith(".txt")).ToArray<string>();
    foreach (string fileName in fileEntries)
    {
        lb.Items.Add(new ListItem(fileName, fileName);
    }
    

    Ok so you have the listbox filled with filenames?

    private StreamReader sr;
    
    public void OutputBtn_Click(object sender, EventArgs e)
    {
        foreach(var li in lb.Items)
        {
            PrintDocument PrintD = new PrintDocument();
            PrintD.PrintPage += new PrintPageEventHandler(this.PrintDocument_PrintPage);
            sr = new StreamReader(li.ToString());
            PrintD.Print();        
        }
    }
    
    private void PrintDocument_PrintPage(object sender, PrintPageEventArgs ev) 
    {
         float linesPerPage = 0;
         float yPos =  0;
         int count = 0;
         float leftMargin = ev.MarginBounds.Left;
         float topMargin = ev.MarginBounds.Top;
         String line = null;
    
         // Calculate the number of lines per page.
         linesPerPage = ev.MarginBounds.Height  / 
            printFont.GetHeight(ev.Graphics) ;
    
         // Iterate over the file, printing each line.
         while (count < linesPerPage && ((line = sr.ReadLine()) != null)) 
         {
            yPos = topMargin + (count * printFont.GetHeight(ev.Graphics));
            ev.Graphics.DrawString (line, printFont, Brushes.Black, 
               leftMargin, yPos, new StringFormat());
            count++;
         }
    
         // If more lines exist, print another page.
         if (line != null) 
            ev.HasMorePages = true;
         else 
            ev.HasMorePages = false;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a listbox that users can add/remove from. To add, there's a text
I have a Control in ArcMap in which I created with buttons, A Listbox
I'm sure this is simple but it's driving me nuts. I have a ListBox
I have a listbox with more than 20 items. How I can scroll to
I'de like to make a listbox which loads data by a custom number of
When a Xul's listbox have more itens than it can show, the doc says
I have a simple listbox with more items than fit on the screen. If
I have a listbox (multi-select) in my web form that is populated from a
Say I have a composite control in which I have a ListBox control which
I have a listbox which has a couple of values and is already populated

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.