Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: sazd1
  • Order by date
  1. sazd1

    Listview Display of Column having checkboxes

    Thanks. But I am using Listview so is there a way to do that in Listview?
  2. sazd1

    General Ledger Style Listview

    Thanks it worked perfectly.
  3. sazd1

    Listview Display of Column having checkboxes

    I am using VB express 2008 with MSAccess as Database. I have a table DailyExpenses in MsAccess with four columns of which one is ColumnPaid having checkboxes. I used following query to display records of DailyExpenses in Listview: Dim cmd As New OleDb.OleDbCommand("Select * FROM DailyExpenses "...
  4. sazd1

    General Ledger Style Listview

    I am using VB express 2008. How I can create a General Ledger Style Listview with alternating colourd rows. Thanks
  5. sazd1

    Printing Listview

    Finally the following amendment in my original code solved my problem: If (currentY + 60) < e.PageBounds.Height Then e.Graphics.DrawString("Net Amount : ", headfont, Brushes.Black, X1 + 80, currentY) e.Graphics.DrawString("Paid Amount: ", headfont, Brushes.Black, X1...
  6. sazd1

    Printing Listview

    I am using following code for printing Listview records in vb express 2008. #Region "Print related declarations" Protected WithEvents pd As Printing.PrintDocument 'used by Print sub Protected Ratio As Single = 0, CurrRow As Integer = 0 #End Region #Region "Simple Printing of...

Part and Inventory Search

Back
Top