Search:

Type: Posts; User: shathaway

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    4,076

    Re: help with Access violation error

    Also, the .exe was working Friday afternoon, Then used again this morning. Nothing had changed or been modified.
  2. Replies
    8
    Views
    4,076

    Re: help with Access violation error

    I tried it the way I found, going into the designer, right click on the tableadapter, click configure, goto into advanced options and make sure refresh table is checked, then go through next, next...
  3. Replies
    8
    Views
    4,076

    Re: help with Access violation error

    I just restored the DB to a different folder and called it UR2. I restored my code from a backup, changed the connection string from UR to UR2.

    I am still getting the same errors.
  4. Replies
    8
    Views
    4,076

    Re: help with Access violation error

    I copied the sql design window here. Only field that is unique is the URID and its the only one that can't accept NULLs
  5. Replies
    8
    Views
    4,076

    Re: help with Access violation error

    i am thinking that something is wrong with the database, because even when I load up older copies of the code, it fails at the same point, while trying to fill that table.

    Is there a way I can...
  6. Replies
    8
    Views
    4,076

    help with Access violation error

    I have an application that is access SQL database.

    I am getting an access violation error:
    The program '[10552] UR.vshost.exe' has exited with code -1073741819 (0xc0000005) 'Access...
  7. Re: Check to see if username is in the results of a sql query

    This will work, how do I get the results from the sql query into the list?

    Thank you,

    Steve
  8. Re: Check to see if username is in the results of a sql query

    I just thought of something and want to know what you think about this idea.

    What if I use the below sql query passing in the 'username' as I generate the sql statement in VB,
    Then I can check to...
  9. Check to see if username is in the results of a sql query

    I have a windows forms application that need to check to see if a user has access to a specific form before it loads.

    I have the sql query working in management studios, now I need to get the...
  10. Replies
    3
    Views
    725

    Re: Query 2 server from vb application

    Oh, I always thought that the linked server was just for the connection from my computer, I didn't realize that once its set, it stays there for everyone from all computers.

    Thank you,

    Steve
  11. Replies
    3
    Views
    725

    Query 2 server from vb application

    I have to have my VB 2015 application query data from Server1 which is accessed over a VPN connection that is always online and then insert the results into a Table on Server2 which is a local...
  12. How to use Year function in bindingsource.filter statement

    I need to setup a filter from a dropdown menu that will only show records from a given year of the date field.

    I have this, but when executed, just exits the program, no error message.
    ...
  13. Replies
    3
    Views
    676

    Save not working when I add new record

    I have a program using bound controls.

    If if I use the bindingsource.addnew method, a new primary key is generated, I go through the following save button code and no errors, but the record isn't...
  14. DataSetTableAdapters is not a member of tabpage

    I have a winform using bound controls to a sql server 2008

    I keep getting the error CIRAppDataSetTableAdapters is not a member of TabPage

    CIRApp is name of application.

    Here is a snip of...
  15. Replies
    1
    Views
    4,940

    .filter statement on name with apostrophy

    I have the following filter statement to narrow down to the currently logged in user.


    Forms![Incidents List].FilterOn = False
    Forms![Incidents List].RecordSource = "Qry_Incidents"
    ...
  16. Re: HELP - controls on form all of a sudden moved all over and can't see all of form.

    I was finally able to reconstruct and move all the controls around to get it right again.

    Any ideas as to why this could have happened?
  17. HELP - controls on form all of a sudden moved all over and can't see all of form.

    I have a VB 2010 windows form that has probably 50 controls on it. just built file to put out for production testing, and all of a sudden, my controls are all over the place and I can't see the...
  18. Replies
    28
    Views
    14,282

    Re: VB2010 windows forms printing question

    Got it figured out. I needed the server/Reports to be server/reportserver.

    The way I was accessing the link(url) wouldn't allow parameters to be passed in.
  19. Replies
    28
    Views
    14,282

    Re: VB2010 windows forms printing question

    I am having problems getting the report to accept it or recognize it.

    This is the URL I am using, Report parameter
    CandidateID
    parameter visibility = hidden
    available values = none
    default...
  20. Replies
    28
    Views
    14,282

    Re: VB2010 windows forms printing question

    Can you launch a SSRS report for a particular record? I have only used it on full datasets to date with some filtering parameters.

    Thank you,

    Steve
  21. Replies
    28
    Views
    14,282

    Re: VB2010 windows forms printing question

    I will be using SSRS for reporting, just need something to print off current record for their paper folder.
  22. Replies
    28
    Views
    14,282

    Re: VB2010 windows forms printing question

    Yes, I would like that.

    Guess I am a little surprised that visual studio didn't already have a simpler way to do this.

    Thank you,

    Steve
  23. Replies
    28
    Views
    14,282

    Re: VB2010 windows forms printing question

    The examples you are posting, I believe, are strictly for data grid view, my form has a mixture of items on it. I am including an image of it.
    110443

    The form scrolls down for another 10...
  24. Replies
    28
    Views
    14,282

    VB2010 windows forms printing question

    I have designed a fairly lengthy inquiry form that also has a datagridview of meeting dates, reasons. The customer want to be able to print out the current record with complete meeting data.
    ...
  25. Replies
    2
    Views
    557

    Develop Apps for PC and Mac

    I need to develop some apps that will be accessed from both PC and macs. Can this be done with visual Studio 2010?
  26. Thread: I love VB

    by shathaway
    Replies
    83
    Views
    9,845

    Re: I love VB

    I started programming in High School in 1985 on the school districts mainframe in Basic - when we didn't want to do anything someone would through the mainframe into an infinite loop since it would...
  27. Replies
    0
    Views
    569

    Set bound textbox to dbnull

    I have a bound textbox to a date field in sql database by the controls not by code.

    There is an instance where I need to be able to clear the text box and set it back to nothing.

    I can set the...
  28. Re: Perform Add New method when form loads

    what I was able to do was to call the addnew method of the bindingsource in the shown event of the form.

    thank you.
  29. Re: [2008] Masked Text Box - Date leading zeros

    Thank you, this helped me out as well.
  30. [RESOLVED] Perform Add New method when form loads

    I want to be able to trigger the addnew method of the binding navigator when a form loads.

    I am using binding navigator throughout my app, I know its not the best way to go, but this is how I...
  31. Replies
    2
    Views
    6,948

    Re: How to filter DataGridView

    Thank you for your reply, I just realized that I was using the wrong binding source.
  32. Replies
    2
    Views
    6,948

    [RESOLVED] How to filter DataGridView

    I have a form with a datagridview bound to a database that has recorded who entered data into via the windows user id.

    I am trying to filter the datagridview to only display records created by the...
  33. [RESOLVED] Call BindingNavigatorAddNew procedure

    I have a form that loads to either edit or add new referrals. I can call the form up fine with the proper record loaded to edit. when I call the form for a new referral, I want it to automatically...
Results 1 to 33 of 33



Click Here to Expand Forum to Full Width