Search results for query: *

  • Users: agroom
  • Content: Threads
  • Order by date
  1. A

    Reference checkbox value in datagridview

    How do I reference the value of a checkbox in a datagridview? In the datagridview edit column window, I set the "FalseValue" and "TrueValue" to "False" and "True" respectively. Then I try to access them using this: If Me.TDataGridView.Item(Column, Row).Value = "False" Then ~~~ End If But...
  2. A

    ClickOnce Installation Question

    I published an application with an SQL database on a computer at work. The user is changing workstations and I'd like to install it on the new PC but cannot find the database file to copy over. I've searched for all .mdf files and come up with nothing. I did not do any modifications to the...
  3. A

    Locate mdf file from an attached database app

    I developed an application and deployed it using the Build|Publish option which makes the Setup.exe file in the publish folder. I've done a lot of data entry but now want to use the database on another application I'm working on (with all the data I've already entered). The origional program...
  4. A

    Failed to convert parameter value from a Int32 to a Guid.

    I get this error when trying to save to my table. The dataset I'm using has the primary key auto increment, but the data type always switches to System.Int32. I've tried several data types in my MDB but every time I get this error: "Failed to convert parameter value from a Int32 to a Guid."...
  5. A

    Two datagrid Q's

    1) How do I display a calculated value in an unbound datagridview column? I know I can make a script to cycle though the rows and do the calculations, but there's hundreds of records and multiple searches and filters the user can perform and doing that calculation evertime sounds like a lot of...
  6. A

    Switching from an attached SQL DB to Access

    I recently finished my first program in VS2005 and used an attached SQL database. Personally i'm much more familiar with running an access database and wanted to know how difficult it would be to switch over. I've created an identical database in Access and changed the connection string to...
  7. A

    Opening a form based on DataGridView selection.

    I've got a form with a datagridview. I setup a ContextMenuStrip that the user can right click on a hilited row and view additional information about that entry (based on the primary key) in another form that pops up. The code I have for this works but here's where i see an issue. The form...
  8. A

    Reference a cell range from Row/Col Variables

    I was wondering if there's any easyway (make that any way at all) to reference a range of cells given a row and column variable. I've got a loop that runs through an excel file that formats and writes data, but I need to merge a few cells. The only current way I know how to reference a range...
  9. A

    How do I filter a DataGridView?

    I'm developing my first app in VS 2005 (previous experience is in VB 6). I'm making a simple form that has a DataGridView with a BindingNavigator. All the bindings are setup in design. My question is, am I able to filter the DataGridView using a SQL statement? I only have 1 table I'm reading...
Back
Top