all groups > c# > october 2005 > threads for saturday october 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 31
dynamic loading of dlls
Posted by dhnriverside at 10/1/2005 11:35:03 PM
Hi guys
I'm writing a console app in C# for which i want to enable the user to have
several "plug-ins". The app has a switch to set the plug-in to use, and at
runtime the required dll is loaded and executed.
I had thought I could do this with a C# class compiled, and just load the
releva... more >>
how to update the database after the user updates data in datagrid?
Posted by Annie at 10/1/2005 10:12:55 PM
hello all,
How to update the data after the user updates the rows and columns in the
data grid?
I use datagrid.Update() method but nothing works?
thanks
... more >>
winform startup/splash screen
Posted by Tom at 10/1/2005 8:58:21 PM
Hi all
In winform application I am trying to start 2 forms I am trying to show the
2nd winform on a separate thread.
using
Thread mainapp = new Thread(new ThreadStart(loadmainscm));
mainapp.Start();
//where
private void loadmainscm() {
SCM.frmSplash frmsplash = new frmSplash();
... more >>
I need to learn how to create a click event for 2.0 LoginStatus control...
Posted by clintonG at 10/1/2005 8:14:45 PM
The LoginStatus control does not have a click event.
If anybody is at all familiar with this control and can explain how to
create a click event I'm ready to learn something new.
<%= Clinton Gallagher
... more >>
Distributed application
Posted by Joris Dobbelsteen at 10/1/2005 7:27:03 PM
Dear,
I have some considerations I need to take designing a distributed
application (it's for a school project). Basically I'm looking for some
reference or guidiance material/literature and advises on (potential) issues
I should take caution for.
The design involves a distributed simula... more >>
ActiveX Control Not Appearing in HTML
Posted by yotaxp NO[at]SPAM gmail.com at 10/1/2005 7:09:20 PM
I've been attemping to author controls in C# for use in an HTML
document, without success. I've followed two tutorials, and both
turned out the same... with the red X, or "corrupt" icon. There isn't
really much information I could give but I've been testing the control
in Internet Explorer 6.0... more >>
ComboBox Behavior in DropDownList
Posted by C Glenn at 10/1/2005 7:06:40 PM
I am trying to create an incremental search feature within a ComboBox.
I'm finding the successive members of the list alright but I haven't
been able to figure out how to stop the ComboBox from changing the
SelectedItem when the user types a key.
Does anyone know how to turn off this 'featu... more >>
simple question about garbage collection
Posted by bkazlak NO[at]SPAM yahoo.com at 10/1/2005 6:48:21 PM
Hello,
I have a quick question might help me understand garbage collection.
let's say I'm having a static collection of objects in one class, so
this collection should be cached and present all time. Now if a method
in another object clones this collection, when would be the cloned
collecti... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Help,How to get the total time elapsed since the system started(more than 1 month)
Posted by Rene Ren at 10/1/2005 3:32:58 PM
I can using Environment.TickCount property to get the time elapsed since the
system started. but this property using A 32-bit signed integer type, so
it's can't count the time more than 24.9 days.
How can I do ?
tks
... more >>
Timeout on Stream Reads
Posted by Helge Jensen at 10/1/2005 11:26:50 AM
I am implementing a protocol which transmits messages. The messages are
most naturally transferred using the a Stream so the protocol can
communicate over serial-ports, network links, ....
If the other party never answers I must timeout -- not block, and this
gives me a problem, since the Stre... more >>
How to enter data in a SQL database?
Posted by markaelkins NO[at]SPAM newsgroups.nospam at 10/1/2005 6:19:01 AM
I want to create a simple user interface to collect the following data and
store the data in a SQL database…. Could someone please help me get started?
Data to collect from user interface and store in database:
tDateS (trade date sell)
tDateB (trade date buy)
contracts (number of contracts... more >>
Mdilist property don't return the mdichild
Posted by Mayolo Juarez via DotNetMonster.com at 10/1/2005 3:55:15 AM
yes ina a contex menu i activate de the property mdilist and i can´t see the
mdichild listed in the contexmenu, only dont show me the mdi child i use net
framework 1.1 and vs2003, sll its correct prove your selfe and try to do that
i try and you can't see the mdichilds
--
Message posted ... more >>
Generics with singleton
Posted by Senna at 10/1/2005 2:55:02 AM
Hi
Have a singleton class like this.
public sealed class ProductAdapter
{
private static readonly ProductAdapter instance = new
ProductAdapter();
private ProductAdapter(){}
public static ProductAdapter Instance
{
get
{
... more >>
|