Search results for query: *

  1. S

    Compatibility between 1.1 and 2.0

    That was indeed the problem. Thanks!
  2. 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"...
  3. 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...
  4. S

    NetworkAvailabilityChanged

    My code in fact works but after some investigation VMWare was the guilty one. It keeps a couple of network interfaces open and the event never fires ... so after uninstalling VMWare, it works perfectly !
  5. 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...
  6. S

    Onvalidating in editorcontrol

    Thanks for your answer. I override these methods in the editing control: OnKeyPress,OnTextChanged,OnGotFocus,OnValidating Protected Overrides Sub OnKeyPress(ByVal e As System.Windows.Forms.KeyPressEventArgs) MyBase.OnKeyPress(e) If Me.Uppercase Then e.KeyChar = Char.ToUpper(e.KeyChar)...
  7. S

    Onvalidating in editorcontrol

    Yes, I'm sorry, I forgot to mention it.
  8. 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 <>...
  9. S

    Keypress of DataGridViewCell

    Thanks for all your help. I finally got it to work ... I forgot one line in InitializeEditingControl which turned it all upside down ...:)
  10. S

    Keypress of DataGridViewCell

    Thanks again for the links. These are helpful! Do you maybe have a simple example how to propagate such property ?
  11. S

    Validating event

    Ok, thanks for your input.
  12. 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...
  13. S

    Validating event

    Ok, but I don't think I was clear enough. I want to raise a Validating event of a textbox when a user clicks a button for examlpe. Thanks in advance.
  14. 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...
  15. S

    Click event strangeness

    This indeed solves my problem. I wasn't aware of this so I learned something new today. Thanks !!
  16. 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