all groups > dotnet windows forms > october 2004 > threads for wednesday october 27
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
question about datagrids and databinding -Am I making work for mys
Posted by B. Chernick at 10/27/2004 9:35:02 PM
Ok, bear with me. I've just spent the evening looking at tutorials and
samples and I am getting confused.
I have an extremely conventional set of order header/order detail tables,
the details bound to a header record by the usual order number.
What has me confused is this. I would like... more >>
exception when trying to view Designer for my windows form:
Posted by xbow1 at 10/27/2004 7:01:02 PM
I have made a windows app using Visual C# .NET and have been designing a form
using the form designer and writing code. It was working just fine until
recently (I could view the code or view the designer just fine). Now, when I
try to view the designer, I get the following error message:
... more >>
HOw to populate the combo box in C#?
Posted by raj at 10/27/2004 5:49:04 PM
I have a combo box (C#)that I want to populate from a SELECT query How to do
this?... more >>
Help on System.Drawing.Printing.PrintDocument
Posted by Mae Lim at 10/27/2004 5:41:01 PM
Question which is involving "System.Drawing.Printing.PrintDocument".
How to check the printing status of the document I sent to printer ?
How do I check the printing queue using this object ?
How do I cancel the printing ?
Is there any other way to check the printer status ?
Please provi... more >>
Error Generating Win32 resource.... (bug in VS.NET 2003)
Posted by ~~~ .NET Ed ~~~ at 10/27/2004 5:27:44 PM
this seems like a bug to me. I use VS.NET 2003 with the framework v1.1. I
had a project that grouped all the common forms I would use in other
solutions. There are icons associated with these forms.
This week I had to reorganize my development tree, things got moved around
by prune & graft. It... more >>
fonts with same lenght per character
Posted by Ken at 10/27/2004 4:21:02 PM
Hi
I'm looking for the fonts whose character's size is the same no matter what
character is.
this is because I'm printing a receipt and I need that each column has the
same lenght, just to make it look better.
I only know Courier news has it, but I'm looking for more to have a variety ... more >>
DataGridBoolColumn and Arraylist don't work right
Posted by Keith at 10/27/2004 4:21:01 PM
Hi,
I have a datagrid, datasource is an Arraylist. I've been able to add the
columns I want; a few string columns and a few DataGridBoolColumns. The
ArrayList is being populated before the form is opened, and all the data
appears on it as I would expect, except for the DataGridBoolcolumns. ... more >>
Threading and updating form question.
Posted by Roger at 10/27/2004 3:03:56 PM
I have a function that is currently wrapped up in a Class so I can pass a
variable to it.
This function is going to be threaded out and I would like the class
function to be able to update a control on my form. (Treeview).
Is this possible and how do I do it?
Here is a simplisitc overv... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Multiple Windows when using AxWebBrowser
Posted by Sathish at 10/27/2004 2:25:12 PM
Hello,
I am developing a Windows Foms application that is hosting a WebBrowser
control. I am trying to open multiple windows of my application. I am able
to do that by using the following code in my New Window event:
Form1 newWindow = new Form1();
e.Equals(newWindow.axWebBrowser.Applica... more >>
reference a public property in another Form?
Posted by nick at 10/27/2004 1:44:29 PM
I have a main form, with a public property. And this form open another form
by click a button. Is it possible that the new created form access the
public property of the main form?
public class MainForm : System.Windows.Forms.Form
{
......
public string P1;
private void mniFreeze_Cl... more >>
Treeview Control
Posted by jcb1269 at 10/27/2004 1:21:01 PM
Where can I find good information on adding nodes nad childnodes to a
treeveiew. I'm trying to do the following:
IN THE TREEVIEW CONTROL
Event
--> Weightclass
---> Lightweight
Person
Person
... more >>
how to call a form from a thread
Posted by Suhail Kaleem at 10/27/2004 12:07:33 PM
Hi !
I can call form2 from main thread but when i create a child thread i cannot
call form like
Dim frm as new form2
frm.visible = true
now this only works in mian thread so my question how do call a form from a
child thread ?
Thanks
... more >>
how to call a form from a thread
Posted by Suhail Kaleem at 10/27/2004 12:06:36 PM
Hi !
I can call form2 from main thread but when i create a child thread i cannot
call form like
Dim frm as new form2
frm.visible = true
now this only works in mian thread so my question how do call a form from a
child thread ?
Thanks
... more >>
Painting a Drop Shadow under a Form
Posted by Phil Jones at 10/27/2004 11:37:16 AM
I would like to paint a drop shadow behind my forms - like the drop-shadow
that appears behind the mouse, and the StartMenu on XP.
I'm wondering is there some way to go about doing this. I have no problem
creating the complex alpha channel image for this - I just don't know how
and on what... more >>
List control acting up when last item is removed
Posted by David at 10/27/2004 4:11:04 AM
I am using an ArrayList to populate a list control. Let's say the arraylist
has instances of a class called Thing. This has two properties called
ThingValue, and ThingName.
Here is how I bound the list with the arraylist
private void bindList()
{
listBox1.DataSource = null;
listBox1.... more >>
|