Simple print listbox to disk problem! 
Author Message
 Simple print listbox to disk problem!

I am trying to take the contents of a list box (it can only be 10
lines long)
and print it to disk.  This is what I am trying right now (it
doesn't work either).
Any ideas would be GREATLY APPRECIATED!

__________________________________________
Private Sub mnuFilePrintToDisk_Click(Index As Integer)
Dim R As Integer
dlgCommon.Filter = "Text Files(*.txt)|*.txt|All Files(*.*)|*.*"
dlgCommon.filename = ""
dlgCommon.ShowSave
R = 0
Open dlgCommon.filename For Output As #1
Do
Print #1, lstEmployeeNetPay.ListIndex
Loop Until lstEmployeeNetPay = ""
Close #1
End Sub
______________________________________________



Wed, 26 Apr 2000 03:00:00 GMT  
 Simple print listbox to disk problem!

Change the loop to:

        For i = 0 To lstEmployeeNetPay.ListCount - 1
           Print #1, lstEmployeeNewPay.List(i)
        Next i

Lee Weiner
weiner AT fuse DOT net


Quote:

>I am trying to take the contents of a list box (it can only be 10
>lines long)
>and print it to disk.  This is what I am trying right now (it
>doesn't work either).
>Any ideas would be GREATLY APPRECIATED!

>__________________________________________
>Private Sub mnuFilePrintToDisk_Click(Index As Integer)
>Dim R As Integer
>dlgCommon.Filter = "Text Files(*.txt)|*.txt|All Files(*.*)|*.*"
>dlgCommon.filename = ""
>dlgCommon.ShowSave
>R = 0
>Open dlgCommon.filename For Output As #1
>Do
>Print #1, lstEmployeeNetPay.ListIndex
>Loop Until lstEmployeeNetPay = ""
>Close #1
>End Sub
>______________________________________________

Lee Weiner
weiner AT fuse DOT net


Thu, 27 Apr 2000 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Formatting disks and ListBox Problem

2. Simple Listbox Problem

3. Simple Newbie Print Problem

4. simple printing problem?

5. Help with simple VB Printing Problem

6. Simple (?!) printing problem

7. Simple (?!) printing problem

8. Simple Problem....Want to print files as if from Windows Explorer

9. Simple printing problem

10. NEW to VB -- Limit ListBox, Print ListBox

11. Print preview/ Print Listbox contents

12. A simple Mail problem in search for a equally simple answer

 

 
Powered by phpBB® Forum Software