all groups > dotnet windows forms > august 2003 > threads for monday august 4
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
Dynamic Parameters With Reflection
Posted by Derek Hart at 8/4/2003 11:45:49 PM
I have the following code:
Me.GetType().InvokeMember(FunctionToRun, BindingFlags.InvokeMethod, =
Nothing, Me, params)
I can send in a string from a database into the FunctionToRun variable, =
and it will run the method in the current class, but I need to read =
parameters from a database in... more >>
Creating and displaying a two dimensional array of picturebox
Posted by daly1 NO[at]SPAM hotmail.com at 8/4/2003 8:00:54 PM
Hi,
The code attached seems to create the pictureboxes but they fail to
display on the form. The items displayed are supposed to be cards from
cards.dll. The code works fine if I provide the hdc of the form
itself, or of a PictureBox that I create myself in the designer.
PictureBox[,] CardF... more >>
Databind using relationships
Posted by priyanka NO[at]SPAM radiotime.com at 8/4/2003 4:45:08 PM
Hi All,
I am trying to display parent child records in two separate datagrids.
The 2 tables have the relationship set in the dataset. I bind the
datagrid using the relationship names, so that when a parent record is
selected in the first grid, the corresponding child records are
displayed in ... more >>
Detecting MDI child form closed?
Posted by T at 8/4/2003 4:44:09 PM
From an MDI form, is there a way to detect if a child
form has closed? I couldn't find an appropriate event.
Thanks.... more >>
Measure Height
Posted by Jeremy Bradshaw at 8/4/2003 4:17:25 PM
How can I measure the height actually used by a TextBox control that shows
multiple lines (with word-wrap on) ? I want to size the textbox to only show
the number of lines actually needed to display all its text, rather than
have a number of blank lines at the end.
... more >>
Calling the Dial-up
Posted by Fabiano at 8/4/2003 2:12:49 PM
Hey,
how can i call from my program the windows dial-up screen dialog or how can
i implement my own dial-up?
tks a lot
Fabiano
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.507 / Virus Database: 304 - Release Date... more >>
Dataset bound fields
Posted by Sol Fried at 8/4/2003 11:50:00 AM
I posted this on framework.adonet but was hoping that someone in this forum
might also have an answer.
I have a TreeView which I populate with a dataset by using code like this...
foreach (DataSet1.CUSTUMERRow dr in myDataSet.CUSTOMER.Rows) {
node = treeView1.Nodes.Add(dr.NAME);
nod... more >>
looking for .NET menus
Posted by jc at 8/4/2003 9:39:02 AM
Hello,
I'm looking for a menu control that has the look & feel of VS.NET menus
(like the one of Magic library) but which can also display a tooltip...
I'm also looking for a VS.NET-like menu that can be used with a
notifyIcon...
Thanks !
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Code Security against DISSASSEMBLING it? Protect intelectual property.
Posted by Peter at 8/4/2003 8:14:02 AM
Hello,
I do have a small application that I have compiled to
test.exe. When I start the ILdasm I'm able to see all my
code, forms everything. What do I need to do to protect my
intelectual property. Please help. ANY suggestion will be
highly appreciated.... more >>
Accessing parallel and seriel ports in .NET
Posted by Michael Lykke at 8/4/2003 8:13:15 AM
Hi
Im in the proccess of developing and application which
needs to communicate with some external hardware and i
therefor need to be able to recieve data from the
parallel/seriel port on a computer.
It's not PC hardware which i am trying to develop a
driver for, but som external measurin... more >>
listbox row color
Posted by Al at 8/4/2003 4:10:09 AM
Hi!
How can I change backcolor, based on item's index?
Which event(s) I must capture to draw this?
BR... more >>
|