all groups > dotnet windows forms > may 2004 > threads for thursday may 20
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
ComboBox in DataGrid - Stuck! Help with Debugging!!
Posted by sirinya16 NO[at]SPAM hotmail.com at 5/20/2004 9:07:23 PM
I've been trying to put a them, please help me out.
Here's the major parts of my code:
public Form1()
{
DataSet myDataSet = new DataSet("myDataSet");
DataTable testTable = new DataTable("table");
testTable.Columns.Add("Col1", typeof(Int32));
testTable.Columns.Add("Col2", typeof(String... more >>
VB.NET and ODP.NET How to compile a function
Posted by Klaus Klöser at 5/20/2004 6:05:08 PM
Hi,
I am using the Oracle Data Provider ODP.NET which extends the ADO.NET.
What is the best way to create a function within the Oracle Database ?
e.g.
"function test (f_text in varchar2)
return varchar2
is
begin
return f_text||' processed !';
end;"
If I send that string over or... more >>
windows.forms handlers
Posted by LILkillaBEE aka Nikola at 5/20/2004 2:33:54 PM
is there possibility to get a list of functions, those which handles some
windows.forms event?
exp:
tBox.Validating += new CancelEventHandler(tBox_Validating);
can i know somehow that validating event have handler and maybe which one?
thx
--
-----------------------
sibinj to tokyo
... more >>
UseItemStyleForSubItems Property of ListView Control Causes Flicker?
Posted by mhetherington at 5/20/2004 1:46:05 PM
Through testing, I believe I've proven that setting UseItemStyleForSubItems = False on ListView controls introduces "screen flicker" whenever items/subitems are added or modified in a ListView. The "screen flicker" problem disappears when UseItemStyleForSubItems is set to True (the default setting)... more >>
Difference in Dispose and Close
Posted by Alok at 5/20/2004 1:23:59 PM
Can anybody tell me the difference between
Form.Dispose() and Form.Close() ??
It would also be helpful in terms of performance et al...
TIA :)
... more >>
What is the best dataset approach in a database application
Posted by David J at 5/20/2004 12:26:04 PM
Hi
I am just wondering what is better and what is the general accepted method of using a dataset. In my wannabe application I am creating agains a db, I guess like most apps, with a lot of different forms. My question is what is better, create different datasets for each different occasion or creat... more >>
Form's Move event from derived class getting called 3 times instead of once
Posted by Augie at 5/20/2004 11:08:17 AM
Hi All.
I have a class that subscribes to a Form's Move event on the constructor.
SeaPersistWindow::SeaPersistWindow(Form *form, String *path)
: mParent(form), mRegPath(path)
{
mParent->Move += new System::EventHandler(this, SeaPersistWindow_Move);
}
When the Form is moved, the ... more >>
Setting an Icon in a Form
Posted by Joel Chacon at 5/20/2004 11:01:40 AM
Hi.
I'm trying to simply add a custom designed Icon to my forms.
I made the .ico file in VisualStudio and saved it.
Then, I set the Icon property of the Form and... it works!... but; after
that, sometimes, the icon I designed is replaced by a gray defult-like icon.
What happened?
I tried... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
custom form designer - selection
Posted by Tomasz D±browski at 5/20/2004 10:02:50 AM
Hi,
I am implementing custom form designer that will allow to design user forms
in my application.
What I want to achieve is a form (panel) that is able to switch between
runtime and design mode.
I have implemented IDesignerHost and related interfaces. Also I have added
most of t... more >>
How do I show download progress?
Posted by John Galt at 5/20/2004 9:33:38 AM
I would like to be able to show progress in an FTP download. I can determine
the file size but am unclear on how to show percent complete in a progress
bar.
I'm guessing I will need to spawn a separate thread for this?
Does anyone know how this might be done?
... more >>
How do I write to the MDI Parent statusbar from a MDI child form?
Posted by Tom at 5/20/2004 9:07:12 AM
Anyone know how to do this?
... more >>
I want to put a progress bar for an FTP download... is it possible?
Posted by Tom at 5/20/2004 7:48:10 AM
I have a situation where an FTP download can take several minutes, depending
on file size and bandwidth (varies from wireless to internal LAN) and I
would like to give an estimate of download time as well as display a
progress bar.
In order to do this, it would be helpful to know the size of t... more >>
Datarow datatype defining?
Posted by Ahmed at 5/20/2004 1:12:48 AM
All of a sudden a bug crept up in my program where i am inserting something
in a newly created datarow.
Here is a little sample:
drCurrent = tblCalls.NewRow() 'Now this is how i define a new datarow
(drcurrent is a datarow datarow)
drCurrent.Item(0) = timeStart
drCurrent.Item(1) = timeEnd... more >>
2.0 secs lost when launching applications via No Touch
Posted by sunil NO[at]SPAM volcanomail.com at 5/20/2004 12:44:54 AM
Dear All,
1.. The application stub program is deployed on the client machine as a
smart client application c:\proj\proj1.exe
2.. This proj1.exe is a launch program to launch the required module
3.. The module - its assemblies and resources are on a remote server
4.. The proj1.exe laun... more >>
Adding Non .Net files as embedded resource
Posted by sunil NO[at]SPAM volcanomail.com at 5/20/2004 12:41:30 AM
Dear All,
I have added a Word document as an embedded resource in my assembly
that I try to extract and copy it into my client machine...but this is
not working...it gives junk characters...any ideas...
Stream outs = Assembly.GetExecutingAssembly().GetManifestResourceStream("ReadMe.doc");
... more >>
|