Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > dotnet framework > april 2004 > threads for thursday april 1

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

Page Caching - Is this the solution.
Posted by ricky.arora NO[at]SPAM icn.siemens.com at 4/1/2004 11:49:35 PM
Basically, I have a web app which has a step-by-step flow. So the user fills a form, hits next and is taken to the next page, where the user enters more information in form. There are around 5 steps for the user to complete. Each step is on a different page. The problem is that at any point th...more >>


Adding <div> tag programatically
Posted by ricky.arora NO[at]SPAM icn.siemens.com at 4/1/2004 11:43:10 PM
Hi All, I would like to add the <div> tag programatically from the code-behind of my aspx file. Basically, I would like to a table to this <div>. There are a number of tables which are created dynamically in the code-behind. Each table should go to its own <div> tag. The reason that I can't h...more >>

static variables in C#
Posted by Natalia DeBow at 4/1/2004 6:34:46 PM
Hi, I have a quick question. I am using a static variable to hold an instance of the StreamWriter: private static StreamWriter sw = File.AppendText("C:\\Temp\\Test.txt"); I am curious to find out how static resources are being disposed in C#. The problem that I am having is I am opening ...more >>

Marshalling-- newbie question
Posted by mortb at 4/1/2004 4:30:50 PM
Does anyone know of some article explaining the term marshalling? thanks, mortb ...more >>

Assembly Question -- Finding Them
Posted by Camel Software at 4/1/2004 4:18:03 PM
Hi, I just installed a 3rd party assembly on my machine, and now when I bring up Visual Studio, it shows the assembly in the list when I choose Add Reference. My 1st question is, how can I get my assemblies to show up in that list? 2nd question -- how can I get assemblies to be automatica...more >>

HttpWebRequest.GetResponse does not work on some uris
Posted by Anton Sommer at 4/1/2004 3:45:58 PM
Hello folks, I made an application to request webpages from the internet and it works fine on the most of the uris but with that specific uri I need to query it does not work. That url would be: http://v3.espacenet.com/family?sf=n&FIRST=1&F=8&CY=ep&LG=en&PN=us4000000&IDX=US4000000&Submit=SEARC...more >>

ThreadPool Question
Posted by Bill at 4/1/2004 3:21:43 PM
I want to use the threadpool to perform multiple tasks at once. The = problem is that I was trying to find a way to only have say X number of = threads running at once instead of the using the entire thread pool. I = read this in MSDN,=20 "..there's only one pool per process and we cannot cr...more >>

HttpWebRequest.GetResponse returns 404 No Found error
Posted by warlord at 4/1/2004 1:20:16 PM
I have a windows client app that is trying to download a file from a web server but I always get the following error when I call the GetResponse method of the Request object. The remote server returned an error: (404) Not Found. When I run it against a website on my local machine everything ...more >>



Calling BeginInvoke on delegates and thread reusage
Posted by Marina at 4/1/2004 12:25:03 PM
Hi, we have an app, that executes jobs submitted from an outside application. It executes them asynchronusly, by creating a delegate to the method that can run the job, and calling BeginInvoke on the method. Throughout the job itself, we use the CallContext class to store information that is ...more >>

Alternative to inheriting from string
Posted by Mike at 4/1/2004 11:46:02 AM
Hello, I would like to write a string-like class that will only allow certain string values, (for example, specified with a regular expression). I'd still like it to behave like a string, I just don't want to ensure the validity of it's value. Since you can't inherit from string, what would ...more >>

User Interface Management in a Deployment project
Posted by Chuck Hartman at 4/1/2004 10:33:39 AM
I am using one of the Custom User Interface generic dialog boxes along with a Custom Action in a deployment project. I am currently filling in one of the dialog box text boxes with a default string. However, I would really like to compute (during installation) the value of the default string to ...more >>

How do I Autostart my application after Installtion
Posted by CV at 4/1/2004 10:22:17 AM
Hi, I developed an windows application in Vb.net and compiled that application. I would like to know that how can i execute my application automatically after installation. Any Suggestions would be greately appreciated. Regards CV ...more >>

uses of Reflection
Posted by medhanush NO[at]SPAM yahoo.com at 4/1/2004 9:23:29 AM
Hi, I'm aware of Reflection, as run time engine, that allows you to read an assembly types and members of types. And VS.NET and ILDASM makes use of Reflection etc etc ..., My question is, Can Reflection helps me in any other way for application development, apart from it's use by tools and ...more >>

Finding existing delegates.
Posted by Martin Hart - Memory Soft, S.L. at 4/1/2004 8:15:25 AM
Hi: How can I find out if a particular delegate has already been assigned to a handler? What I'm trying to do is discover if a particular delegate has been added to the handler before I issue a: this.KeyDown -= new System.Windows.Forms.KeyEventHandler(this.msEditControlKeyDown); I kno...more >>

How can I set a thread identity?
Posted by Stan at 4/1/2004 8:11:13 AM
When I start a new thread the db connection fails with "Login failed for user '(null)'.." I tried to set WindowsIndentity, but it still does not work Code inside the new thread === WindowsPrincipal wp = new WindowsPrincipal(wi) Thread.CurrentPrincipal = wp; ====== When I start a new thre...more >>

StandardOutput of FTP
Posted by yashgt NO[at]SPAM yahoo.com at 4/1/2004 7:21:00 AM
If on the command line, I type ftp <machine> > C:\temp\ftp.out, and then keep typing FTP commands, the output of the FTP session correctly goes to the C:\temp\ftp.out file. This output contains: ftp> Connected to lille. open lille 220 lille.intranet.pspl.co.in FTP server (Version 1.1.214.8 Fri...more >>

.NET Threading problem
Posted by KPH at 4/1/2004 2:21:06 AM
Hi all I'm developing multi-threading program I have 4 threads running in my program and every thread work busy. I see some thread (from IDE debugger) pause about 5 seconds or more but I don't know why. So this is seriously problem for me because I need my program work smooothly Is there someo...more >>

Tough (for me) regex case
Posted by Rob Perkins at 4/1/2004 1:17:54 AM
Hello, I know I'm not a regular, and I'm new to the arcana of regular expressions, so I'm a little stuck with two specific cases and I'm hoping for a genius: The case I'm most stumped on is an input string like this: The "quick" brown "fox jumped ""over"" the" lazy dog. Where what I wa...more >>

Problem With Proces Part 2
Posted by James Hancock at 4/1/2004 1:15:55 AM
Ok, now stuff that was working isn't any longer. If I do a Process.Start() with a document I used to be able to monitor for the exit of the process and do work. Now the event is never raised. If I look at any of the properties on the process (id) I get the following error: No process is...more >>

Problem with Processes
Posted by James Hancock at 4/1/2004 12:51:06 AM
Hi all, I'm launching a document using Process.Start() So the file could be a word document or anything else, it just uses the system's default editor for it. All is good, but now if they try and open that same document I want to bring it to the front. The problem is that the Process...more >>


DevelopmentNow Blog