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
all groups > dotnet general > november 2004 > threads for wednesday november 17

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

.Net framework 1.1 SP1 (distributed app)
Posted by Gaby at 11/17/2004 11:30:02 PM
Hi all, When a distributed app. is compiled on a machine with the SP1 do need every machine where the app. will run the SP1? Gaby ...more >>


Message box cannot pop-up as a modal in seperate thread? Pls help.
Posted by sleepyant at 11/17/2004 6:08:15 PM
Hi. I try to call msgbox("somehting") inside a sub which is run in a different background thread. The problem is the message box is not pop-up as a modal form, so whenever there is a message box pop-up, the 'Main' form is still active and clickable. Is there a way to solve this? Please advice....more >>

DataGrid Cells: Detecting Value changes?
Posted by Alex at 11/17/2004 6:00:42 PM
Hi all... I have a DataGrid bound to a DataTable. My DataTable gets updated programmatically as it contains the status of a number of worker threads. Each "main" worker thread launches a number "child" threads, so displaying the status of these in a DataGrid is ideal - one row for each "main...more >>

Rotating Labels
Posted by bignaps at 11/17/2004 5:28:03 PM
I apologize if this is a stupid question but I have searched everywhere for an answer and can't find any suitable answers. How do I rotate labels on a form? I need to rotate them 90 degrees counterclockwise to help facilitate the printing of sticker labels but I cannot figure out how. Any help...more >>

Creating Reports based on hierarchical XML file
Posted by xiang_fang NO[at]SPAM yahoo.com at 11/17/2004 4:33:54 PM
Hi, We have XML files (and its XSD) that are dump of our tree-like data structure in memory. These XML files may potentially have unlimited levels of nesting because some elements can contain themselves (recursively defined). We want to build some reports using some third party reporting to...more >>

LDAP connection & query works on XP, but not on 2003
Posted by jeremy at 11/17/2004 3:55:22 PM
Hello. I have an asp.net application that resides on a non-DC / BDC Sharepoint Server (although it is logged into the domain). The application will perform lookups based on the current user (integrated auth) to an LDAP server which requires no login (AuthenticationTypes.None). When I run it, I...more >>

help with Dot net
Posted by Rahul Chatterjee at 11/17/2004 3:37:12 PM
Hello All I have windows XP Home on my home computer. I have procured the dot net enterprise architecture version and I would like to install it and learn ASP.net. Can anyone tell me how I would go about doing this and what all is required for it. (Eg Install software, requirements, IIS wha...more >>

Asychronous WebRequest
Posted by Fred Herring at 11/17/2004 3:15:01 PM
I have some httpwebrequest code in my vb application which works great for loading large files form my web server virtual directory. Since I need the results of the web request before I can really proceed, I don't mind waiting for the data to complete loading before continuing program operati...more >>



managed c++ class library question
Posted by Elephant at 11/17/2004 2:59:01 PM
Hello, quesion, in a managed c++ class library I create a namespace ( MyNS ). In namespace a struct ( MyStruct) and a class ( MyClass ). public __value struct MyStruct{...}; public __gc class MyClass{...}; I get 2 errors that I don't understand: In MyClass I make a member variable, whi...more >>

Math.Max( 232,0) == 0? Too bizarre: whazzit?
Posted by Ramsey Schaffnit at 11/17/2004 1:18:56 PM
This is true (and I don't believe it either): In the command window - immediate I get the following: ? Math.Max( 232, 0 ) 0 ? Math.Min( 232, 0) -24 ? Math.Max( 232, 100) 100 ? Math.Min( 232, 100) -24 However: ? Math.Max( 232.0, 0.0) 232.0 ? Math.Min( 232.0, 0.0) 0.0 ? Math.Max( ...more >>

ASP.NET Equivalent of FolderBrowserDialog
Posted by MrMike at 11/17/2004 1:18:02 PM
I've used the FolderBrowserDialog control in Windows Forms many times, but is this control available in ASP.NET webforms? Thanks....more >>

OT: Thinking out loud....
Posted by Jim Hubbard at 11/17/2004 12:25:25 PM
File-sharing sucks for large files. Even when multiple people are sharing the same file you're after (like on Kazaa Lite K++) the connections are still slow, vary over time with the, and most will drop connection before you finish the download. Is there a particular file-sharing network th...more >>

Create an access database through C# using ADOX.
Posted by desc at 11/17/2004 12:23:04 PM
I am trying to create an access db using ADOX in C# and I am finding difficulties to find documentation on this in msdn library. Does anyone have any documentation or samples of creating an access db programatically in c#? THANKS....more >>

Hibernate an Application
Posted by Ryan at 11/17/2004 12:20:06 PM
Hello Everyone, We are writing a medical application that due to regulations needs to log itself out after a certain amount of inactivity. Using timers we can determine inactivity, however we want to be able to save the application's state or hibernate it. Any ideas? Thanks. ...more >>

COM+
Posted by Darshan Mehta at 11/17/2004 12:19:02 PM
I installed Visual Studio .NET 2003 (Default Install) on XP Professional with SP2. When I try to register a COM+ app using regsvcs in CMD.exe it gives me an error (Bad Command or File name). But when I try the same in Visual Studio.NET Command Prompt, it works. Is there any way I can get...more >>

Autoincrement in XML files
Posted by John at 11/17/2004 11:14:24 AM
Hi All, I have an xml file which is constrained to a schema Part of the schema shown below: <xs:element name="ID" type="xs:int" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" /> <xs:element name="PersonName" type="xs:string" /> What I do is create a new datarow in the DataSet (T...more >>

look for Printing/Report Tool
Posted by AstronusX at 11/17/2004 9:49:07 AM
Hi, I'm looking for good printing/reporting tool that customize base on user need, like add more columns to report(design at run-time) for the products that we make? Any recommendation?? Thank you ...more >>

Bug in Clientpost.cs?
Posted by Jensen Bredhal at 11/17/2004 9:42:50 AM
Hello, I have copied and paste the following sample code from VS.Net MSDN sample code: But i can not compile it . I'm getting the following error : ....\ConsoleApplication1\Class1.cs(68): The type or namespace name 'HttpUtility' does not exist in the class or namespace 'System.Web' (are ...more >>

Error when attempting to export Crystal Report as PDF document asp.net
Posted by csgraham74 NO[at]SPAM hotmail.com at 11/17/2004 9:36:25 AM
Error when attempting to export Crystal Report as PDF document asp.net. I get the following error. Error in File C:\DOCUME~1\W2K-AD~1\ASPNET\LOCALS~1\Temp\temp_512d88ae-f721-4860-a57f-2eae219dc1c4.rpt: Invalid export DLL or export format. I have recently created an asp.net deployment appl...more >>

Can you add a tooltip to a datagrid column
Posted by Stephen at 11/17/2004 8:12:03 AM
Is it possible to add a tooltip in the column of a Datagrid. Can someone please show me how I would do this for the datagrid column below. Thanks for any help anyone can give me. Here is the datagrid coloum which I want to put the tooltip when the user hovers over it. <asp:BoundColumn Da...more >>

Highlighting an item in a combo's drop-down list
Posted by Duncan at 11/17/2004 7:50:04 AM
With the combo box in .Net, if you type text while the drop-down section is displayed, it automatically scrolls through the list for the first applicable item based on what you've typed. This is quite handy, but I think it would be handier if that item in the drop-down section was highlighted....more >>

VB.NET 2003 Won't run a form
Posted by joseph micheli at 11/17/2004 7:48:02 AM
When I try and run a form in VB.NET 2003, the form does not run. It indicates that the build succeeded, but the software just hangs there and never displays the running form. Any ideas? -- Joe Micheli CPA, CMA, CFM, CPIM...more >>

ValidatorEnable() and Page_ClientValidate() in NETSCAPE
Posted by bthomas71chevy NO[at]SPAM yahoo.com at 11/17/2004 7:47:01 AM
I am running through an almost completed Web App and thought I would run it through Netscape for that 5% of users and WOW, Netscape doesn't play nice with the app !!!! Among many formatting issues (sizes, colors, etc), it seems that the two functions (in JavaScipt) don't seem to be recognized ...more >>

How to populate checkboxes in a grid control?
Posted by awan at 11/17/2004 7:14:08 AM
In grdReport_ItemDataBound event how could I populate the checkbox column according to another hidden column value? Thanks! awan...more >>

while using FormsAuthentication exempt a directory
Posted by Mike at 11/17/2004 6:31:02 AM
I want to exempt an entire subdirectory "/help" from the need for FormsAuthentication. How can I do it? I am using .Net FormsAuthentication to require login to all non member pages in my application via <authentication mode="Forms"> <forms loginUrl="loginPage.aspx" name="Author...more >>

problems installing remote debugging
Posted by Kmistic at 11/17/2004 6:19:06 AM
Not sure if this is the right place to post this question, but here it goes. I am trying to install remote debugging on my server. The instructions for doing this are to go to this page in the root directory of the setup cd: RemoteComponents.htm Then follow along. I have done everything i ...more >>

Strong names ...
Posted by Leonardo D'Ippolito at 11/17/2004 5:41:35 AM
Hello sirs, I am trying to understand how strong names work. Suppose I have lib.dll (a .net library), and also MyApplication.exe (a .NET WinApp) . MyApplication uses lib.dll . Suppose someone decompiles lib.dll and replaces code parts, and then recompiles again. When MyApplication.exe will ...more >>

system_web files
Posted by James at 11/17/2004 5:09:10 AM
We're having problems with the Javascript validation on our forms. There are 2 folders in the 'aspnet_client/system_web' folder as follows: 1_0_3705_0 1_1_4322 My questions are as follows: 1) Which one is the correct one 2) Can the other be safely deleted? 3) Does this folder need upda...more >>

form validation problem
Posted by James at 11/17/2004 3:33:02 AM
Dear all, We have a problem with a form that was working perfectly well last week. As far as we are aware nothing has changed. If you can look at the link below (please do NOT complete an application though!), complete the required fields (enter bogus info by all means) and try to submi...more >>

maximize in titleBar
Posted by s-galit at 11/17/2004 2:14:03 AM
is it possible to do enabled(false) to the "maximize" in the titleBar?? how?? thanks in advanced ...more >>

Resetting all object variables in c#
Posted by lee at 11/17/2004 1:58:03 AM
I wont to reset all the variables in a c# object at run time, I was hoping for a field collection or some similar method of iterating through the variables. Any ideas ??? -- Lee....more >>

is one language in .NET enough
Posted by goran vukovic via .NET 247 at 11/17/2004 1:12:51 AM
(Type your message here) 2 years ago someone claimed multiple languages were an advantage= of =2ENET=2E COBOL=2ENET was a hot topic=2E Does anyone code in J#?= Rubbish=2E Stating the obvious, VB=2ENET was made for VB and C# for= C++ developers to help the transition to =2ENET=2E People forget...more >>

threading.timers - what's wrong here?
Posted by Tom Enderle via .NET 247 at 11/17/2004 1:09:23 AM
Ok, i've spent days googling and revamping code=2E Now I've= stripped out everything in an effort to pin this one down and= will gladly admit I'm an idiot - would someone please just point= out the (simple, basic, shoulda-known-better) flaw in my= implementation of this=2E I started out ...more >>


DevelopmentNow Blog