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 2006 > threads for monday august 28

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

overview Lib Com SDK
Posted by John Devlon at 8/28/2006 10:41:18 PM
Hi, Does anyone know where I can find a complete overview of all Lib's, Com's and SDK's for Visual studio and ASP? (Commercial and non-commercial) thanx John ...more >>


Enterprise Library Forum
Posted by uanmi at 8/28/2006 8:21:01 PM
Please create an Enterprise Library Forum asap. There is no help on gotdotnet for the many people asking questions. My project is stuck without some answers. -- regards, Mark...more >>

asp.net projects can be copied to another machine and work?
Posted by bic at 8/28/2006 7:14:01 PM
asp.net projects can be copied to another machine and work? Or one has to create a new project and then add existing pages and class lib? -- bic...more >>

Dial-up connection
Posted by Frank Hardy at 8/28/2006 6:43:13 PM
Hi, I have to change the phone number of a dial-up network connection by a C# program. Then the connection should be connected. How can I do this? TIA for any help, Frank ...more >>

Virtual desktop makes .NET modal dialog panels disappear
Posted by jbrock NO[at]SPAM panix.com at 8/28/2006 6:22:54 PM
At work we are using a virtual desktop manager called AltDesk (http://www.astonshell.com/), and it is causing a weird and extremely annoying problem with the VB.NET application I am developing. If I start my app, open a test form using ShowDialog() (this is a menu choice on the main app), and ...more >>

Locking controls in a form object
Posted by RichG at 8/28/2006 3:52:02 PM
I want to lock all controls except the buttons on a form. I sometimes need the form to call lockForms(Me). public sub lockControls(frm as form) for each ctrl as control in frm if left(ctrl.name,3)<>"btn" then ctrl.locked=true endif next end sub Unfortunitly "ctrl...more >>

Tabs and Indents
Posted by Laurence at 8/28/2006 3:06:26 PM
In VS.2005, using VB.NET My editor is behaving strangely. If I press the tab key, the line moves over the appropriate number of spaces. When I click on another line, the line that I had tab'd on moves over more spaces. I have changed the tab and insert, but it doesn't seem to work. The...more >>

How can I manually logout upon errors with forms authenticatioN?
Posted by AAOMTim at 8/28/2006 2:16:02 PM
I want to automatically logout if certain conditions occur in my application. Calling Session.Abandon() does not force a logout. What can I do? -- Tim...more >>



How to insert images into a Microsoft Word document using VB.NET??
Posted by JSL at 8/28/2006 1:51:50 PM
How to insert images into a Microsoft Word document using VB.NET?? my code: Public Function PictureReport() (it doesn't work!!!) On Error Resume Next Dim oDoc As Word.Document Dim range As Word.Range oDoc = GetObject(strIniFileName) oDoc.Bookmarks.Item...more >>

BeginSend timeout?
Posted by Bob at 8/28/2006 12:53:11 PM
This question has been brought up before but I have yet to find a reasonable answer. Can someone explain to me how to create a timeout for the BeginSend method? I have seen where people say to create a timer and then have it close the socket when the timer expires but this is not a true sock...more >>

Mousewheel event...
Posted by Dave K at 8/28/2006 12:33:02 PM
I seem to be missing something... I want to use a mousewheel event in my VB.NET app... and there's a lot of example code on the net showing how to use the mousewheel event... and the .NET docs discuss the mousewheel event... but there doesn't seem to BE a mousewheel event. in VS 2003 or 2005...more >>

File Types in Deployment Project - "Open With" List
Posted by Mark.V.Sullivan NO[at]SPAM gmail.com at 8/28/2006 12:26:39 PM
I have encountered the same problem another posted about several months ago. Unfortunately, there was no result posted on the old thread. I will let the original message text stand and ask if anyone can help me with this.. "I have created a deployment project for a .NET program which opens a...more >>

Newbie ASP.NET Question
Posted by Sean at 8/28/2006 10:41:02 AM
I am working with an ASP.Net web application in VB.net. I am trying to save these characters: (<, >) in a database as text. The problem is that whenever I enter something like: "<text>" it says that whatever is in the textbox(which is "<text>"), is not safe/malicious/etc. I was wondering if ...more >>

DataAdapter.Update( )
Posted by Tom Costanza at 8/28/2006 6:55:01 AM
Is there any way to see the final SQL that gets executed by the Update( ) method. I'm getting a syntax error for the SQL, but all looks OK as far as I can see. I need to see the SQL with all the parameters replaced. Connecting to a MS Access database. Thanks, Tom Costanza...more >>

Make a Base64 string Url Safe
Posted by Rasmus at 8/28/2006 6:35:01 AM
In a asp.net site i need to make a url link like this: http://server.com/test.aspx?base64=c+KAnMOfxZLDqhd2w4DCtMOmwr8hawkCdsK9YH7igqwITuKAmcOhXAcDxbjFoR3Cum/DqwFJRU7DpzbigJlYZD1cJcKBwqgaBsObw6VxMMW9wrTDpD7CpSTDkeKAuuKAlFfDt8W+Jz3CvhM7w5HCjeKAneKAuT3Dn8WTw5zigKErw6QFxaF+wrvDksOkwqjDq1fCrsOewrc= I...more >>

Characters missing when reading from file.
Posted by bart.kowalski NO[at]SPAM gmail.com at 8/28/2006 5:42:04 AM
I'm trying to read a text file that contains international (specifically Polish) characters line by line. I'm using the following C# code: FileStream lStream = new FileStream(pFileName, FileMode.Open); using (StreamReader lReader = new StreamReader(lStream)) { string lLine; while ((...more >>

What's wrong with my IIS after I installed Sharepoint portal serve
Posted by George Shui at 8/28/2006 12:13:02 AM
I first installed Visual Studio .net on my local computer without installing Frontpage Server Exetension 2002 and I tried creating Web Sites and find it work well. Then I installed Sharepoint portal server on the same computer. The sharepoint portal server works well now. But now when I cre...more >>


DevelopmentNow Blog