Search results for query: *

  1. D

    Are there pre-existing dialog boxes for constructing data connections?

    Hasn't worked yet. Won't recognize the import. I spoke too soon. Here's another link I found. Haven't tried it yet as I'm about to crash. Everything SQL Server Compact: Using the ADO.NET Data Connection dialog in your own application ? and limiting the choice of data sources
  2. D

    Are there pre-existing dialog boxes for constructing data connections?

    Never mind. THe second search I did brought back something useful. First one didn't. Sorry. https://msdn.microsoft.com/en-us/library/microsoft.visualstudio.data.dataconnectiondialog.aspx
  3. D

    Are there pre-existing dialog boxes for constructing data connections?

    I'd like my users to select and define whatever data source they can. As a programmer, do I have access to those same windows that I see when I'm trying to define a data connection, without having to recreate them? Or am I thinking about this all wrong? Thanks.
  4. D

    what container should I use for a four column form

    Thanks. I'm fooling with that (found the columns collection and setting stuff in there), but, it is not resizing to the form. And when I set anchor to all 4 sides, instead of just top and left, I get this error message: "Property value is not valid." "The file C:\Users\Davie\Documents\Visual...
  5. D

    what container should I use for a four column form

    I want to design a form with four columns. First column will be a table container, with labels and textboxes, vertically arranged. Second column will be a datagridview to a linked table. Third column will be another datagridview, to another linked table. Fourth column will be a copy of the...
  6. D

    Question Looking for extended code for using parameters with dataAdapter

    I think I"m slowly figuring it out. Thanks for this starter.
  7. D

    Question Looking for extended code for using parameters with dataAdapter

    I guess I was interested primarily in the SelectCommand use. How do I set the parameter value, other than with the AddWithValue command? Since I will be setting the parameter repeatedly. I will be using the InsertCommand for another portion of my code, but right now I"m just reading lines...
  8. D

    Question Looking for extended code for using parameters with dataAdapter

    Thank you. I'll get into it a little later in the morning.
  9. D

    Question Looking for extended code for using parameters with dataAdapter

    Wanting to set up parameters for my DataAdapter, but I'm running into the problem of terse examples. All I can find is code snippets for how to set up the parameters, but I'd like a fuller example of setting up the parameters, populating the parameters, making the call, and retrieving the...
Back
Top