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 > august 2003 > threads for monday august 4

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 31

Dynamic Parameters With Reflection
Posted by Derek Hart at 8/4/2003 11:45:49 PM
I have the following code: Me.GetType().InvokeMember(FunctionToRun, BindingFlags.InvokeMethod, = Nothing, Me, params) I can send in a string from a database into the FunctionToRun variable, = and it will run the method in the current class, but I need to read = parameters from a database in...more >>

twain drivers
Posted by Konrad at 8/4/2003 8:44:00 PM
Hi Can you point me articles concerning using of twain drivers for grabbing image from camera. Thanks Konrad ...more >>

Protecting code
Posted by Sky Fly at 8/4/2003 8:34:46 PM
Hi, I know that when an .NET exe is run, the CLR loads the exe (along with dependent assemblies), compiles them to native code then runs the code. Assuming the assemblies are loaded from a remote inaccessible location, is it possible that during any of the stages of loading the exe into memo...more >>

Compiling
Posted by bob at 8/4/2003 8:03:44 PM
Is it possible to compile dot net programs to a standalone native windows exe (without requiring dot net framework runtime)? If so, is it then possible to distribute exe's with only required dotnet dll's rather than entire dotnet framework? Or alternatively can the dll's be compiled into the exe...more >>

Minimizing windows
Posted by Del at 8/4/2003 6:45:35 PM
Does anyone know how to minimize all the windows on a desktop, programatically?...more >>

Novell snaps up Linux company Ximian
Posted by John at 8/4/2003 6:08:42 PM
"Networking software maker Novell on Monday boosted its Linux portfolio with the acquisition of Linux software maker Ximian for an undisclosed sum. The purchase of Ximian's desktop Linux software will complement Novell's efforts to sell tools for managing networks of Linux servers, the company s...more >>

Determining if an Object is being referenced
Posted by Phil Jones at 8/4/2003 4:28:23 PM
Is there a way to determine if an object is being referenced by any other objects? This is what the GC does to determine whether an object should be properly destroyed. I was wondering if this functionality was available for general use, or embedded within the GC. Thanks everyone... --- ...more >>

API
Posted by Brian at 8/4/2003 3:45:25 PM
Hi, I am looking for a product/API that shows me relationships between sub-objects. To illustrate, say we have Entity A, which has 20 sub-objects related to it. Let's say Bill Gates is Entity A and the 20 sub-objects are contacts of his. I would like to be able to see not only his contac...more >>



Session Variables in .NET
Posted by Carl at 8/4/2003 3:35:12 PM
Hi, I am starting to develop an ASP.Net application. I will have a logon page which will take a UserName and Password. A Stored Procedure will verify that the logon is correct. I was going to use a Session Variable to indicate whether the user is logged on or not. Based on this variab...more >>

Changing policy
Posted by John at 8/4/2003 3:06:12 PM
I can't run a program from other computers on the local network because the program contains an unsafe module (has pointer). Can I create some policy associate with the program so that I can run it from other machine? Thanks John...more >>

Mappoint 2002
Posted by Billy Jacobs at 8/4/2003 3:03:21 PM
I am attempting to draw on a Mappoint 2002 active X control using GDI by the following method: 1. I create a graphics object: g = graphics.FromHwnd(axMap.handle) 2. I draw a rectangle on it. g.FillRectangle(new solidBrush(Color.Navy), 0,0, AxMap.width, AxMap.height) The result is...more >>

Need Help
Posted by Walter at 8/4/2003 2:16:14 PM
Hi All I need help How can i get all the Folders (Name) from the Exchange Server (loop) in C# I need to fill all foldernames in a TreeView Thanks a lot Walter ...more >>

Help! VB.Net Date to Access 2000 Short Time
Posted by Jay at 8/4/2003 12:36:33 PM
I previously posted this question under Visual Basic newsgroup, but was advised to re-post here. I'm hoping someone can help me solve an issue I'm having with VB.Net and Access 2000. Here's the issue. I hope I've included all relevant information. On a form, I have a DateTimePicker wi...more >>

Converting to VS 2003
Posted by Fritz Switzer at 8/4/2003 12:24:44 PM
I'd like to migrate to VS2003, but what is stopping me is the ability to target apps for 1.0 Framework. Finding a way to configure both the compiler and steup/deploy to only support Framework 1.0 without an app config solution is escaping me. Questions: 1. Is there a way to do this? 2. I...more >>

Form.Label.Invoke method not working
Posted by John Altland at 8/4/2003 12:13:52 PM
Here is my basic problem. I have a form that executes a cpu instensive algorithm occupying the first thread. When the algorithm is executed another form pops up telling the user the progress that has been made. Whenever I attempt to update my frmProgress, the events are put placed at t...more >>

downloading a file
Posted by AlexB at 8/4/2003 11:50:53 AM
I want to force a "save as" dialog box to open in IE when a user downloads a text file. Here's my code: <a href="test.log">Download File</a> The problem is IE opens the file and shows it in the browser. Any help is appreciated....more >>

"Index was outside the bounds of the array" on Add
Posted by kim at 8/4/2003 11:27:48 AM
Scenario (I'm a newbie): I have a datagrid with countries listed and 5 parameters in each row. I want to add a row to this datagrid via an Event Handler. Very basic stuff. This method then call a Business method, which calls a Data method which calls an SP in MS SQL. My code compiles well...more >>

datagrid item retrieval
Posted by mark at 8/4/2003 11:20:48 AM
I want to be able to retrieve the data in my datagrid on a postback but I can't find a way to do this. Can anyone help?...more >>

C# - Datagrid - using dropdownlists?
Posted by Marlene Harkcom at 8/4/2003 10:46:00 AM
I've got a datagrid with 5 bound columns in it as well as an edit/update/cancel column. I'm binding this to a dataset. One of the fields is always going to be one of three values. I want the user to be able to hit the edit button and have this particular column become a drop down list w...more >>

ASP.NET Graph maker?
Posted by Gary Howlett at 8/4/2003 9:54:28 AM
Hi, I need a control that can create graphs on a WebPages. Does anyone know of one? Thanks Gary ...more >>

Dumb IDE Question - Inserting an Event Handler
Posted by Marcus Smaby at 8/4/2003 9:11:02 AM
With the rich IDE on VB.net 2003, I was wondering if there is an easy way to set the event handler function for a hand-coded object (SqlConnection for example). I know that if I dim it withevents I can use the drop-down to insert the event-handler template. But if I am not using the withevents, b...more >>

Internet connection
Posted by Krzysztof Kazmierczak at 8/4/2003 7:46:09 AM
Hi All! How i can check if is there an internet connection available? When i use API functions (InternetAttemptConnect, InternetCheckConnection, InternetGetConnectedStateEx) i sometimes have diferent results (when there's no cable, functions says that i'm connected). Is there any other...more >>

Passing multiple query string params from datagrid hyperlink column
Posted by bpschmid at 8/4/2003 7:40:04 AM
Ive got a datagrid with a hyperlink column. I want to click on that column and go to another page, but here's the kicker, I need and want to pass not one, but two different query string parameters and format strings from 2 different bound columns. I know I could do this using session variab...more >>

Detecting the form name
Posted by Michael Albanese at 8/4/2003 5:55:43 AM
I am trying to build a user control that will allow a user to select a date from a calendar. I have to code that will run on the calendar's SelectionChanged event, but i am at a loss to return the data to the correct text box. The question is...How do I detect the Form Name programatical...more >>

basic problem
Posted by kat at 8/4/2003 5:48:10 AM
Hello I have got XP home edition on my PC and I have just installed .NET FW 1.1, but to my dismay I have found out that I cannot have IIS on it Will i now need to install XP Professional or is there a way out thank you for your help ...more >>

porting programs c++ to c#
Posted by Cle at 8/4/2003 12:33:54 AM
hi, I wonder if there are any programs available which do the porting c++ to c# for me? tia Cle...more >>


DevelopmentNow Blog