Search results for query: *

  • Users: eric13
  • Content: Threads
  • Order by date
  1. E

    Problem Adding Web Reference

    I've written a web service and published it up to our web server. I am now trying to add the web reference to a vb.net project. After typing in the web services URL I'm able to see the public functions in the preview window but am getting an error in the "Web services found at this URL:" text...
  2. E

    .NET Framework 3.5

    Anyone know when/if the .NET Framework 3.5 will be added for auto-download to Microsoft Windows Server Update Services, or is this a manual download that will have to be done?
  3. E

    Weird DataGridView Problem

    VS 2008 I have a datagridview with a custom object bound to it. When I enter a cell to edit it, it works fine, if I back space to the first space then try and leave the cell by tabbing or arrowing, it errors with 'Object reference not set to an instance of an object.' If I arrow back to the...
  4. E

    Reportviewer problem

    I have a remote sql reporting services report that I am viewing on an asp.net page using the reportviewer control. Everything works fine in debugger mode during development. On our production server the report comes in fine, but the print button doesn't work. It looks like it is doing a post...
  5. E

    File properties

    When you right click on a file in windows and click properties it shows a dialog box. Is there any way to access and update the properties on the Summary tab, like the Title: and Subject: properties.
  6. E

    getting data from another server

    I am trying to get a file from another server using network credentials. The login that i am using has rights to the file location. I keep getting Access to the path '\\server\share\folder\document.pdf' is denied. I'm not sure what i am doing wrong, my code is below Dim strFilePath As...
  7. E

    Project Wide Error Handling in VB.Net

    I want to log errors that happen in our application. Is it possible to set up general error handling for a whole project without having to use try catch blocks in every function or method? Coming from foxpro...we set up a error handling in the main start up program like this, on error do...
  8. E

    Checkbox appearance in datagridview

    can you make a checkbox appearance a button that is pressed or depressed in a datagridview??
  9. E

    MaskedTextBox ?

    I have a masked text box with a mask of ####.## It is being used for a price field. Most of our prices are under $100.00 but some go up over a $1000.00 This is the behavior that i am looking for: if a user types "99" and then the presses "." key, I would like the 99 to be moved next to the...
  10. E

    IBindingListView and Filtering

    Has anybody implemented filtering on a collection of objects through the IBindingListView interface?
  11. E

    Resizing A Treeview

    Can a treeview be resized at run-time by a user. I want the user to be able to change the width of the treeview so they can increase viewing area as they expand treenodes.
  12. E

    Stop Auto Generate of Columns in DataGridView

    Is there any way to prevent the autogeneration of Columns when you bind a datasource to a DataGridView?
  13. E

    BindingSource Find method not working

    I have a collection of custom classes that inherits CollectionBase and implements IBindingList. I set the IBindingList's SupportsSearching property to return true. I have a property called "projname" in the class. The second class in the collection has the projname property set to "Test Project...
  14. E

    Throwing an exception from a property

    I have a collection of business objects bound to a form with a bindingsource and a navigator. I want to throw an exception (some message) to the owning application when a user attempts to set a property with invalid data. What is the proper way to throw the exception from the property and...
  15. E

    Business Objects

    We are moving to VB.net from Foxpro and are trying to decide on how to develop our first major .net application. I've been doing some research and have found that some dislike the use of DataSets, preferring the use of classes that use ComponentModel interfaces to bind to windows forms calling...
  16. E

    collection of controls that are bound to a BindingSource

    Does anyone know if you can or how u can get a collection of controls that are bound to your BindingSource. I want to be able to dynamically enable or disable the collection of controls based on whether my user is in edit mode or not.
Back
Top