all groups > dotnet framework > february 2006 > threads for tuesday february 28
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
Get current logged on user
Posted by Niclas at 2/28/2006 10:39:14 PM
Is it possible to configure a Windows Service to:
1. Start the service when a user logs on (i.e. service not active before
logon)
2. Determine the WindowsIdentity of the currently logged on user
Niclas
... more >>
File properties of mp3 file
Posted by Fred Morrison at 2/28/2006 7:56:33 PM
I'm looking to look at and change the Track Title property of an mp3 file.
I have a FileInfo object for the file in question, but I don't see a way to
access something like, for example, fileInfo.Properties("TrackTitle") as a
string. The reason I want to access and change the Track Title is ... more >>
Application.UserAppDataPath Question
Posted by David White at 2/28/2006 6:34:25 PM
The MSDN docs say, "If a path does not exist, one is created in the following
format: BasePath\CompanyName\ProductName\ProductVersion". Where does the
BasePath value come from? It seems the default is "C:\Documents and Settings\
username\Application Data".
But from which of the system envir... more >>
Embedded controller UI in Windows Service
Posted by Tim Johnson at 2/28/2006 6:31:27 PM
I built a Windows Service exe, and a separate exe to control it which has a
nice little icon on the system tray. I'm wondering if there is a "right" way
to merge the two apps such that:
a) when you installutil the service it automatically puts the notifyicon on
the systemtray
b) it will ... more >>
Security question
Posted by Juan Dent at 2/28/2006 3:58:13 PM
Hi,
I am debugging a solution located in machine A from machine B. The reason is
to test the environment (e.g. COM registry) in machine B yet the source is
only available in machine A.
I get this warning as I open the solution:
---------
The project location \\Satellite\C\etc is not tr... more >>
C# ASP .NET -- UTF-16 encoding to UTF-8
Posted by davidjgonzalez NO[at]SPAM gmail.com at 2/28/2006 2:26:14 PM
I have a web application written in ASP .NET (VS 2003) which an Adobe
Acrobat Form posts XML to. I am able to get the XML using the
Request.InputStream however the XML is UTF-16 encoded. This means that
the byte[] that i get from the Request.InputStream looks like:
[0]: 255
[1]: 254
[2]: 64
[... more >>
Configuring ASP.NET Development server, HOW??
Posted by Søren M. Olesen at 2/28/2006 1:52:11 PM
Hi
How do one configure the 'ASP.NET Development server' in Visual Studio 2005
??
I migrating an application from 1.1 to 2.0. The application is using a third
party component (Infragistics WebTree) which loads its scripts from a
virtual directory called 'ig_common', but how do I create... more >>
unable to open project
Posted by JP at 2/28/2006 11:23:27 AM
Uable to open Web Project '/' The file path \\server\projects\projectname
doesnt corrispond to URL 'http://xxxxxxx.domain.com' The two need to map to
the same server. Http Error 404 Not Found
Note that our projects are all on UNC paths and not http paths
1. The project was created using .... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
FS: Visual Basic.NET VB.NET books for sale - CHEAP!!!!!!
Posted by MiniMe at 2/28/2006 10:26:10 AM
I have for sale seven (7) Visual Basic 6 books. I'll take $21 for all
books. I'm selling them as a set only. I am in the Houston, TX area (USA).
If you are local to me, you are more than welcome to pick them up. If you
want them shipped to you, I will charge you actual shipping cost plus the
... more >>
Problem with IDE when overriding Text property
Posted by Jason Barnett at 2/28/2006 10:03:56 AM
I noticed when overriding the Text property of the
System.Windows.Forms.UserControl that the Form.Designer file does not
reflect changes made via the property browser. In other words, when you
override the Text property and then try to change it's value at design-time,
the value is not seri... more >>
Partial Class question
Posted by Evian Spring at 2/28/2006 9:34:22 AM
In .Net 2.0, the code behind of my ASPX page are Partial Class. I
assume it is because the .Net generated code must be in a different
file.
Is this correct and where would I be able to see the generated code if
it is available?
... more >>
Confused about Application.Exit
Posted by William Sullivan at 2/28/2006 6:56:28 AM
Why will the following code snippet run forever?
While(true)
{
if(MessageBox.Show("Exit now?","Close?") == DialogResult.OK)
{
Application.Exit();
}
}
How do you exit an application from within a While loop?... more >>
.Net framework v2 on Windows 95
Posted by robin9876 NO[at]SPAM hotmail.com at 2/28/2006 3:48:29 AM
I noticed that on the .Net v2 framework that Windows 95 is not on the
supported operating systems.
Is it still posibile to install on Windows 95?
Are there any issues with running the framework on Windows 95?
... more >>
manipulation of configuration files programmatically
Posted by venkatmudireddy NO[at]SPAM gmail.com at 2/28/2006 2:27:21 AM
hi,
how to insert or update configuration(.config) files using xml api or
with some thing else
i mean inserting a new element into particular section
e.g: i want to programmatically add an entry to appsettings section
i tried it with .xml extension but not working out with .config
extensi... more >>
WIll GC.Collect() immediately collect garbage ?
Posted by chak at 2/28/2006 12:00:00 AM
WIll GC.Collect() immediately start a GC thread and clear all unreferenced
objects from the heap ?
Regards,
Chak.
... more >>
|