all groups > c# > december 2004 > threads for friday december 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
Cookies
Posted by Dammit at 12/31/2004 8:03:20 PM
When doing a http request with code I derived from the example from
http://www.developerfusion.com/show/4498/3 I noticed that my cookies would
only be sent if the name of the page was the same as the name of the page
that set them, but I need the cookies to be sent on every page I request
from t... more >>
shellexecute in C#
Posted by Le, Thanh-Nhan at 12/31/2004 7:56:23 PM
Hi,
Is there a same function in .Net as API shellexecute?
Thanks
Nhan
... more >>
Use API functions in C#
Posted by Le, Thanh-Nhan at 12/31/2004 7:47:24 PM
Hi,
How can I use API functions in C#.
Is there in VS .Net any simple Way to use, declare an API Function?
Thanks
Nhan
... more >>
Serializing private members with public Propery getter doesn't wor
Posted by punkbot at 12/31/2004 5:09:01 PM
consider:
public class test
{
public string[] az;
public test()
{ az = new string[2]; az[0] = "0"; az[1] = "1";}
}
This will serialize just fine but:
public class test
{
private string[] az;
public string[] AZ
{
get { return az; }
}
publ... more >>
default parameters and C#
Posted by nzanella NO[at]SPAM cs.mun.ca at 12/31/2004 4:02:43 PM
Hello,
Out of curiosity, does anyone know how come default parameters were
left out of the C# specification. It seems to me that this feature
from C++ comes in handy at times despite the fact that the same
goal can be accomplished by overloading a method with different
signatures. I would app... more >>
Is "Whidbey" going to de-skill developers ?
Posted by Fresh_Air_Rider NO[at]SPAM Hotmail.com at 12/31/2004 2:19:16 PM
Hi
I understand that ASP.net 2.0 (Whidbey) is going to reduce coding by
70%.
Surely this is going to de-skill or dumb down the developer's task and
open up the task of web development to less qualified and trained
staff.
Tell me if I'm wrong.... more >>
How do I share non-static code when I have to use different base classes?
Posted by Wysiwyg at 12/31/2004 12:27:27 PM
I'm new to c# programming and can't figure out how to avoid duplicating
common code in multiple classes when I'm restricted to using different
system base classes.. I'm using c# in asp.net to write a web application but
this isn't specifically a web question.
I have two classes which must inhe... more >>
Confusing property names
Posted by Mark at 12/31/2004 12:17:16 PM
I'm struggling with how to properly name a specific subset of Properties in
my classes. An example will illustrate it best. Let's say you have a class
named Person with the code below. Each Person instance has a single Address
instance. The Property name is Address, but it returns an instance ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
calling controls
Posted by freddy at 12/31/2004 10:03:01 AM
I have a frmNewHD.cs form with some textboxes. I would like to creat a new
classcalled resetform.cs and I would like to have all the txtbox.clear in the
restform.cs and call it from frmNewHD.cs.
When I do this
frmNewHD hd - new frmNewHD
for the resetform.cs I do not see the txtboxes
I am... more >>
Refresh a ListBox in ASP.Net with C#
Posted by Bish at 12/31/2004 7:43:01 AM
I want to create a .Net page with 2 controls. The 1st is a dropdown being
populated from a database. The 2nd control is a listbox which is also
populated from the same database but the content is dependent upon a
selection from the dropdown control. I have no DB issues but being new to
..... more >>
Read database column properties
Posted by mwn at 12/31/2004 3:03:01 AM
In a C# WinApp how do I display column properties?
For example, I want to display from pubs.employee all columns and properties
ColumnName DataType Length Precision Scale Default Value Collation
emp_id char 9 0 0
fname varchar 20 0 ... more >>
How to pass asp session to C# session ?
Posted by kelvinweb NO[at]SPAM gmail.com at 12/31/2004 1:07:47 AM
Hi All,
Please help.
How to pass traditional asp session variable to C# session variable ??
Please advise. Thanks... more >>
Filling a Dataset and Dataset.WriteXML method..
Posted by Serdar C at 12/31/2004 12:50:27 AM
hello there, i am writing a program that generates random numbers and shows
the numbers on a (x,y) chart.. i decided to use crystal reports to draw the
chart and a dataset.readxml to read data..
my problem is when i try to fil the dataset manually and type
dataset.writexml i find that theres not... more >>
Standard pattern for parsing command lines
Posted by John Paulsson at 12/31/2004 12:14:04 AM
Is there a C# pattern or perhaps a .NET framework way of parsing a command
lines, supporting quoted filepaths etc?
(I'm not talking about the current applications command arguments. I've got
command strings that I need to parse into an array)
... more >>
C# properties: nothing more syntactic sugar for getters and setters
Posted by nzanella NO[at]SPAM cs.mun.ca at 12/31/2004 12:11:31 AM
Hello,
It seems to me that C# properties are nothing more than syntactic sugar for
getters and setters. I wonder whether others hold a different point of view.
Basically, what more do they have to offer?
Thank you for your replies,
Best Regards,
Neil... more >>
|