all groups > c# > june 2005 > threads for sunday june 26
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
Is this possible .Net 2.0?
Posted by Aaron at 6/26/2005 11:54:02 PM
I wrote a win app in .net 2.0 c#. I would like to demo this on my client's
machine but it is not possible to install the .net framework 2.0 beta on his
machine.
Is it possible to pick the nessesary dll assembly files and compile them
into my .exe file?
or is there another way to accomplish t... more >>
What are the advantages of .NET 2.0 over NET 1.1 ?
Posted by yaron at 6/26/2005 11:39:02 PM
Hi,
1. I am familiar with .NET 1.1 and not with .NET 2.0 .
if i should start a new networking project should i write it with .net 2.0
beta or
write it with .net 1.1 ?
2. What are the advantages of .NET 2.0 over NET 1.1 that i should consider
when writing a new infrastrcuture networkin... more >>
naming guidelines for variables
Posted by John Salerno at 6/26/2005 10:45:11 PM
Does Microsoft have any naming guidelines for variables? I've been
reading their guidelines for just about every other type (methods,
parameters, properties, etc.) but nothing about variables. Are variables
treated the same as parameters (i.e., camel case)?
I notice that Hungarian notation ... more >>
Using a class library in multiple applications in asp.net
Posted by TaeHo Yoo at 6/26/2005 10:18:18 PM
Hi Gens,
I have a class library (CL) which I would like to use in two
applications (A and B).
I would like to be able to edit CL anywhere (either CL itself or A or B
application) but all the changes I make regardless of where I edit CL,
the changes must be made only to the original source ... more >>
Control Life of aggregated object
Posted by Tony Maresca at 6/26/2005 6:44:47 PM
I have a general question on how to best go about
controlling the lifetime of an aggregated object.
public class Contained : IDisposable
{
public void Dispose()
{
// cleanup
}
}
public class MyContainer : IDisposable
{
public void Dispose()
{
m_Contained.D... more >>
Global varible
Posted by Jim McGivney at 6/26/2005 3:35:24 PM
I am a C# newbie.
I believe I need a Global variable or shared variable or universal variable,
but do not know how to create it.
As an example. I have a function that places a circle on a picturebox when
a button is pushed. I would like to change the position of the circle with
each button... more >>
Pls Help - Calendar Control: Other Months Days
Posted by ann at 6/26/2005 1:23:01 PM
is there someway to disable the Other Months day(the previous and next months
days) s from appearing?
If so, can you let me know how?
Thanks so much for your help!... more >>
BeginTransaction helppppppppppppppppppp?
Posted by perspolis at 6/26/2005 12:10:48 PM
Hi all
I have two class one master and another detail that connect to sql server
database.
and every class has a method name "BeginSave" that starts a transaction and
"EndSave" method to commit transaction.
when I want to save changes I call these two methods
master.BeginSave();
detial.Begin... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
[Serializable] Changes
Posted by db_from_mn at 6/26/2005 11:33:03 AM
I'm creating a new app that will have a number of project settings. Rather
than save all these to the registry, I'd like to create a serializable class
to define all of the settings, and save them to a project file.
I'm concerned that if I ever change the class, then the prior saved files
wil... more >>
Shortcut Key Not Underlined
Posted by db_from_mn at 6/26/2005 8:47:03 AM
I'm creating a main menu in C#. When I put an ampersand (&) ahead of a
character in a menuitem name, the following character is underlined, as
expected, in the design view.
When I run the app however, the behavior is not as expected: the underline
does not show until I hit the Alt key. Is thi... more >>
Optimizing file size of an image?
Posted by slavinger NO[at]SPAM yahoo.com at 6/26/2005 8:26:12 AM
Hi,
Got an interesting problem here: I'm using C# to resize an image
(jpeg) from over 2000x1700 (in pixels) to 550x412. When I save the new
image, its file size ends up being in the neighborhood of 550K. When I
use a graphics editor app, it produces a similar quality 550x412 jpeg
that's on... more >>
Processing XML help files
Posted by John C at 6/26/2005 7:41:02 AM
I understand how to comment C# source with XML comments, and generate these
to an output file.
There must be a set of available tools to then take all these XML files and
generate a fully formatted and indexed series of HTML files for access
through Web browsers.
Can someone provide some... more >>
static variables in C#?
Posted by Ant at 6/26/2005 5:05:01 AM
Hi,
Can you declare a variable as static in C#? If not, then is there a 'module'
level area or eqivelant in C# in which you can do this?
Thanks in advance
Ant... more >>
Set IDE doc as Read Only
Posted by nhmark64 NO[at]SPAM newsgroup.nospam at 6/26/2005 4:38:30 AM
Hi,
What is the Keyboard command to set an ID editor file as read only,
so that I don't make any accidental changes? I want to make a
keyboard shortcut.
Thanks,
Mark
... more >>
When .NET 2.0 will become a release version ?
Posted by yaron at 6/26/2005 2:14:01 AM
Hi,
1. I am familiar with .NET 1.1 and not with .NET 2.0 .
if i should start a new networking project should i write it with .net 2.0
beta or
write it with .net 1.1 ?
2. What are the advantages of .NET 2.0 over NET 1.1 that i should consider
when writing a new infrastrcuture networkin... more >>
Equivelant With - End with
Posted by Ant at 6/26/2005 12:48:02 AM
Hi there,
Is there an equivelant in C# to the VB:
With controlName
.property = X
.Method
End with
Thanks very much in advance
Ant... more >>
How would you save a collection in a resource file?
Posted by Julia at 6/26/2005 12:00:00 AM
Hi,
I need to localize my asp.net application and I would like to populate drop
down box from a resource file
I see that ms localization tool kit can save lists in a resource file
but I don't want to use it
How would you save a collection in a resource file?
Thanks in advance.
... more >>
How to convert a string to a fixed lenght string?
Posted by ywchan at 6/26/2005 12:00:00 AM
I would like to convert a string to a fixed length
e.g. if fixed length = 10
'abc' -> ' abc'
'abcdefghijklm' -> 'abcdefghij'
Is there any simple function in C# can perform this operation?
thanks!
... more >>
Disappearing User Controls
Posted by Oddball at 6/26/2005 12:00:00 AM
How on earth do I convince VS.net to keep stop removing my user controls from the
design view!
I've created my very own listbox and now I go to put in into the form - which works - I
wonder off to do some other stuff, come back and VS just deletes it. It leaves the
definition and the add... more >>
newbie: ToCharArray() problems
Posted by Jeff at 6/26/2005 12:00:00 AM
IDE: VS .NET 2003
OS: XP pro sp2
this is some line from my code:
string t = "356";
char[] u = t.ToCharArray();
Here I thought u should represent an array of char (the elements 3,5,6) ...
but when I debug the code I see that the elements are: 51'3', 53'5', 54'6'
When I use System.Conver... more >>
MDI forms
Posted by Fatima at 6/26/2005 12:00:00 AM
Hi All
I used following codes to close all of children forms
for(int i=0;i<this.MdiChildren.Length;i++)
{
this.MdiChildren[i].Close();
}
but it just closes some of them.
what's your opinion about this problem?
thx
... more >>
Socket.BeginAccept() problem
Posted by scott at 6/26/2005 12:00:00 AM
Hi all hope some one can help me with this prob because it is really
annoying me and I can't seem to solve it.
Just like to say thx to any one that can offer any help.
Ok the prob.
I have a server which accepts new connections using the Socket.BeginAccept()
function. This is done in its ... more >>
does anyone know...
Posted by Eps at 6/26/2005 12:00:00 AM
when the 2 beta of the .net framework will be released fully ?
I have developed an app with it and want to know if it is worth my time
creating a 1.1 version.
Any help apprecaited.
--
Eps... more >>
|