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
all groups > dotnet general > january 2004 > threads for thursday january 22

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

Help with Webforms
Posted by Ken at 1/22/2004 7:33:34 PM
Hello, I have a webform that gets a record from SQL Server by using a stored procedure. The stored procedure uses 3 parameters in which after the record is found, stored procedure #2 runs to update one of the columns called Status from "incomplete" to "Pending" Status is one of the paramete...more >>


VSS with .NET studio
Posted by Steven at 1/22/2004 6:46:32 PM
We have purchased Microsoft Visual Studio .NET 2003. We don't have Visual Studio 6.0 on our side. I was trying to install Visual Source Safe, unfortunately I was not able to install the same. I would like to know whether Visual Source Safe and Visio are bundled along with .NET 2003 and if not is...more >>

Please help urgently.
Posted by Steven at 1/22/2004 6:41:44 PM
Hi all My problem is a little lengthy. But please help me. In my application, ADO.NET DataSet object is not getting constructed in the Web Service Web Method called by the Windows Application passing an ADO.NET DataSet Object as a parameter to the Web Method in Web Service Debugging using...more >>

Credit to Bill Gate
Posted by John Bailo at 1/22/2004 6:22:34 PM
Ok, I have to give that Bill Gate credit where credit is due... I put a CD in my windos 1900 workstation. it has wm9 on it and i just instlled real player one as well. as soon as i put the cd in, wm9 fired up and started playing, meanwhile rp1 was also /trying/ to start up and then finall...more >>

error when starting a new project in visual studio .net
Posted by bernard_2004 at 1/22/2004 6:21:06 PM
Hi When i start a new project in visual studio .net, an error will occur Error writing the project file. Error loading type libary/dll My OS is windows 2000 advance server Thanks...more >>

Cannot access a disposed object named "System.Net.TlsStream"
Posted by ceo NO[at]SPAM eway.com.au at 1/22/2004 4:27:13 PM
Hi, We have built a c# dot net web page that has an online regristraion. It uses a XML HTTPS POST to a payment gateway to do a credit card payment. It crashes every now and again with - "Cannot access a disposed object named "System.Net.TlsStream". We have no idea why. Can anyone advise?...more >>

TypeInitialization Exception
Posted by Dino M. Buljubasic at 1/22/2004 4:13:37 PM
Hi, I am receiving an exception each time I open one of my projects in VB.net. I do not have to run it, I just open the project and a Message box pops up with the message: TypeInitializationException: The type initializer for "MyProjectName.Module" threw an exception. This message box reop...more >>

Concatonation and randon number generation
Posted by Angelina at 1/22/2004 3:31:05 PM
Hi can someone tell me how i would concatonate two values obtained from 2 different textboxes i.e what i want to do is. Concatonate the first letter of a persons firstname with the full surname and then concatonate this with a random number Th2 firstname and surname are obtained from textboxes...more >>



Get time difference
Posted by Sauron at 1/22/2004 2:33:33 PM
Hiya Does anyone know how I would get the difference between 2 times in milliseconds? I am doing functions that may take less than a second, and I need to know how many milliseconds it took. Also, for the function that did take over a second, I need to format the time to take into account the ...more >>

Know the caller from within function...
Posted by Yasutaka Ito at 1/22/2004 12:51:30 PM
Hi, Is there a way to programmatically find out the caller of your function? For example, let's say I have a function called MyFunction(), and I want to debug print the caller of this function from within this function. Private Sub MyFunction // debug print the name of the caller End S...more >>

AssemblyVersionAttribute
Posted by discussion NO[at]SPAM discussion.microsoft.com at 1/22/2004 11:12:41 AM
Hi, In the AssemblyInfo.cs file I change the AssemblyVersion["1.0.0"]; attribute from the default "1.0.*" blah I notice that its FORCING 4 digit notation, so if I use "1.0.0" I get "1.0.0.0" in that property. Are we FORCED to have 4 digits for our versioning or can this be overrided? ...more >>

How to filter DataGrid
Posted by Peter at 1/22/2004 10:41:08 AM
In this topic "Walkthrough: Using a DataGrid Web Control to Read and Write Data" updates/edits of a table are covered for all data and column(s). However no topic or section dedicated to explain on how to filter for specific record(s) or row(s). Any help appreciated. Peter ...more >>

NTP Server
Posted by 4Space at 1/22/2004 10:18:05 AM
Anyone know where I can find an NTP server in C#?? Sort of an open source tutorial type thing. Cheers ...more >>

URL Forwarding Problem
Posted by Binod Nair at 1/22/2004 9:43:19 AM
Hi All, I have an ASP.NET appication running on http://xx.xxx.xxxx.xx/aspApplication and I have a domain http://www.mydomain.com registered at godaddy.com for this application.I have setup domain forwarding at goDaddy.com to forward to http://xx.xxx.xxxx.xx/aspApplication. I am using Forms Aut...more >>

Win32 Resources in .NET Question
Posted by Christopher Burr at 1/22/2004 7:45:38 AM
I'm trying to retrieve a string resource from a Win32 file. In win32 world I would just use LoadLibrary and LoadString. What do I use in the .NET world? -- Chris Burr cburr@kcc.com ...more >>

binding a combo box to a dataset
Posted by Jane at 1/22/2004 7:31:07 AM
Hello I am working on a windows application with C#.net. What I need is to display a list of data in 2nd combo box based on the choice of the 1st combo box. I used SqlCommand object and SqlDataReader. It works fine. But when I use DataAdapter and DataSet objects, it doesn't work. Here is my code ...more >>

Outsourcing secretaries could free up some budget to spend on programmers
Posted by test01a NO[at]SPAM ziplip.com at 1/22/2004 3:39:10 AM
Personally it makes me sick when I see a senior secretary making 40K and I know all I had to go through to make less than 60K after expenses. Data entry is REALLY easy to outsource...the spec is pretty simple you know..."type this" Why not tell our clients (subtly) to outsource more secreta...more >>

calling stored procedures with parameters
Posted by news.verizon.net at 1/22/2004 3:05:13 AM
I have a form with 5 strings serving as search parameters. I collect them from the form, store them in local variables and call a stored procedure executing a select based on these parameters When the parameters are left empty in the form, I nees to make a select without conditions on that param...more >>

Naming convention
Posted by patrick NO[at]SPAM sixulon.dk at 1/22/2004 12:20:32 AM
Hello group! If a company is called for examle ABC, what would be the best practice for naming a namespace. Which one of the following is preferred according to Microsoft guidelines: ABC.Controls or Abc.Controls Thanks in advance, Patrick...more >>


DevelopmentNow Blog