Search results for query: *

  1. A

    ClickOnce Installation Question

    Yeah, I was getting very frustrated with not being able to create a multi-user application. From now on I just do the "Build" and not "Publish".
  2. A

    Reference checkbox value in datagridview

    I'd also like to note if I display the value of the cell, I'll get a string of "True" or "False" For example Msgbox(Me.TDataGridView.Item(Column, Row).Value) will display the word True or False in respect to if it's checked or not.
  3. 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...
  4. A

    ClickOnce Installation Question

    Thanks, you know I searched for the .exe file several times with no success, then I wrote a test program that just displayed the application path and finally found it. It was in the C:\Documents and Settings\user\Local Settings\Apps\2.0 folder.
  5. A

    ClickOnce Installation Question

    Is this something nobody really knows or is this just a really dumb question? I've posted this question on about 6 forums and have gotten no responce.
  6. 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...
  7. A

    Custom install...possible?

    I was just reading another post that said the "ClickOnce" installer that comes with Express does not allow for custom installs. It was a thread from about a year ago though, so i don't know if anything has changed.
  8. 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...
  9. A

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

    Played around with this a little more and found the auto increment settings. I wrote some test data in the designer and it auto incremented, so everything looks good on for that. However, when I run my application now, I get the error "Column "identifier" does not allow nulls." How would I...
  10. A

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

    I'm pretty new to this, so let me make sure I understand what you're talking about. By saying built in membership roles, are you asking if I'm using the pre-set data types in the designer? If so, then yes, I've assigned my key field type Int. So does this mean by making a field the primary...
  11. A

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

    I know how to auto increment using an SQL statement when creating the table, but I created it in the VS2005 designer so I'm not sure how it's done from there. Any help with this is greatly appreciated!
  12. A

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

    Okay, my next question then is what would I need to do in order to setup my application to auto generate a new primary key? It looks like the easiest thing is to do it though my dataset having it auto increment when a new row is added to the table, but then I still run into the conversion problem.
  13. 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."...
  14. A

    Switching from an attached SQL DB to Access

    Okay okay, SQLS is by far the better route and It's really just my unfamiliarity with the IDE editing the database, setting up relations, creating views, etc. I've been playing around with it more now and I'm getting the hang of it, though it's still a little rough :) Thanks cjard, If I have...
  15. A

    Two datagrid Q's

    Perfect! This is the expression I used. Me.LogBookDataSet.Tables("tblLogFile").Columns("fldManHours").Expression = "fldBudget / 75" Here's the issue. I'm working with a user on the app I'm developing and he's concered that when a new row is entered (last column is filled in), the user tabs...
  16. A

    Row Count And Column Count

    They are both properties of the datagrid view. Here's an example: Dim RowCount as Integer Dim ColCount as Integer RowCount = Me.Datagridview.RowCount ColCount = Me.Datagridview.ColumnCount
  17. 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...
  18. A

    Switching from an attached SQL DB to Access

    Okay, that's kind of what I thought, but didn't want to start tinkering and have everything come out FUBAR :) I do agree that it's a good opportunity to get familiar with SQL, that's why I did it in the first place, but I'd really like to be a able to do a few things I know in Access (I do...
  19. 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...
  20. A

    Opening a form based on DataGridView selection.

    Wow, that was a load to digest, but extremely helpful! Things are starting to make sense now...scarry! hehe I guess my problem comes with not knowing VS2005 well enough to know that I needed to assign an update command to update. I kinda figured it was setup automatically when I bound the...
Back
Top