Click here to Skip to main content
15,892,839 members

Comments by Amitkumaryadava (Top 6 by date)

Amitkumaryadava 19-Mar-23 7:58am View    
Thank you for your reply. If u provide me a code then i will be very thankful to you and let me clear sir i am beginner not a programmer and doing this task for my own print
Amitkumaryadava 30-Dec-22 14:57pm View    
i need to reapeat id column as header not in eatch line. when id change in stream or group then insert a new line as i posted. is any fuction to grouping a columns and use it
Amitkumaryadava 26-Dec-22 2:55am View    
my mistake. i finalize (close) stream. but my question is still there. how to repeat a column value in top of and page break if id change. eg if streamwriter write lines and user 102 comes after 101 then insert a line and write a value of user 102 on top?
Amitkumaryadava 18-Dec-22 17:42pm View    
Thank you I figure it out to add a Line
Dim Counter as integer=0
If Counter = 24 Then
sb.AppendLine(" ")
sb.AppendLine(Line)
sb.AppendLine(HeaderText())
sb.AppendLine(Line)
sb.AppendLine(ColumValues)
sb.AppendLine(ColLine)
Counter = 0
Else
sb.AppendLine(ColumValues)
sb.AppendLine(ColLine)
End If
ColumValues = ""
Next
Amitkumaryadava 18-Dec-22 17:40pm View    
mark my solution as answers