Search results for query: *

  1. theAsocialApe

    Question how to expose methods and properties of user controls contained in a collection?

    I'm stumped here. I've got a user control with one to infinity minus 1 instances of another user control in it. at some points, I need to call the same method on those controls (ex. user presses the clear button on the big control, I want to call the clear f(x) on each of the controls) I...
  2. theAsocialApe

    Question OracleParameter.ParameterName

    does anyone know how to call an oracle procedure without the parametername? ---- We've got some oracle packages that take like 15 parameters. I'm sick of doing this Dim pc As New OracleParameterCollection and then typing Dim a As New OracleParameter("p1", OracleType.Number)...
  3. theAsocialApe

    joins on dataset.tables?

    I'm making a little admin utility for updating an error message table. Over time, the messages in dev, test, and prod get out of synch, and so this page will use a gridview to pull from all three datasources, linking them up on their common primary key (errorid). edits or additions can only be...
Back
Top