Search results for query: *

  • Users: opie
  • Order by date
  1. O

    Question gridview with multiple tables

    yes it was set to false. I probably did it at some point but I don't remember why. Also why would Row Cells be invisible and it affected a column in the gridview. That was all I was saying I needed to research
  2. O

    Question gridview with multiple tables

    Aha. I got it. Not 100% what this means have to do some research but Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound If e.Row.RowType = DataControlRowType.DataRow Or...
  3. O

    Question gridview with multiple tables

    Yes, the query works in sqlplus fine. In my gridview though I'm not getting the column I want from table2 Sorry, I have the databind in there. I left it out of the code here. I'll add it in
  4. O

    Question gridview with multiple tables

    I'm trying to run a query on a oracle database using a join or union or multiple tables. Store that information into a reader then bind it to a dataset and fill a gridview. I might be going about this all wrong but it works with a single table, just not when I query two tables I make my...
  5. O

    Question Executenonquery in a loop

    Ok.. took a while but I figured it out I had to Dim sqlcmd as new ODBC.ODBCCommcand then in the For Each loop For Each i In wod_tables cmd = " stuff " sqlcmd = New Odbc.OdbcCommand(cmd, conn) ... ... Next
  6. O

    Question Executenonquery in a loop

    Ok. I know I'm missing something easy here but for the life of me I haven't found an answer to this. I make a ODBC connection to my database and I have 13 tables that I need to delete data from based on a column (called JOB_ID) in the table. When I run the code on a single table it works...
  7. O

    Question ViewState help

    Well.. I had read that before but apparently the 3rd time is the charm. Thanks
  8. O

    Question ViewState help

    Hi folks, newbie here, apologies in advance if my terminology is wrong :D. Been using this forum for a bit to answer my questions via the search function while I learn some VB and ASP but I've got something I just can't wrap my mind around I have a webpage with a form. I'm using a keyed in...
Back
Top