all groups > dotnet windows forms > july 2003 > threads for wednesday july 16
Filter by Day: 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
display html in Windows Form
Posted by Boban Dragojlovic at 7/16/2003 11:47:04 PM
what control can I use to display HTML in a Windows Form?
(I want to display it as a browser would, and not the actual "HTML source")
... more >>
Scrollable DataGrid with background image..
Posted by Iulian Ionescu at 7/16/2003 11:19:05 PM
For the purposes of a presentation I had to design a datagrid with the =
following properties: the cell's background is painted with a 50% =
transparent color and a bitmap with a logo is displayed in the =
background of the grid. This is all achieved in the OnPaint for the Grid =
and Paint for t... more >>
Righ Mouse in TreeView
Posted by Brian P. Hammer at 7/16/2003 6:30:04 PM
How do I determine what node was clicked with the right mouse button? I =
have a context menu that pops open and have delete as an option. Unless =
the user first selects the node, the node that was last left clicked =
will be deleted and not the one the user right clicked one. Any example =
... more >>
form management
Posted by oliver.wulff NO[at]SPAM zurich.ch at 7/16/2003 5:34:29 PM
Does there exist a common design solution to handle different forms. I
need access from one form to another one. There are about three forms
which will be open all the time. There can exists several instances from
the same form type.
I have the following idea and I'm interested what other peo... more >>
Help with Simple way to Retrieve HTML page
Posted by David Elliott at 7/16/2003 5:19:50 PM
I know I can use
AxSHDocVw.AxWebBrowser browser.Navigate(...);
catch the
browser_DocumentComplete()
and retrieve using the page using
htm = (mshtml.HTMLDocument)browser.Document;
I am looking for a non-GUI way to just retrieve the web page.
I know that there is, I just can't seem to ... more >>
MDI Child drawn in wrong loc
Posted by Bill at 7/16/2003 4:35:17 PM
When I initially draw my MDI child form at location 0,0 it
appears fine.
If I hide the window via
(Set Visible to false & SendToBack())
then redisplay it
(Set Visible to True & BringToFront()),
the Window is diplayed 44 pixels off at location (44,44)
If I repeat this, the wind... more >>
exposing more than one property through extender provider
Posted by Paul at 7/16/2003 4:04:35 PM
Hi folks,
As always help is appreciated.
I'm implementing an extender provider, but would like to extend a few
properties, not just one. Any idea on how to do this without writing a new
extender component for each property?
Also, the property extended shows up in the misc. section of th... more >>
Form Inheritance controls Issue
Posted by Nancy at 7/16/2003 12:18:43 PM
I have created a template form which contains edit, add,
cancel buttons and each button has some properties sets.
I have inherited the form to another form. I can see the
buttons from the parent form and the properties worked.
How could I add more code in each button for this new form?
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
How to minimum form to bottom by code
Posted by Peter at 7/16/2003 10:04:09 AM
I know that in a form, people can click "minimizeBox" to
send the form to the bottom. But how can I do this by code?
For instance, I have a form with a botton. When the botton
is clicked, this form will be minimize to bottom and
another form will show up.
Thanks!... more >>
How to fire sub on parent form?
Posted by Mark Lam at 7/16/2003 9:17:50 AM
Hello,
I have a form (cmDeptList) that contains a list of entries from a database,
and a separate form I use to add entries to the database. The separate form
is launched when the user clicks a button as follows:
Dim fAddDept as New cmDeptEdit(True)
fAddDept.MdiParent = Me.MdiParent
f... more >>
Q: Ordering/Sorting [Category] text in a PropertyGrid
Posted by Robert Hooker at 7/16/2003 8:04:04 AM
Hi all,
I'm looking for a way to sort/order the Category text items in a property
grid. The grids sort the categories by alpha when the catergories are
displayed.
Does anyone at Microsoft (or anywhere else) no of a way that we can override
that sort/order for the category text?
[ We have i... more >>
Application.Run(Form) required?
Posted by Markus Schertler at 7/16/2003 6:02:58 AM
Hello,
i'm a bit confused. I don't have a main form in my
application.
I start with sub main. And simply had a Form.Show in it.
Now I read that application.Run schould be used. Why?
Can I simply show my form with Form.Show in
Sub Main and end my application with Unload Me in the form?
O... more >>
|