all groups > dotnet windows forms > july 2003 > threads for thursday july 31
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
DataGrid question
Posted by Vadym Stetsyak at 7/31/2003 10:59:45 PM
Hi there!!!
Is it possible to insert a button contol into the cell of the datagrid???
--
Vadym Stetsyak
PDS
... more >>
How Do I Capture Mouse Wheel Movements?
Posted by Tony Lin at 7/31/2003 9:56:11 PM
I have a Microsoft wheel mouse. When focus is on a scrollable panel, I
would like to capture mouse wheel movement events to make the panel scroll
as the wheel is turned.
I don't see a mouse wheel event in the Windows.Forms.Control or panel
control.
Is there a way I can capture this... more >>
An If Then but Different
Posted by Brian P. Hammer at 7/31/2003 9:02:20 PM
All,
I am trying to calculate an if statement base of a value of 12 =
multiplier. I'd much rather not have to type this all the way up for 60 =
years. How can I turn my if statement into something like If Period =
=3D 12 or multiplier of 12 then?
For Period =3D 1 To TotPmts
'... more >>
Could not instantiate ActiveX control because the current thread is not in a sin
Posted by bears at 7/31/2003 6:05:18 PM
Hi,
I have a .NET .DLL called by a VB6 EXE. The following
error message is when trying to instantiate a form in
the .NET .DLL:
Could not instantiate ActiveX control 'c932ba85-4374-101b-
a56c-00aa003668dc' because the current thread is not in a
single-threaded apartment
Some documents... more >>
Icons and Listviews
Posted by Chris Willis at 7/31/2003 5:25:13 PM
I've got a series of items in a listview that contain icons in the first
column. These icons are basically squares of specific colors (i.e. red,
yellow, dark gray). When one of the items is selected and subsequently
highlighted, the selected color is also applied to the icon, changing it to
da... more >>
Unable to Merge Menus...
Posted by Mike Andrews at 7/31/2003 5:11:49 PM
Guys,
I've created a simple MDI form with a Top-Level menu and another Form with a
Top-Level Menu. I was under the impression that their menu items were
supposed to merge when I loaded the sub-form as a child of the MDI form.
However, nothing happens. No merging takes place. I can't seem to... more >>
VS.NET Installer Documentation
Posted by David Elliott at 7/31/2003 4:08:26 PM
I was wondering if there is any documentation on how to create an installer using the VS.NET Installer Project. I have played with it and understand
some. I am specifically interested in how to:
1) See if .NET is installed and install if necessary
2) See if a database is installed (MSDE) and ... more >>
Opening a form over a control
Posted by RC at 7/31/2003 3:45:23 PM
Can anyone explain how set the location of a new windows form based aginst
the current loctaion of a control on a form, ie formA has a text control in
a group box and when the user starts typing in the text box I want to be
able to open a new form over the exact location of the textbox. the prob... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Selecting a directory dialog
Posted by Ray Price at 7/31/2003 3:36:38 PM
Is there anyway I can use the common dialogs
SaveFileDialog for example, to select a directory? Seems
it just opens the directory when I select it, and I don't
see any flags to turn that functionality off.
Thanks
Ray
... more >>
resize panels smoothly
Posted by Ching-Lung at 7/31/2003 12:40:05 PM
Hi,
I have a windows form with a button and 2 panels. All
Panel.Dock = DockStyle.Left
-------------
| | |
| 1 | 2 |
| | |
-------------
When I click on the button, I want panel 1 to shrink and
panel 2 to grow in width:
int i = p1.Width;
p1.Width = p2.Width;
... more >>
Trying to Auto Deploy Windows App (No Luck!)
Posted by Ian at 7/31/2003 12:22:35 PM
I am using a call application that has a button with the=20
following code to have the windows application sitting on=20
the web server come up.=20
Private Sub Button1_Click(ByVal sender As System.Object,=20
ByVal e As System.EventArgs) Handles Button1.Click=20
Try=20
Dim formAsm As [Assembl... more >>
Making control size fixed (like PictureBox.SizeMode)
Posted by WWalden at 7/31/2003 10:52:09 AM
How can I make my control have a fixed size?
I want it to act exactly like the PictureBox control does
when SizeMode is set to AutoSize.
Thanks!... more >>
WebBrowser ctrl: switch off context menu in C#?
Posted by Guenter Rudolph at 7/31/2003 10:30:51 AM
Hi,
I am using the AxSHDocVw.AxWebBrowser
web browser control in my windows forms
application in C# and I would like to
switch off the context menu of the browser.
Currently, I only found a solution for c/c++:
It seems that one has to implement the
IDocHostUIHandler interface, which should... more >>
Long drawing loop cancellation
Posted by azhitlenok NO[at]SPAM nanoink.net at 7/31/2003 10:03:28 AM
Thinking about a standard "silly" problem of giving a user an option
to cancel long drawing loop, I read a lot of articles and did some
investigations of my own. (I work with C# .Net 2003).
My application must provide a very sophisticated drawing, which is
actually a millions-length sequence of ... more >>
Cannot find CrystalReportViewer control
Posted by Allison at 7/31/2003 9:08:08 AM
I did a full installation on VB .NET version 7.0 and .NET
framework 1.0. I tried to find the CrystalReportViewer in
the Toolbox but I couldn't. I also tried to look for it
in Tools/customize toolbox but still weren't successful.
Is it something to do with the VB .NET standard version
or en... more >>
transfer a value from one form to another
Posted by JD at 7/31/2003 8:59:39 AM
I have a form with a textbox that will hold a mean value. When the textbox
gets focus, another form pops up, values are entered, and the mean value is
calculated. The mean value is stored in a Public variable. The two forms
are in different classes. How do I transfer this value to the original... more >>
WebControl problem.
Posted by rc at 7/31/2003 5:47:25 AM
I am trying to iterate through the elements of a HTML
document loaded in a WebControl on a WinForm. I have
found many exemples and most of them are like the
following piece of code. Unfortunally this only catch the
tags HTML, STYLE, SCRIPT, HEAD and TITLE. I need to get
all the elements o... more >>
Excel Automation
Posted by carlos.cruz NO[at]SPAM algeco.pt at 7/31/2003 3:45:29 AM
Hi,
Is there a way (in VB.NET) to handle an opened Excel Process by his ID and
start using it as an Excel.Application object ???
Thanks in advance,
Carlos Cruz... more >>
|