Search results for query: *

  • Users: styxke
  • Content: Threads
  • Order by date
  1. S

    Compatibility between 1.1 and 2.0

    Hi all, I have ported my webservice from .NET1.1 to .NET2.0 but my applications work with a reference file for the 1.1 version (and it's not possible to recompile all existing applications). When I put the 2.0 version online, the applications generate an error like "Soap header not understood"...
  2. S

    Updating a running service

    Hi all, First of all, some info: We have developed an updating system for our company to automatically update our clients with the newest software. This is done by a .NET service that is running on the client. Question: How do I proceed best in getting the service to update itself? Now I have...
  3. S

    NetworkAvailabilityChanged

    Hi all, I have this code: AddHandler System.Net.NetworkInformation.NetworkChange.NetworkAvailabilityChanged, AddressOf NetAvailabiltyChanged Public Sub NetAvailabiltyChanged(ByVal sender As Object, ByVal e As Net.NetworkInformation.NetworkAvailabilityEventArgs) If Not e.IsAvailable...
  4. S

    Onvalidating in editorcontrol

    Hi, Is it possible to use an Onvalidating event in an editing control in a datagridview? I wrote something like this: Protected Overrides Sub OnValidating(ByVal e As System.ComponentModel.CancelEventArgs) MyBase.OnValidating(e) If Me.Text <> String.Empty Then If Me.Text <>...
  5. S

    Keypress of DataGridViewCell

    Hi, I'm trying to catch the KeyPress event in a datagridviewcell. Here is some code: Public Class CommonDataGridViewTextBoxColumn Inherits DataGridViewTextBoxColumn Private _uppercase As Boolean Public Property Uppercase() As Boolean Get Return _uppercase End Get...
  6. S

    Validating event

    Hi all, I have two textboxes on a form which have both a Validating event. One is derived from a commontextbox class which in turn has a validating event in the base class. When I enter something in the textbox which isn't derived it does it's own validating but here I need to raise the...
  7. S

    Click event strangeness

    Hi, I have a commonbutton class derived from the Button class with some code in the Click event handler. When the commonbutton is placed on a form and clicked it performs the buttons click event in the form and in the commonbutton class. Now I have this problem: I have a listview on the same...
Back
Top