Search:

Type: Posts; User: Mearntain

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    2,914

    Re: Manual install / update of .net programs

    Can you elaborate on what you mean with the "push (publish) the install to a network drive"? I'm wondering if the way I had this originally working was just a fluke.

    From my recollection, I placed...
  2. Replies
    4
    Views
    2,914

    Re: Manual install / update of .net programs

    6 to one, half a dozen to another. No need to sound so condescending, apparently you knew what I meant.

    Im not sure if this is a universal issue with installing software to a network drive, but...
  3. Replies
    4
    Views
    2,914

    Manual install / update of .net programs

    I'm currently using VS 2015 and my codes all vb.net. A little backstory - I installed the software on a network drive for use on 2 virtual computers a while back, and everything has been working...
  4. Re: The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine

    Looks like that solved my issue. The computers that were effected were the ones that had 64 bit OS with 64 bit Office. With the configuration set as "ANY", the program ran flawlessly on 64 bit...
  5. Re: The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine

    I will try that this morning and will post back with the results. Hopefully it is an easy fix like this.

    Looking in the settings now, I am setup to run as "ANY CPU". Is that not a good practice to...
  6. Re: The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine

    How do I determine which ACE is installed? The computer has 64 bit office but both tablets have 32 bit office.
  7. [RESOLVED] The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine

    As the title states, I'm getting the error "The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine" in an application that I created in VB.net for use on several different...
  8. Replies
    11
    Views
    3,487

    Re: [RESOLVED] Issue updating DB from DGV

    I could never find out why, but the original code would only query once without reloading the entire form.

    By adding that line to clear the table each time, that allowed the query to be done as...
  9. Replies
    11
    Views
    3,487

    Re: [RESOLVED] Issue updating DB from DGV

    I got it to work by adding dt.Rows.Clear() to the beginning of the code for the search button. All squared away now
  10. Replies
    11
    Views
    3,487

    Re: [RESOLVED] Issue updating DB from DGV

    Looking for an opinion - I am only able to "filter" the results once since the parameters.add is in the Load event of the form. What would you recommend as an event to use that I could add that same...
  11. Replies
    11
    Views
    3,487

    Re: Issue updating DB from DGV

    That was it! Funny, when I was looking earlier, I thought I did see an extra + sign, and then I couldn't find it again, so I thought I was just seeing things (it's been a hectic morning so far).
    ...
  12. Replies
    11
    Views
    3,487

    Re: Issue updating DB from DGV

    Neither one of these worked for me either, I am still getting an error : An unhandled exception of type 'System.Data.OleDb.OleDbException' occurred in System.Data.dll

    Additional information:...
  13. Replies
    11
    Views
    3,487

    Re: Issue updating DB from DGV

    Sounds good, I do appreciate the input. I haven't got this working 100% yet, as I'm stuck at one small part after adding the parameters in there. I can't figure out how to properly write my SQL...
  14. Replies
    11
    Views
    3,487

    [RESOLVED] Issue updating DB from DGV

    As the title states, I am having an issue updating my Access table via Datagridview. I Have the select clause "filtering" the results based on values from a combobox, and then would like to update...
  15. Re: Enter Multiple rows of Data into Access Table

    That sounds good, thanks for pointing that out. I will definitely add that in there to play it safe.
  16. Re: Enter Multiple rows of Data into Access Table

    Removing the "- 1" and changing it to "- 2" gets rid of the error message popping up. I assume this is from the fact that as soon as you start typing the first bit of data in, a new blank line is...
  17. Re: Enter Multiple rows of Data into Access Table

    Only one row of data was there at that time
  18. Re: Enter Multiple rows of Data into Access Table

    UPDATE:

    I moved back to the original full code and values are being entered into the database as they should, but I am still getting the error for whatever reason.

    While technically it *is...
  19. Re: Enter Multiple rows of Data into Access Table

    If I am checking this properly, it appears as if it is:

    DataGridView1.Rows(x).Cells(Item).Value = Nothing
    DataGridView1.RowCount = 2
    x = 1


    If I leave the try catch in there and add a...
  20. Re: Enter Multiple rows of Data into Access Table

    Unless you're talking about hovering over it in the code?

    If so, DefaultNewRowValue = Nothing and Value = Nothing
  21. Re: Enter Multiple rows of Data into Access Table

    It closes the whole app down when it gives the error once I remove the try/catch.

    I did do some console.writelines earlier and it was pulling the proper values out of those 2 locations just as I...
  22. Re: Enter Multiple rows of Data into Access Table

    When simplifying this code down even more (to now only use the DGV) to try to rule out where the issue is, I get a different error now - "Parameter @Item has no default value"

    The code now is :
    ...
  23. Re: Enter Multiple rows of Data into Access Table

    If I use the same code on a different form, which only allows one record to be entered at a time, the code runs flawlessly and adds records to the database as it should (the only other difference...
  24. Re: Enter Multiple rows of Data into Access Table

    Even after pulling those add parameters out of the loop, I still get the "Data type mismatch in criteria expression". It doesn't point to a specific line, but I must assume it is due to those two...
  25. Re: Enter Multiple rows of Data into Access Table

    Sorry to keep asking so many questions, but I just cant seem to get this to work right.

    If I run the code:



    For x = 0 To DataGridView1.RowCount - 1

    ...
  26. Re: Enter Multiple rows of Data into Access Table

    I've had the chance to try this out, and am getting a couple errors.

    First of all -
    For Each dr As DataRow In DataGridView1

    Im getting an error pointing towards DataGridView1 which states...
  27. Re: Enter Multiple rows of Data into Access Table

    The only reason I thought I needed it within the loop was so that it would apply that same bit of data to every row that was added from the datagridview. If I do it separate, would it still add the...
  28. Re: Enter Multiple rows of Data into Access Table

    All data in the datagridview will be manually entered by hand, so it sounds to me as if the first example is the one that I want - it is an unbound datagridview.

    Would it work for me to add the...
  29. Re: Enter Multiple rows of Data into Access Table

    Sounds good, I should be able to figure out the looping of the textbox items, but the datagridview is something that's relatively new to me. Is there an example you could provide for pulling the data...
  30. [RESOLVED] Enter Multiple rows of Data into Access Table

    I've got an issue that I can't seem to work out the best way to do this. I've got a form with textboxes along with a datagridview for users to enter data into - I need to enter multiple rows of data...
  31. Re: Issues when editing Access Table via DataGridView

    Perfect, that worked like a charm and it's now doing exactly as I hoped. Being that I had been messing with the EditMode's prior to posting this thread, and then you said that it can be edited...
  32. Re: Issues when editing Access Table via DataGridView

    Can you provide an example of what the validate code should look like? I tried browsing through the link you supplied but not sure what to do; Ive never used the validate statement before in this...
  33. Re: Issues when editing Access Table via DataGridView

    So it sounds to me as if this is just how the system is built then? And no way to actually update the row solely by pressing my "Update" button (without leaving the row first)?

    I also tried...
  34. [RESOLVED] Issues when editing Access Table via DataGridView

    I originally had some issues trying to get my code to work, but got it "working" and am now running into another issue. In a gist, I'm using datagridview to display results from an Access table which...
  35. Re: Edit Access Table via DataGridView

    Everythings working like a charm now. Thanks for the input and advice from everyone.
  36. Re: Edit Access Table via DataGridView

    I changed the way the data was being pulled, from using an access bult query to actually querying the data from within the code, and have gotten it to work now.

    Being that I am not using a query...
  37. Re: Edit Access Table via DataGridView

    I am getting the error "An unhandled exception of type 'System.InvalidOperationException' occurred in System.Data.dll

    Additional information: Update requires a valid UpdateCommand when passed...
  38. [RESOLVED] Edit Access Table via DataGridView

    As the title states, I am trying to edit my table in Access via DataGridView in the application that I am creating and seem to be having issues.

    I have established the connection and can view my...
  39. Replies
    7
    Views
    2,039

    Re: Form size issues after build

    Sounds good, I overlooked your post previously. I will try to change my DPI to 100% and make the necessary changes, along with following the tips in the link you posted. Hopefully switching to 100%...
  40. Replies
    7
    Views
    2,039

    Re: Form size issues after build

    My computer is set to 125%, and the computer with the issue was at 100%, but changing the computer with the issue to 125% did not correct the issue. Both computers indeed do have the same resolution
Results 1 to 40 of 81
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width