Search results for query: *

  1. M

    Get click point on a form ?

    yeah, I also think so, but don't know how to get which button being clicked , can you help, plz ?
  2. M

    Get click point on a form ?

    I have a custom control, it is just a chessboard made up of 64 buttons. I add the chessboard control to the form and display it. When users click on the chessboard, I wanna get back which button of the chessboard is clicked. Below is what I do: public class Screen dim WithEvents...
  3. M

    Get click point on a form ?

    Hello everyone, I'm a newbie in VB.NEt, plz help me with this. I need to get the point of the mouseclick on the form. How to get that ? I know I must process the Click event, but I don't know what to do inside that Sub. thanks for reading.
  4. M

    Modify XML attribute, how ?

    I have an xml file like below: <?xml version="1.0" encoding="utf-8" ?> <chessBoard columnNo="50" rowNo="50" DX="20" DY="20" Turn="X" > <item x="0" y="0" Value="X" /> <item x="0" y="1" Value="O" /> <item x="1" y="0" Value="X" /> <item x="0" y="2" Value="O" /> </chessBoard> I want to...
Back
Top