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 2003 > threads for sunday november 16

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

Socket handles/connections lingering?
Posted by J. Dudgeon at 11/16/2003 11:54:35 PM
Hello, I've written a server that acts as a proxy between the PC and the mainframe worlds. This server service is writting in C# w/.NET 1.1. The service is TCP/IP based and makes heavy use of sockets. The "client" to the service is a C# class library that also uses sockets. I've managed t...more >>

Design Help Please
Posted by Jack S at 11/16/2003 11:00:49 PM
Hi, I am currently working on an winforms client app. It has three main forms for user input. I am having trouble with a good design for persisting the user input. The user input will be used through out the program for some calculations and eventually will be saved to file. Right now my des...more >>

disable BACK & FORWARD button of internet explorer
Posted by Ashvin Navare at 11/16/2003 9:39:06 PM
Hi, We want to disable BACK & FORWARD button of the browser so that user is forced to navigate through the menu options provided in the site. The browser used is Internet Explorer only. Please suggest some solution or any other alternate approach. Early response is appreciated. Regar...more >>

Standard output into batch file variable
Posted by David Every at 11/16/2003 9:34:37 PM
Hi I have a .NET Windows Application that looks for the existence of a process on a remote machine. When it finishes it exits, returning either a "0" (no it doesnt exist, or a "1" (it does exist). If I run it from VBScript as follows: Set WSHShell=CreateObject("Wscript.Shell") strRe...more >>

How to convert HTML escape-sequence into String?
Posted by Evgeny Zoldin at 11/16/2003 9:28:04 PM
Hi, ALL. Namely SUBJ... E.g, I have HTML source of some page. How to convert in .NET '>' , ' ' etc. into its simple String analoques '>' and ' ' respectevely? Thanks Evgeny ...more >>

C# works with Excel 2002 but not Excel 2000?
Posted by Dean Bortell at 11/16/2003 7:27:16 PM
This code runs fine on win xp and office xp: string sheetPassword = "Senior1993"; string sheetToOpen = "NewRpt1c.xls"; Excel.Application excelApp = new Excel.Application(); excelApp.Visible=true; object spreadsheetFileName = Environment.CurrentDirectory + "\\" + sheetToOpen; Excel.Workbook...more >>

VB6 to C#
Posted by Mickey Swanson at 11/16/2003 6:16:43 PM
I need some help converting the following to c#. I'm new to the dotnet stuff so any help or pointers would be appreciated I'm having trouble finding the replacements for InStr and Mid$ Public Function SQLText(ByVal sData As String) As String Dim strTemp As String Dim StrTemp2 As S...more >>

Printing
Posted by Dave at 11/16/2003 6:02:27 PM
Hi, Can anyone direct me to any articles on the best way to give a print option in VB & ASP .net Cheers ...more >>



SQL REPLACE VARIABL
Posted by RAW at 11/16/2003 4:58:15 PM
Hi I have a little problem here with my code Iam asp user and Im trying to > use vb.net on this proyect > > Im trying to pass varible to the sql string this is my code > > <Script language="vb" runat="server"> > Sub Page_Load() > 'relative connection > 'Dim strConnection as String = "Provi...more >>

Problem with view state in an asp page.
Posted by brendogoogle NO[at]SPAM hotmail.com at 11/16/2003 3:52:13 PM
I am developing a web based app. in .net, with C# as the code behind.the problem I am having is with view state for a page. the page is capturing an event fired in an object. the event changes the properties of various controls in the UI. the event is fired when the user enters some info. on the...more >>

ByVal, ByRef - I'm confused
Posted by Sandy at 11/16/2003 2:09:13 PM
Hello! Help!!!! I have ten zillion books that attempt to describe the difference between ByVal and ByRef and none of them are clear to me. I have gathered that ByVal makes a copy and ByRef points to something and changes it. The default for simple data types is ByVal and for objects,...more >>

please help, The process cannot access the file...
Posted by david at 11/16/2003 11:51:29 AM
I am calling a dll in my C# project, when I try to access its log file, I got error " The process cannot access the file "xxxxxxx" because it is being used by another process. ". I suspect the dll doesn't close its log file immediately, but I can not do nothing about it. Since I can open the lo...more >>

What is a "Design Surface"?
Posted by LynchburgRecord at 11/16/2003 11:41:12 AM
Can someone tell me where to find a definition of "Design Surface" Thank you....more >>

Design Surface
Posted by LynchburgRecord NO[at]SPAM hotmail.com at 11/16/2003 11:33:55 AM
The term Design Surface is used a lot. Can someone tell me where is a definition. Thanks....more >>

Datagrid questions
Posted by Jade at 11/16/2003 9:57:31 AM
Hi, I wanted to know if anyone know how to use the first column of the datagrid to display values that are pulled from a database, while the second column is one where i can add my own heading. i.e. i want the first column to contain all the products (pulled from my database), whil...more >>

Arquitecture --- Help!!
Posted by Kenny at 11/16/2003 9:56:07 AM
Hi guys, I need your opinions and suggestion this is the scenario 40 or more clients distributed along the city (those are like Kiosks), each one is collecting information in a DB locally (MSAccess xx) , and each one has to update a central statistics DB (SqlServer7 or 2000) located in a Ser...more >>

Datagrid column width
Posted by Eva at 11/16/2003 5:30:58 AM
How do i indivually change the width of a datagrid coloumn? I am currently using the PrefferedColoumnWidth property, but due to space restrictions i do not want all the columns at the same width. Any help is appreciated....more >>

Listbox
Posted by Luna at 11/16/2003 4:31:30 AM
Hi, I want to pass the values that have been chosen from a few comboboxes into a listbox as a single entry. how do i do this?? this is what i tried... it will probably give u some indication of what im trying to achieve: Dim ChosenDate As Date ChosenDate = dtpRoomDate.Value(...more >>

Disable Next button in VisualStudio.Net setup project
Posted by assafj NO[at]SPAM magen.com at 11/16/2003 1:03:42 AM
Hi, I added to my setup project TextBox dialog control which contains two textbox. I want to add the ability to disable the next button until the user enter some text in the textbox (let's say until the length of the two textbox greather than zero) Any ideas how to do it ? Assaf...more >>

Beginner to .Net Environment
Posted by xBoyz77 at 11/16/2003 12:44:52 AM
Hi All, My company hired a contractor to design the website using ASP.NET written with VB.Net front end. I have just finished install VS .Net on my computer and tried to open the files that the contractor sent and I am keep getting this error message "The selected files is not a valid Visu...more >>


DevelopmentNow Blog