Search results for query: *

  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

    It looks like the 3.5 isn't even an option for download into the service. 3.0 is an option.
  3. 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?
  4. E

    Weird DataGridView Problem

    Figured it out I've figure out that if you back space all the way in the cell of a datagridview, it changes the value to "nothing", that was being passed to my object in the property set which had some validation of the value. Trying to validate the the length of nothing was causing the error...
  5. 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...
  6. 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...
  7. 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.
  8. E

    getting data from another server

    More information, This code works when i run it on my local host, when i move it to our web server it does not work. Also, it doesn't seem like it's using the given credentials at all, i purposely put in a bad login and it still worked on my local host. Is there something I have to...
  9. 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...
  10. 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...
  11. E

    Checkbox appearance in datagridview

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

    MaskedTextBox ?

    Thanks works very well
  13. 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...
  14. E

    IBindingListView and Filtering

    Thanks!! Got it working
  15. E

    IBindingListView and Filtering

    So, does this apply the filter or do you have to create a custom procedure to apply the filter?
  16. E

    IBindingListView and Filtering

    I have a class called ProjectList that inherits BindingList(Of Project) I also implements IBindingListView and return True on SupportsFiltering() When i implement IBindingListView, I'm not sure what to do with the Filter Property Public Property Filter() As String Implements...
  17. E

    IBindingListView and Filtering

    Has anybody implemented filtering on a collection of objects through the IBindingListView interface?
  18. 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.
  19. E

    Is it possible to bind to a collection of classes?

    Check out this article by Rockford Lhotka, very helpful with object data binding. http://www.15seconds.com/issue/040614.htm
  20. E

    Stop Auto Generate of Columns in DataGridView

    thank you! easier to find programatically rather than in the properties window of the DataGridView
Back
Top