all groups > c# > march 2004 > threads for wednesday march 24
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
Why do I have to override Equals() and GetHasCode() if I add operator == and != ?
Posted by Fernando Cacciola at 3/24/2004 11:38:14 PM
I can't find the answer to that in the Documentation.
Besides, I don't know under what circumstances will Equals() and
GetHashCode() be called.
TIA
Fernando Cacciola
... more >>
Preventing user interaction with operating system(windows 2000) or any window on the desktop while showing a "wait" cursor
Posted by seash at 3/24/2004 11:31:07 PM
H
this is the code in my windows for
------------------------------------
Cursor oldCursor = Cursor.Current
tr
Cursor.Current = Cursors.WaitCursor;
...............SOME PROCESSING............
DateTime dt = DateTime.Now.AddSeconds(10);
while(dt > DateTime.Now)
... more >>
Question on inheritance
Posted by Pavils Jurjans at 3/24/2004 11:14:28 PM
Hello,
I have a question on inheritance, please see the code below for reference:
****************************************************************
using System;
public class Parent
{
internal int id;
public Parent(int id)
{
this.id = id;
}
public void Meth( ... more >>
Invoking webservice
Posted by 2G at 3/24/2004 11:06:53 PM
Hi,
I'm new to webservices and I was wondering when you are able to invoke a
webservice in your browser.
When I return a string in a webservice , then i can invoke it but when I
return a ArrayList that I build from data out of my sqlserver, I can't
invoke it.I think it has something do to wit... more >>
Progress bar without value
Posted by John Baro at 3/24/2004 11:05:36 PM
Anyone know where to find a progress bar without a value that simply scrolls
a couple of segments across the bar such as the one when XP loads?
I had one and lost it :(
Dont have time to make one at the moment.
TIA
JB
... more >>
XML Documentation puzzle
Posted by James Dean at 3/24/2004 10:49:16 PM
I have generated documentation for my application the trouble is i have
many namespaces..........I want to be able to give a brief description
of these but for some reason i don't know how to. There is a description
field in the documentation beside the name of the namespace but does
anybody kno... more >>
[OT] One Last Question WRT Flickering Problem
Posted by C# Learner at 3/24/2004 10:10:14 PM
I was just thinking... maybe this flickering problem is an XP-only thing?
Does anyone who tried my problem reproduction code run XP, and see no
flicker?... more >>
Crash on Startup
Posted by Eric Renken at 3/24/2004 9:23:14 PM
How can I debug an application on a Windows 98 computer when as soon as the
application starts I get a runtime error. This is before anything starts or
happens and there is no details to the error. I think it is because there
is a missing DLL or something. I have both the .NET 1.1 framework... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Get All Supported OLE Data Providers
Posted by Mark Bernardinis at 3/24/2004 9:16:32 PM
I was just wondering if there is a way in CSharp to list all of the
available OLE Data Providers in the system?
Mark
... more >>
Image Transitions
Posted by redmond52 at 3/24/2004 9:01:14 PM
Hi
I want to use a transition effect on th images in a slideshow. I'd appreciate if anybody could help me do a transition effect using C#
Thanks.... more >>
Async Socket IO
Posted by Pete Davis at 3/24/2004 9:00:16 PM
I'm writing an Nntp library and I've run into a problem that I've run into
before with async sockets. I fixed it before, but I don't remember how and
I'm running out of ideas this time.
My receive code is below. My question follows:
private NntpStatusResponse ReceiveData(CallbackType callb... more >>
multithreading in COM+ using C#
Posted by kazi at 3/24/2004 8:18:53 PM
Hi
I'm programming a application use the COM+, MSMQ, SQL server. I want to
use one thread reading the data from the SQL server, and then put then to a
System.Collections.Queue, use another thread get the data from the Queue and
then Send them to the MSMQ.
Now i meet a problem that the C... more >>
DateDiff equiv in C#??
Posted by SilentCry at 3/24/2004 7:46:01 PM
i know i could use the DateTime.DaysOfYear method to get the difference
between 2 dates in days but what if the 2 dates are in 2 different years?
DateDiff takes this into account but it doesn't exist in C#..
... more >>
How to use CreateInstance to retrieve a static member of an assembly?
Posted by Dan Mayer at 3/24/2004 7:39:12 PM
MyAssembly contains a Type ClassA with a member MyStaticSingletonInstance.
I want to invoke this member to get an instance of the singleton. Maybe
I'm missing something but it seems as though this is not possible! The
reason why is that InvokeMember() requres a target instance. To get that
... more >>
ArrayList
Posted by C# newbie at 3/24/2004 7:19:37 PM
Hi,
How can I create a 2-dimensional arraylist ?
Any link or suggestions would be apprecaited greatly.
Thanks
... more >>
How to open word file in RichTextBox coontrol in c#
Posted by Sachin at 3/24/2004 6:51:09 PM
How to open/show/display .doc or .rtf ( having formatted text and pic ) in RichTextBox control in C#. ... more >>
Error trying to set an user's password to the Active Directory
Posted by José Manuel at 3/24/2004 6:43:27 PM
Hi,
I'm getting the following Exception and Message when I try to set an user's
password in the Active Directory, I Would appreciate any help:
The Network path was not found
Description: An unhandled exception occurred during the execution of the
current web request. Please review the st... more >>
time trial based applications
Posted by Bamse at 3/24/2004 6:42:05 PM
hello, i need to make check the date of instalation of a software that i
write;
the instalation date is written somewhere in computer, that's not a problem;
but, to check the diferrence between the present date and the install date,
i need a reliable time source
(i presume that the client will... more >>
How do I CAST a control?
Posted by Johnny Luner at 3/24/2004 6:41:47 PM
I have a control on my page, but I don't know how to CAST it so that I can
access the properties dynamically using FindControl... help. Is it
possible?? since control is not a real class. If not, any solutions
suggestion? Here is the code:
<%@ Register TagPrefix="company" tagname="items" s... more >>
Getting an object from an Extends
Posted by ~toki at 3/24/2004 6:30:06 PM
I have a class called OBJ
public class OBJ : Editor {
public System.Windows.Forms.Button btn;
public OBJ() {
btn = new System.Windows.Forms.Button();
}
}
The Editor class extends a Windows.Forms.Form and have a "save" button.
When it is pressed i need to serialize the... more >>
Inheritance issue with new
Posted by gkrish at 3/24/2004 6:20:58 PM
using System;
public class Animal
{
public string Sleep() { return "Animal::Sleep"; }
}
public class Fish : Animal
{
new public string Sleep() { return "Fish::Sleep"; }
[STAThread]
static void Main(string[] args)
{
Animal objFish = new Fish();
Console.WriteLine(objF... more >>
Open file dialog error
Posted by Clive Foley at 3/24/2004 5:20:24 PM
Hey,
using the OpenFileDialog class is causing me errors. Conside the
following code
private void method1()
{
OpenFileDialog open = new OpenFileDialog()
if(open.ShowDialog() == DialogResult.OK)
{
FileStream stream1 = new FileStream(pathName, etc, etc, etc)
//D... more >>
TreeView Sort
Posted by Jonathan Dixon at 3/24/2004 5:20:24 PM
Can anyonoe tell me is it possible to sort a treeview by the child nodes(
*See Below ) if so can someone tell me where to look
e.g
TreeVIew
|
|_ Parent Node
| |_Childe Node // Sort by this node
|_ Parent Node
|_Child Node // Sort by this node
Regards
J... more >>
Any advise on this?
Posted by C# newbie at 3/24/2004 5:14:03 PM
I have
<first-name>Benjamin</first-name> as you see it's not
<first-name>"Benjamin"</first-name>
how can I find out a node like first-name contains something or not ?
Thanks
... more >>
OpenFileDialog error - help please!!!!
Posted by neo_eire NO[at]SPAM yahoo.co.uk at 3/24/2004 4:57:04 PM
Hey,
using the OpenFileDialog class is causing me errors. Conside the
following code
private void method1()
{
OpenFileDialog open = new OpenFileDialog()
if(open.ShowDialog() == DialogResult.OK)
{
FileStream stream = new FileStream(pathName, etc, etc, etc)
//Do... more >>
Never get SqlCommandBuilder to work
Posted by jimmy.tieu NO[at]SPAM ultimate.net.au at 3/24/2004 4:54:53 PM
Dear all,
Any one of you have successfully use the SqlCommandBuilder? I am
pissed off by it, I have tried out several tutorials but stil have got
it working yet :(
Any working examples would be much help to me.
Thank you very very much.
Cheers,... more >>
static vs. instance variables
Posted by Aaron Irizarry at 3/24/2004 4:48:21 PM
When should I use static variables and when should I use instance variables?
I'm working on a class X and initially (for some reason I yet do not know),
I declared some variables static but the methods weren't. So I'd initialize
fill the variables statically and then I'd create an instance of X ... more >>
Memory-usage DataSet compared to XML-file-size
Posted by dennis NO[at]SPAM hotmail.com at 3/24/2004 4:43:29 PM
I was wondering, if you load an XML-file into a DataSet,
how much memory will take this up, compared to the size
of the XML-file on disk ?
I'm curious because most of the size of a XML-file is taken
up by its tags. If you compress a XML-file into a ZIP-file,
it becomes about 8 ten times sm... more >>
InitializeComponent code being mysteriously deleted
Posted by Terry Lindeman at 3/24/2004 4:40:53 PM
I managed to find some old posts through Google related to this, but none
that is recent. This appears to have been a mystery for some time.
For the first time, I checked my ASP.NET sources into SourceSafe yesterday.
Today the automatically generated code from InitializeComponent was gone
fro... more >>
Socket listener with multiple IPEndPoints???
Posted by g3 NO[at]SPAM fastmail.ca at 3/24/2004 4:35:14 PM
I'm trying to figure out if it is possible to bind multiple IPs to the
same Socket listener. For example, when I bind my LAN IP to the
socket, Only computers on my network are able to connect to the
server. When I bind my External IP, everyone except computers on my
network can connect to the ... more >>
how to find out a node has text or not ?
Posted by C# newbie at 3/24/2004 4:32:08 PM
Hi,
How can I find out a node into an xml file contains text information or not
?
thanks
... more >>
Getting Console.Out to Forms.Textbox
Posted by George W. at 3/24/2004 4:07:47 PM
I have several classes as part of a Console Application that sent output
to the Console. I want to use these classes as part of my Windows App
and I'm looking for a way to send the Console.Out to a TextBox or
something similar in my Form. I already know about Console.SetOut() but
I want the ... more >>
Update database from dataset
Posted by jimmy.tieu NO[at]SPAM ultimate.net.au at 3/24/2004 3:58:43 PM
Hi all,
I am new to .NET, Any idea that I can't get the below to work?
It gave me this error:
<An unhandled exception of type 'System.Data.SqlClient.SqlException'
occurred in system.data.dll
Additional information: System error.>
Any help would be greatly appreciated.
Assumption: ... more >>
howto handle double-click on Listbox ?
Posted by cyrille at 3/24/2004 3:52:15 PM
hello,
The is no double-click event for control in c#.
I would like to get different actions when click and double-click on a listbox.
Have we need to oeverride WndProc and manage WM_LBUTTONDBLCLK event ?
thanks
cyrille
... more >>
Tracing/Logging to a text file question
Posted by Natalia DeBow at 3/24/2004 3:34:16 PM
Hi,
I am using .NET provided Trace class for tracing purposes in my code:
[code snippet]
serverLogFile = new FileStream("C:\\Temp\\log.txt", FileMode.Append,
FileAccess.Write, FileShare.ReadWrite);
TextWriterTraceListener serverTraceListener = new
TextWriterTraceListener(serverLogFile);
... more >>
Return ArrayList from Method - How?
Posted by mp at 3/24/2004 3:25:10 PM
Hi,
Is possible to return ArrayList or Array from Method and how?
Where I can find some example?
Thanks,
Mirko
... more >>
System.Windows.Forms.ComboBox
Posted by genc ymeri at 3/24/2004 3:08:18 PM
How can I avoid allowing user to type in the a ComboBox ?? I see not
read-only property over there.
Thank You.
... more >>
How I can create COM object with predefined credentials ?
Posted by Maxim Kazitov at 3/24/2004 3:03:03 PM
Hi,
How I can create COM object with predefined credentials ?
Actually I have following problem, I should create COM object from my .Net
WebService, this COM object should have right to some folders, but
unfortunately given COM implement apartment model and impersonation doesn't
help.
Ma... more >>
Application not closing when reboot wanted
Posted by cybertof at 3/24/2004 2:59:55 PM
Hello,
Is there a special message a c# tray application should handle to allow
the system to shutdown/reboot properly ?
Actually when my tray application is launched, the system will not
reboot/shutdown until i close manually the application and try again.
Any hint would be appreciate... more >>
disposing of string array
Posted by Aaron Irizarry at 3/24/2004 2:34:01 PM
How can I dispose of a string array?
I create it with:
lines = new string[3]; //the declaration's somewhere else
but now I'd like to dispose of its contents so I can create it again with a
new size.
Thanks.
... more >>
how to conform visual component of a running applicaton with target platform ?
Posted by CSharp NewBie at 3/24/2004 2:33:22 PM
Hi, does anybody know how to find out of dimension of a screen?
let's say we have an application which should run on different PCs, laptops
and ... then we have to write the application in a way to sense the
dimension of the platform (or target platform) it's running or will be
running on.
I... more >>
How to control dimensions?
Posted by C# newbie at 3/24/2004 2:32:29 PM
Hi, does anybody know how to find out of dimension of a screen?
let's say we have an application which should run on different PCs, laptops
and ... then we have to write the application in a way to sense the
dimension of the platform (or target platform) it's running or will be
running on.
I... more >>
What am I doing wrong here with file uploading?
Posted by john_20_28_2000 NO[at]SPAM yahoo.com at 3/24/2004 2:31:25 PM
Microsoft KB Article:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;323246
I took the code and copied and pasted it in the my two files.
Everytime I run it, I get:
Parser Error Message: Could not load type 'CSharpUpload.WebForm1'.
Line 1: <%@ Page language="c#" Codebehind="Web... more >>
how to hide members in a abstract class
Posted by JollyK at 3/24/2004 2:27:48 PM
Hello everyone,
I have an abstract class (classA) and in my abstract class I have a few
protected methods. Now I have another abstract class (classB) that inherits
from classA. Now both classA and classB are in the same assembly
(assembly1). Now in another assembly (assembly2) I have a sealed... more >>
Operator += what/where is it?
Posted by Julie at 3/24/2004 2:00:22 PM
Does the += operator decompose to:
op_Addition
op_Assign
I don't see a specific operator for +=, and searching Google doesn't reveal
anything (probably because it is a screwy search term).
???... more >>
Parsing numbers from text
Posted by brianbender77 NO[at]SPAM hotmail.com at 3/24/2004 1:52:49 PM
If I have a string of "1t2e3s4t5i6n7g8"
I want to return a string of "12345678"
Is there a String.Format syntax to this or can it be returned using int.parse?... more >>
How to convert String into byte[]? -good old C days, where are you?
Posted by faustino Dina at 3/24/2004 1:50:28 PM
Hi,
I'm trying to send a POST request by using HttpWebRequest. To send the data
I should get a Stream:
HttpWebRequest wReq = (HttpWebRequest)WebRequest.Create(aUrl);
Stream reqData = wReq.GetRequestStream();
but for writing into the Stream
reqData.Write(?)
the Stream expects a byte[] bu... more >>
Weird problem switching from debug to release mode.....
Posted by genc ymeri at 3/24/2004 1:40:00 PM
Hi,
I'm experiencing something very weird when I switch from Debug to Release
and vice versa. Everything was working fine under Debug mode and then I
made a Release compilation. Now if I go back to "Debug" mode will not
compile showing the error message. If I switch back in "Release" mode it
w... more >>
dispose method
Posted by R.A. at 3/24/2004 1:37:38 PM
Hi
IF I design a class and would like to be able to call the class distructor,
how can I do it in c#? Is that the propose of the dispose? What I need to do
is in my class I connect to sql server and the user can call the close
method of my class which will close the connection to the server. B... more >>
Printing support in .net
Posted by R.A. at 3/24/2004 1:32:26 PM
Hi
I wonder what classes are there if any for printing support. I would like to
be able to lables, enveloped and so on. What I need to do is to design the
print layout that will be printed and to have a print preview option.
... more >>
COMException error
Posted by Chris Clement at 3/24/2004 1:30:19 PM
I added a mask COM control to my app and now some computers are getting a
"Class not registered" COMException while others are not. I have verified
that they all have the DLLs on the same directory. Any idea what could be
causing this? Thanks.
Here is the detailed error:
See the end of t... more >>
properties
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 3/24/2004 1:10:06 PM
can properties take arguments in C#? They could in VB 6.0.
thanks.... more >>
scope of structure members
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 3/24/2004 12:29:07 PM
friends,
I have a question about accessing structure members.
I have a structure defined in my dll something like this.
namespace myNamespace
{
internal struct myStruct
{
int myMember1;
string myMember2;
}
}
Because I have declared the struct with scope internal, I
... more >>
MDI Window Question.
Posted by Blacky at 3/24/2004 12:12:43 PM
Hi
There are so many mosts on here that searching for previous posts will be
impossible. So please excuse if this questions been asked before.
I'm rather new to c# development bu not windows development. I'm writing a
MDI application with my main form as a MDI container. I'm opening with in
... more >>
Insert data from temporary datatable into Database
Posted by Thila at 3/24/2004 12:04:32 PM
Hi,
I'm having problem to insert rows of data with number of columns from
temporary datatable into SQL Database.
How should I go about?
Thanks,
Thila
... more >>
Null question
Posted by Kimmo Laine at 3/24/2004 11:56:43 AM
Hello,
what does the null assignment means in C#:
CMyClass mc = new CMyClass();
// Do something with mc
mc = null;
What does the "mc = null"-line actually means: is the mc, and the memory and
resources it has allocated, released?
thx
Kimmo Laine
... more >>
Benefits of .NET
Posted by Hector Martinez at 3/24/2004 11:56:11 AM
Please I need to find a good text about the benefits of .NET... Can you give some links
Thanx in advantage..
... more >>
System.Windows.Forms.TextBox_Enter event doesn't fire up ???
Posted by genc ymeri at 3/24/2004 11:24:56 AM
Hi,
I have a TextBox and I want that everytime it gets the focus etc,,, in the
other words, everytime I "enter" to this control no matter how I want this
event to be fire poping up a message "hello".
I tried but it doesn't happen and the event doesn't fire at all no matter
what I do with the... more >>
About Plugins in C#
Posted by Anandraj at 3/24/2004 11:05:53 AM
Hi All,
I have seen something written in VB6 which will sit in the outlook as a bar
inturn will sync with some server in the Internet. I want to simulate the
same thing in .NET using C# any body give me a glue to start with that.
Thanks
Anandraj.A.
... more >>
adding reference X to Project Y several times?
Posted by Aaron Irizarry at 3/24/2004 10:48:39 AM
If I add reference X (a C# dot net DLL) to my Project Y and then change the
reference and rebuild (added new methods), do I need to delete the "old"
reference and add it again with the recompiled dll? Or is there some way
that the project can update its own references automatically?
Thanks.
... more >>
using c# how to conver sting to a int?
Posted by Bryan G at 3/24/2004 10:39:05 AM
String & int Initialization question
Posted by Trevor at 3/24/2004 10:21:05 AM
If I define a class like so:
class foo
{
private string bar;
private int x;
}
Is it redundant to do this in the constructor:
public foo()
{
bar = null;
x = 0;
}
I guess what I am asking is - Is a string initialized to null or
string.Empty? Is an integer initialize to 0?
... more >>
display in System tray when minimize
Posted by Grey at 3/24/2004 10:10:08 AM
how to set the application at the bottom right hand-side corner when I =
minimize the applicaiton with C#??... more >>
Non Compliance with CLS
Posted by Gary Coutts at 3/24/2004 9:58:12 AM
Hi,
Probably a silly question, but why is all Convert.ToInt(xx) methods stated
as CLS non compliant.
Cheers
gwc
... more >>
Bitmap.Save Question
Posted by Jeff at 3/24/2004 9:56:06 AM
I am using the Save(stream, imageFormat) method of the Bitmap class with
ImageFormat.Bmp to save a bitmap.
If I then manually load the bitmap file header and bitmap info header
information I find that the biSizeImage is 0... Why doesn't the Save method
set this to the proper value? Is there ... more >>
Let me be a bit more specific.
Posted by Chris at 3/24/2004 9:49:46 AM
I am using an embedded resource(".aspx or .HTM") which is then extracted
from the for the Assembly like I have shown below.
stream = assem.GetManifestResourceStream(resourceName)
This stream I want to output to the browser in a open new window call
generated from the code behind.
Any help... more >>
How to ...
Posted by Jacek Jurkowski at 3/24/2004 9:19:42 AM
How to make my application multi language?
Do I need some resource files? Any articles?
... more >>
ASP.NET "searching" page
Posted by Joshua Youssef - Application Test Account at 3/24/2004 9:12:14 AM
Problem: have a search form that accepts search criteria. Queries often
take extended amount of time. Want to display a Flash pluging that says
"Searching", while the webapp is querying the Database. Tried hiding &
displaying a panel with the flash plugin on postback...didnt work. Seems
l... more >>
IO Stream HELP URGENT!!!
Posted by Chris at 3/24/2004 9:05:21 AM
Does anyone know how to send an IO stream to the browser? Preferably in a
new window.
Thanks in Advance.
... more >>
Object Orientated global problem
Posted by Steven Blair at 3/24/2004 8:55:36 AM
Hi,
I have several classes which need to access the same object (a dll). What is
the best way of achieving this?
In C++ I would just have a pointer in a library and #include that library to
all my classes, but obviously cant do this in C#.
I have tried making the object static inside one of... more >>
what is happening here
Posted by Honus at 3/24/2004 8:51:08 AM
In a .Net application, given a C++ dll with methods called by a C# GUI
Assume (x&y) is FALS
the following code in the C++ dll, when called from the C# interface
bool theMethod(unsigned int x)
unsigned int y = 0x2
if (x&y) // FALSE
printf("True")
if (x... more >>
Codebehind project! How to use a tab strip or control with C#
Posted by Bryan G at 3/24/2004 8:17:48 AM
I need to have a tab strip but can't find code as to how todo make one using
C#
Thanks,
Bryan G
... more >>
Quick URL redirect question
Posted by Roger Helliwell at 3/24/2004 7:52:06 AM
My site uses frames, and I need to reload specific frames individually. For
example target="mainpanel" or target="_top". Response.Redirect() doesn't seem
allow for named targets.
Thanks,
Roger
... more >>
Populate TreeView with records from a database
Posted by jarod1701 NO[at]SPAM gmx.de at 3/24/2004 7:38:43 AM
Hi everybody,
I have a database table here, containing the full paths of all
subdirectories of a certain directory.
example:
E:\Development\VB.NET\Mobile
E:\Development\VB.NET\Services\FileSystemWatcher
E:\Development\C#\
E:\Development\C++\MFC-Apps
How can I use this table to populate... more >>
Failed Command Line Build
Posted by matt_little NO[at]SPAM email.com at 3/24/2004 7:11:54 AM
I have a large solution with approx 20 individual projects. This
compiles fine via the UI, but fails when compiling using devenv.exe
via the command line - this happens with visual studio .net 2002 and
2003 on several machines. The error is:
"Runtime Error R6025 - pure virtual function call" i... more >>
Sharing code possible-ASP.NET and Windows Forms
Posted by Adam Smith at 3/24/2004 6:44:14 AM
Hello. I'm wondering. is it possible to share code between a windows
forms application and an asp.net. Specifically, I'd like to do
something like:
class Demo
{
private static ArrayList al = null;
private string sType;
public Demo(string sType)
{
this.sType = sType;
... more >>
so you CAN have non zero based array
Posted by Daniel Jin at 3/24/2004 6:31:07 AM
so I've read these blog entries and such on why the not allowing non-zero based array index. turns out, you can make it work in C#. this code coming straight from the .NET SDK 1.1 under Array.CreateInstance. my question is, is this there for VB compatibility reason or something
using System
pu... more >>
3-tier Architecture question
Posted by Dave Veeneman at 3/24/2004 5:59:45 AM
I'm new to 3-tier architecture, and I am looking for some advice on how to
implement it in C#.
I am creating an app with a Presentation layer, a Domain layer, and a
DataServices layer. There is also an Application Services layer that sits
between the Presentation and Domain layers. This layer ... more >>
Reflection Help: Copying data between objects using reflection
Posted by eslim NO[at]SPAM rocketmail.com at 3/24/2004 5:39:20 AM
Hi people,
Is there a free library / source code out there that copies properties
from an object toanother object, something equivalent to Jakarta
commons BeanUtils?
In fact, are there code repositories out there (Open source /
sourceforge) for
C# or the .Net world?
Thanks for your help... more >>
Hwo to send SMTP mail???
Posted by Jim at 3/24/2004 5:27:46 AM
I posted a query about this yesterday, and got a lot of helpful and
useful information back... but it still won't work. For the moment,
I want to send the simplest of email messages, using the
System.Web.Mail.SmtpMail class.... So, here's what't in in my little
ol' console app:
System.We... more >>
C#/.NET?
Posted by some_spare_id NO[at]SPAM yahoo.com at 3/24/2004 5:22:43 AM
Hi,
Can anyone give me any information about using C#/.NET to build
real-time precision applications? Pros/cons etc.?
Thanks... more >>
How To : add command line parameters to an windows application
Posted by billdevoac NO[at]SPAM yahoo.com at 3/24/2004 5:18:06 AM
Hi,
How do we add command parameters to a windows application?
Thanx... more >>
Advice on struct fields in classes
Posted by wildclaw NO[at]SPAM hotmail.com at 3/24/2004 4:37:39 AM
Recently I was trying to figure out why a small program I had written
didn't work. It was a simple problem really, normalizing the length of
a couple of coordinates in a vector system and I just couldn't figure
out why the coordinates refused to be changed. Suddenly it hit me what
an idiot I had... more >>
Where did the IP Adress control gone?
Posted by Guy at 3/24/2004 4:26:09 AM
Hi
I am new to windows forms, and I can't figure out how to create an IP address control as part of my form, using MFC there was no problem dragging this kind of control from the tools menu, this type of control doesn't seem to exists in .NET......
How do I create an IP address control using c#??... more >>
WaitCursor problem
Posted by seash at 3/24/2004 3:56:07 AM
Hi
In my application i set the cursor to waitcursor but its not appearing for a time till my application process the code in the try block.
i am able to click out side of my application. which i dont want...help
this is my code in my application
-------------------------------------
Curso... more >>
Reflection question
Posted by jfrapper NO[at]SPAM lycos.com at 3/24/2004 3:25:26 AM
Is it possible to get a list of the local variables and their
corresponding values? For example, take a look at the following IL:
..locals init ([0] int32 i,
[1] string x,
[2] class [mscorlib]System.Reflection.Assembly a,
[3] class [mscorlib]System.Reflection... more >>
Referencing constructors in XML comments
Posted by Wodger at 3/24/2004 3:01:10 AM
Hi
In the XML comments for a property of one of my classes I'd like to be able to reference a particular constructo
(actually, even the constructor summary page would be a start) of that class e.g
/// <summary
/// Check <see cref="MyClass.Constructor">this</see> constructor
/// </summary
pub... more >>
Application Version (Major, Minor, Build)...
Posted by Bernardo at 3/24/2004 3:01:07 AM
Hi
Anyone knows how to change (increment) the Major, Minor or Build version of an application
Wy the build version has a value of (18149) ?
My code is this one
Major = System.Diagnostics.FileVersionInfo.GetVersionInfo(System.Reflection.Assembly.GetExecutingAssembly.Location).FileMajorPar
... more >>
REPOST: Textbox Bug
Posted by John Baro at 3/24/2004 1:42:38 AM
I have a textbox that is set to readonly = true
I change the backcolor to color.red in the enter event.
I change the backcolor back to systemcolors.control in the leave event.
Textbox now has a red border until I move the mouse over it.
Any ideas how to fix this would be great.
Cheers
JB
... more >>
Custom Controls
Posted by Ryan Joseph So at 3/24/2004 1:11:25 AM
Hi how can I change the icon of a custom control when viewed in the
toolbox? Thanks
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!... more >>
Convert String to XMLDocument object
Posted by pei_world at 3/24/2004 12:24:05 AM
what class to do that?
... more >>
|