Questions about embedded winControl

Ask a Question related to ASP.NET Building Controls, Design and Development.

  1. #1

    Default Questions about embedded winControl

    Hi group,

    i have 2 questions i hope somebody can answer about a wincontrol being
    hosted in ie.

    1. Is it possible to create a pop up that prompts for a user name and
    password when a button on my control is clicked?

    2. Why are there no tooltips for controls in a wincontrol library project?
    is there a way to get this functionality? through an implements call or
    inheritance maybe?

    thanks

    Steve


    A Lonely Programmer Guest

  2. Similar Questions and Discussions

    1. Have asp.net-hosted WinControl write to client
      Hello, I know that you can host a WinControl in ASP.Net. If I want my Windows User Control to be able to write to the client's file system (or...
    2. Databind an embedded control in an embedded datagrid
      All, I have something like the following: Datagrid1 Col1 - bound column Col2 - template column Datagrid1_OnItemDataBound datagrid2 -...
    3. Embedded winControl
      i asked this in another group, sorry for the cross post but i waited a week there the first time i asked an no answer. Can someone tell me is it...
    4. Embedded SQL
      Hi all We plan to write large application (sales, purchase, accounting) in C/C++. It will work with DB2 and other databases (MS SQL and Oracle)....
    5. 2 questions :) - portal questions
      Say the portal displays a relationship that uses the Box_ID field as the match field on both sides. In the child file (items in the box), add two...
  3. #2

    Default Re: Questions about embedded winControl

    > 1. Is it possible to create a pop up that prompts for a user name and
    > password when a button on my control is clicked?
    yes. make a form and call it ofrmlogin then declare an instance of it in the
    control.

    public withevents loginform as new ofrmlogin

    ....code...
    ....more code..

    public sub button_onclick() handles btn1.click

    loginform.showmodal() 'intellisense spells it right, dont worry =)

    end sub
    > 2. Why are there no tooltips for controls in a wincontrol library project?
    > is there a way to get this functionality? through an implements call or
    > inheritance maybe?
    yes drag on off the toolbox onto the control (thanks tim!)

    "A Lonely Programmer" <SpamIsForEating@MMMGood.com> wrote in message
    news:ekbrd8T$DHA.684@tk2msftngp13.phx.gbl...
    > Hi group,
    >
    > i have 2 questions i hope somebody can answer about a wincontrol being
    > hosted in ie.
    >
    >
    >
    > thanks
    >
    > Steve
    >
    >

    Muckeypuck Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139