Search results for query: *

  1. C

    Rectangle Co-ordinates.

    Drawing Circle. Hi, I am allowing users in my application to draw an elipse by dragging with the mouse. My code is below. The problems are: 1. I want them only to be able to draw a circle(this is for a tool to create HTML imagemaps) 2. I want to get that circle's centre point and radius when I...
  2. C

    Drawiing shapes & getting their co-ordinates?

    Hi. I'm completely new to image editing with vb.net. What I want to do is to create a tool to help the user create imagemaps for HTML pages. So bascally, I want the user to select a shape(square, circle, or polygon) from DropDownList1, and then be able to draw that shape on a picturebox(Pic1)...
  3. C

    Problem with MSHTML.

    Hi. I have been given this code, which should give the properties of a HTML Element, but it WILL NOT WORK for me! Try it. Create a new form, with a webbrowser & a propertygrid, and here is the complete code: Imports System.ComponentModel Public Class Form1 Private Sub Form1_Load(ByVal...
  4. C

    Finding element represented by treeview node?

    Hi, I am making a HTML Editor, and in it I have what I call an "Elements Treeview", which is basically just a TreeView view of your doocument, e.g. there will be a node for the body tag, and then child nodes for all tags inside that, then child nodes for all tags inside those, and so on. Now...
  5. C

    Can someone convert this code(VB6 To VB.NET)?

    Hi, I have already found code for what some of you may have thought impossible - masking characters typed in an inputbox by replacing them with "*" The problem is it's in VB6, and in VB.NET I get errors I don't understand such as "As Any satement is not supported" and I don't understand the code...
  6. C

    Seperate certain items from an array?

    Hi, I am making an application where I want to provide an autocomplete listbox, so if the user types "ab", it will show all strings in my array that start with "ab". I know how to find the first item in an array that begins with a string, but how can I seperate all strings beginning with "ab"...
Back
Top