Search results for query: *

  1. R

    Datareader Problem

    Try this, it works I think this will accomplish what you are trying to do. -------------------------------------------------------------- cn = New System.Data.OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Application.StartupPath & "\caritas.mdb") Dim ds As...
  2. R

    Help with search button

    The Order Key The Current Order Key may start with '0' or null, basicly the smallest possible Key value, and as a page is loaded the new current order key would be the last record in the paged result.
  3. R

    SQL getting MAX Number from many inner joins plz help

    I think I can do that. Hmmm... Lets See.... SELECT distinct CONVERT(VARCHAR(15),GAP.GAPGatePassDate,101) as [Date], CONVERT(VARCHAR(15),GAP.GAPGatePassDate,108) as [Time], VCO.VCOContainerNo as [Container No], CON.CONSizeCode as [Size], CON.CONTypeCode as [Type]...
  4. R

    pset(x,y)

    Painting a Picture? One of the nice things about VB.NET is the Owner Draw Functions that are available to you. Check out the Paint event of the form. The event argument 'e' has just what you need. Start by typing e.Graphics.Draw and begin there Inteli will do the rest. Dont forget to...
  5. R

    Help with search button

    VB or SQL SQL Well, if you are attempting to page through the records on the database using SQL perhaps you could try something like......... select top [items per page] * from pairs where [orderkey] >= [Current Position Key Value] VB If you want to use a dataset in VB then Establish...
  6. R

    Large Text Files

    Flicker Free Hello, Sounds like you may be dealing with a flicker or refresh issue, this is common when loading grid controls with rows, one at a time. I would create a new datatable object and fill it, then after the datatable is constructed simply set the datasource of the grid control to...
  7. R

    TabPage overwhelming situation

    Sounds Like a Wizard Hello, When I consider your question it reminds me of a multi tabbed wizard where you cannot go to the next tab until the previous tab has been filled out. Im sure this is not exactly what you are looking for but Im confident it will give you an idea or two. The logic...
  8. R

    TabPages question

    Hello, When I consider your question it reminds me of a multi tabbed wizard where you cannot go to the next tab until the previous tab has been filled out. Im sure this is not exactly what you are looking for but Im confident it will give you an idea or two. The logic of this example will...
Back
Top