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 SkipVought 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: maytel
  • Order by date
  1. maytel

    System.Drawing.Printing Printing Blank Line

    do send a few lines of code where your problem is will try to help out
  2. maytel

    Import data from excel to VB form

    did you mean getting a cell value from excell to through vb? if so here it is Private Sub LoadCont(ByVal sPathFile As String) Dim oExcelApp As Microsoft.Office.Interop.Excel.Application Dim oWorkBook As Microsoft.Office.Interop.Excel.Workbook Dim oWorkSheet As...
  3. maytel

    Error: Key cannot be null. Parameter name: key

    just a guess Where(receiving.receivingNo should be Where (receiving.receivingNo
  4. maytel

    How to Print Multiple Pages with PrintDocument

    heres a sample code i use Private WithEvents oPrintDoc As New System.Drawing.printing.PrintDocument Private hRecPrinted As Short Private Sub oPrintDoc_BeginPrint(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintEventArgs) Handles oPrintDoc.BeginPrint hRecPrinted = 0 End...
  5. maytel

    Records not updating, datareader not showing new records

    i think its because you are accessing the wrong data dr.read - reads the topmost row the row you've just saved might be located down below. you can include where in your command sql
  6. maytel

    VB05 Newbie: How to access a datasets data

    1. to retrieve data only use datareader to save use dataset for datareader Dim oleDrd As OleDbDataReader Dim oleCmd As New OleDbCommand oleCmd.CommandText = sql oleDrd = .ExecuteReader oledrd.read variable = .item(fieldname) for dataset you still need a datarow Dim oleDrw As DataRow...

Part and Inventory Search

Back
Top