all groups > dotnet windows forms > september 2003 > threads for monday september 1
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
Getting the index of an Image from an ImageList - HOW?
Posted by Terry at 9/1/2003 10:35:08 PM
This seems like something that shouldn't be very difficult. But, how is one
supposed to get the index of an image in an image list from the reference of
the image?
I'm using VS .NET 2003 with .NET 1.1 and it says the "IndexOf()" method of
the ImageList.ImageCollection class is "Not supported"... more >>
MultiForm and an ArrayList
Posted by The1st_SkyRunner NO[at]SPAM Yahoo.com at 9/1/2003 5:04:32 PM
Hi ,
In C#
I have a problem when I need to get the ArrayList Data in
another form
My ArrayList is empty .
I write this code to show you the problem
Please help
Form1 :
Public ArrayList Arr = new ArrayList() ;
for (int i = 0 ; i < 20 ; i ++ )
{
Arr.Add(i) ;
}
Form2 ... more >>
phone and dates
Posted by rguti at 9/1/2003 4:13:46 PM
Hi,
How do you go about formatting phone and dates? I don't really want to
format after they put in the information, it will be better if the
formatting occurs as they put in the information. Do I have to write this
from scratch? Some other programming languages have settings for this but I
c... more >>
How to use standard windows terminal font and related problems.
Posted by Roman Kohoutek at 9/1/2003 4:00:02 PM
Hello,
i am trying to figure out how to set to my TextBox.Font property to
'standard fixed width terminal font', or 'system oem font' or 'any other
monospaced/fixedwidth standard windows font'. There must be some 'trick' to
set it because i am not able to select 'terminal' font when developing... more >>
How To Code in pure object oriented fashion in VB.NET
Posted by GMButler at 9/1/2003 1:13:11 PM
When coding in any language in a pure object oriented
fashion, it is imperative that the language support
polymorphism, inheritance and encapsulation. How does
one completely encapsulate the data and behavior of a
VB.NET object such that the methods and properties are
executed or set by t... more >>
MDI Solution Management
Posted by Mike at 9/1/2003 12:56:19 PM
I have a solution with several projects. The first being
the exe and is the MDI Parent form. I have a ton of
properties and methods that I have set up in this form to
do stuff. I have all my MDI child forms in this same
project and my project size is getting way too big. I
would like t... more >>
VS 2003 Debugger - static void Main()
Posted by Dave at 9/1/2003 11:41:20 AM
Hi,
Why does the VS.NET 2003 debugger sometimes stop in static void Main() in my
application when I hit 'Debug/Start' and sometimes not?
There is no breakpoint set in there, it just seems to have a mind of it's
own to stop every now and again. Is there a reason for this that I'm
missing?
... more >>
User Control
Posted by Karuppasamy at 9/1/2003 9:54:31 AM
Hi
I have created a User Control Containing a Panel and Rich Text Box. The
Panel
contains some other controls used for formatting the Text entered in the
Rich Text Box.
My Requirement is that The Panel has to be visible only when the User
Control got Focus and the Panel should not be shown... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
XP style buttons, etc.
Posted by Stephen at 9/1/2003 9:49:36 AM
I have read the article "Using Windows XP Visual Styles
With Controls on Windows Forms" and have gotten an
application to run with the new styles, but isn't there
an easier way? Not only do you have to do all of this
manual file editing, but you can't even deploy the
application after it'... more >>
Validate a form
Posted by nico193 at 9/1/2003 9:16:55 AM
In a winform, before saving, I call the function
this.Validate() to make sure all controls contents are
good (verifications are made in the Validating event of
each control).
In some cases, the call to the validate() function returns
false. How can I know which control causes the validati... more >>
mdi forms
Posted by Geraldine Hobley at 9/1/2003 9:08:43 AM
Hi,
I'm having a problem with an mdi form that keeps going
to the background. I wish it to stay to the foreground all
the time.
the code I have to display the form is as follows:
Public childform As New frmMyform
childform.MdiParent = Me.MdiParent
childform.Location = New System... more >>
mdi forms
Posted by geraldine Hobley at 9/1/2003 9:02:52 AM
Public mychildform As New frmProject
... more >>
BUG: Dataset Returned From A XML WebService Containing Error Data Caused Exeption To Be Thrown In A Window Form Application
Posted by Programatix at 9/1/2003 8:59:27 AM
Hi,
I'm working on a project which includes XML WebServices and Windows Form
application.
The Windows Form application will call the XML WebServices to retrieve data
from database. The data will be returned as DataSet.
Now, here's the problem. On .NET Framework 1.1, if any rows in the dat... more >>
Strange dialog behaviour unter Windows NT 4.0
Posted by thomas.schoeniger NO[at]SPAM t-systems.com at 9/1/2003 2:56:21 AM
Hi all,
i have a C# app with a modal dialog. After showing the dialog via
ShowDialog() it often disappears after moving the mouse over it. When
i click somewhere on the main app window the dialog is shown again.
I'm using .net Framework 1.1.
This don't happen under Windows XP. I cannot repr... more >>
|