all groups > dotnet framework > may 2007 > threads for may 29 - 31, 2007
Filter by week: 1 2 3 4 5
A simple enough problem
Posted by AlBruAn at 5/31/2007 5:30:00 PM
I have a class I've written that works great as is; however, I now need to
add three additonal fields to it. One of the additional fields is an
integer, as is the case with the already existing field...actually, I guess
property would be the better name for it...anyway; the other two properti... more >>
VS 2005 post Build event problem
Posted by Steve B. at 5/31/2007 3:30:51 PM
Hi,
I'm working on Windows 2003 Server SP2 X64 edition to create SharePoint
extentions.
After each rebuild, I have to recycle app pool that use the extention I've
build, that's why I wanted to add the following line in post build events :
"%windir%\system32\cscript.exe" "%windir%\system... more >>
Where can I find 'standard' tool bar icon images?
Posted by Jamie Risk at 5/31/2007 12:56:42 PM
I"m programming an application in VS2005 (C#) and I'm having a
devil of time locating images to put on my toolbar ... where are
they found?
- Jamie
... more >>
udp (UdpClient) not transmitting in vista
Posted by Jim Mead at 5/31/2007 12:28:01 PM
I have a program (works fine under XP), sends a udp message using .net
udpclient and listens for a udp response from dedicated music server that our
company manufactures. It does not work under Vista.
I have Norton Anit-virus for Vista (completely turned off).
I also have Windows firewall (c... more >>
Large MemoryStream > 2gb
Posted by Luca Martinetti - Phatsoft at 5/31/2007 6:54:03 AM
Hi,
Anybody has ever implemented a MemoryStream supporting more than 2gb?
I'm trying to implement it buf I have some problems with Buffer.BlockCopy
for large arrays.
Any suggestion or useful resource?
Thank
--
Phatsoft Inc.... more >>
Arrange Folder menu
Posted by Tony Lecart at 5/31/2007 6:45:01 AM
When I double click on a folder instead of opening the contents the search
options appears instead. On right clicking the folder I find the search
option appears at the top of the list and open option is second on the list.
How do I re-arrange these so that 'Open' appears at the top of the lis... more >>
caspol.exe from .NET 2.0 on Vista - access denied
Posted by Ihor Bobak at 5/31/2007 3:13:01 AM
I've installed Vista Business on a virtual machine, created a user "test"
during installation. This user is in the Administrators role, I can see it in
Computer / Manage / Local Users and Groups.
My problem is next. When I run a .NET 2.0 configuration command
caspol -m -ag All_Code -site mys... more >>
New setting at runtime
Posted by e-mre at 5/30/2007 4:05:12 PM
Is it possible to add a new record to the settings file at run-time? Or is
the only possible time to add a new setting is design-time?
There are many many thing in my application that the user can customize for
him/her. I am thinking of stroring these in the settings file on the user PC
but... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
windows service termates when user logs out
Posted by Andy Fish at 5/30/2007 2:28:02 PM
hi,
I have a windows service which is managed C# .NET 1.1. It is installed on
many sites but on one site the admin has reported that the service shuts
down whenever someone logs off the console. There is an event log message
saying the service terminated unexpectedly.
The service is runn... more >>
configSource option in web.config
Posted by lf at 5/30/2007 1:26:01 PM
I have a web.config file and I want to externalize my connectionStrings
setting so that it points to a separate file like so:
<connectionStrings configSource=".\subdir\connectionstrings.config">
However, I am attempting to encrypt this in code. (I can't use
aspnet_regiis because I need th... more >>
How to get a reference to parent object
Posted by news.microsoft.com at 5/30/2007 1:21:20 PM
In some classes i have properties defined on others classes.
In the classes referenced by properties, i need a reference to "parent"
object.
Something like this
Public Class MainClass
Public property1 as ClsData
...
End Class
Public Class ClsData
private _pa... more >>
How to get username/password info of a windows service user accoun
Posted by Andrew at 5/30/2007 12:04:02 PM
Hello, friends,
In windows service, after specifying username/password in installer like the
follows:
this.serviceProcessInstaller1.Password = "12345";
this.serviceProcessInstaller1.Username = "prodDomain\\appUser";
and installing this window service, I believe th... more >>
MSBUILD and ASCII Copyright
Posted by Flomo Togba Kwele at 5/30/2007 11:03:45 AM
Is there a way to create a copyright symbol as output? I've tried and haven't been able to.
<AssemblyInfo CodeLanguage="VB"
OutputFile=".\AssemblyInfo.vb"
AssemblyTitle="App"
AssemblyDescription="App Description"
AssemblyCompany="Company Name"
AssemblyP... more >>
where are the network classes in .NET?
Posted by giddy at 5/30/2007 10:22:38 AM
hi ,
I'm really confused about where microsoft programmers have put the
network classes?
I've been looking for classes in .NET that can enumerate/set etc
network shares , file sharing etc... for months now.
I know that the WNetEnumOpen , and its family of API are the win32 way
to go. but... more >>
Orcas, IIS7 and Windows XP
Posted by Sune42 at 5/30/2007 9:21:43 AM
Hi
Lets say that me an my developer team wants to develope a website
using Orcas and ASP.NET 3.0 features, targeting IIS7 on a future
longhorn server.
And we want to keep our windows XP (Don't want to move to Vista)
Is that possible to develop against ASP.NET 3.0/IIS7 on a XP machine
usi... more >>
Comparing objects using reflection
Posted by GeezerButler at 5/30/2007 8:51:15 AM
I am comparing 2 objects with a lot of public properties(more than 100
which are all ValueType or string)
So i decided to write a reflection based solution for that.
My code looks something like this:
public bool AreEqual(Mytype a, Mytype b)
{
PropertyInfo[] props =
typeof(MyType).GetProper... more >>
Saving a bitmap as a PNG without the gamma info
Posted by Patrick Ruzand at 5/30/2007 12:00:00 AM
Hello,
[Apologize for the cross-post in microsoft.public.dotnet.framework.drawing,
but I just noticed the .drawing group is not in the managed newsgroups list]
I have written a custom web control that dynamically generates bitmaps
in the response stream, using the Image.Save(stream, format) ... more >>
WCF is in .net 3.0 or higher only?
Posted by Andrew at 5/29/2007 3:04:01 PM
Hello, friends,
I found some articles about WCF, and saw it used System.ServiceModel.
However, I could not find this name space in our .net 2005. Is WCF in .net
3.0 or higher only?
Thanks.... more >>
Regular Epx
Posted by guate911 at 5/29/2007 1:03:32 PM
I am using the Regular Expression Validator, and I need to test for a
pattern that allows words in quotes, or multiple words in quotes
seperated by the word "OR".
I can get the single word in quotes check [^"]*, but I don't know how
to add the OR delimeter. Any suggestions?
See example Belo... more >>
serializable Class
Posted by sapsy at 5/29/2007 10:30:29 AM
hi,
I have a class which uses Microsoft.Win32.RegistryKey
class, and i am trying to Serialize this class but i get the following
Error... anu ponter will be really helpfull..
Message="Type 'Microsoft.Win32.RegistryKey' in Assembly 'mscorlib,
Version=2.0.0.0, Culture=neutral, Publi... more >>
need help on regex
Posted by AVL at 5/29/2007 8:08:03 AM
hi,
i'm a newbie to regex....
i need to check if a given string has more than two occurences of . in the
begiining of string
for ex, if string has value .test is valid but ..test is invalid
Can you help me out with the pattern for such strings?... more >>
Available COM Ports on Pocket PC (C#)
Posted by Khalid at 5/29/2007 1:53:22 AM
Hi all.
There is any way to know what are COM ports available/active on Pocket
PC throught C# Compact Framework?
And if possible also the name of the card/program that use these
ports.
Thank you very much
... more >>
Asp.net 2.0 error
Posted by Ravi Chander at 5/29/2007 1:09:02 AM
I am using windws 2003 std edition server with IIS 6.0 which was ruuning fine
with dot net frame work 1.1 with out any errors. But in last week I have
installed dotnet frame work 2.0 which are generating a unique error message
in event viewer. Please find the error message below and help me i... more >>
.NET Framework vs C++ code
Posted by Allen Maki at 5/29/2007 12:00:00 AM
I would be pleased if someone gives me a general idea; how I am going to do
this. I am using visual C++ .NET 2003.
I made a simple program using conventional C++ code. This program accepts
data from the user, does some calculations and outputs the result back to
the user using the co... more >>
|