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 > july 2004 > threads for thursday july 1

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

HERE WE GO AGAIN, Visual Web Developer 2005 Express SCREWS UP YOUR CODE on PURPOSE...STOP TOUCHING MY CODE, MICROSOFT!!!!
Posted by ik at 7/1/2004 11:31:08 PM
DEAR MICROSOFT: STOP TOUCHING MY CODE!!!!!! Stop ADDING these attributes to my tags meta:resourcekey="LiteralResource3" Your Web Developer 2005 express added that crappy and unneeded attribute to all my tags on my aspx page...you even added that attribute to the @page directive. ...more >>

Visual Web Developer 2005 Express SCREWS UP YOUR CODE on PURPOSE...STOP TOUCHING MY CODE, MICROSOFT!!!!
Posted by ik at 7/1/2004 11:18:06 PM
DEAR MICROSOFT: STOP TOUCHING MY CODE!!!!!! Stop ADDING these attributes to my tags meta:resourcekey="LiteralResource3" Your Web Developer 2005 express added that crappy and unneeded attribute to all my tags on my aspx page...you even added that attribute to the @page directive. ...more >>

Exceptions in IConfigurationSectionHandler.Create()
Posted by Oleg Ogurok at 7/1/2004 11:17:53 PM
Hi all, I'm writing my own custom config section handler. Since I'm parsing my custom part of web.config in Create(), I'd like to throw some meaningful errors if a user has made a mistake. However, no matter what kind of exception I throw, the ASP.NET application will always show some generic...more >>

Mixing VB and C#?
Posted by Tim at 7/1/2004 6:20:01 PM
I've heard it's possible to write multi-language programs, but can't find any examples of this. I'd like to write a program where the gui is in VB but the non-form classes are written in C#. Is there an example or tutorial on how to write an application which mix VB and C#? Thanks [Tim] ...more >>

How to Check for Dups in ListView?
Posted by Mr. B at 7/1/2004 5:56:45 PM
The following code is how I check for duplicates in a List box. This is simple enough as there is only one column of stuff to check. ' Check for Duplicates ' Search listbox (from last to first) For cntr = lbDwgList.Items.Count - 1 To 1 Step -1 ' If next item is a duplicate ...more >>

What is the easiest way to query a remote XML file on someone elses Linux box using secure communication?
Posted by Dan V. at 7/1/2004 4:54:26 PM
Situation: I have to connect with my Windows 2000 server using VS.NET 2003 and C# and connect to a remote Linux server at another company's office and query their XML file. Their file may be updated every hour or so. How can I do this easily? I would like to use secure communication even encr...more >>

File Dates
Posted by Wayne Taylor at 7/1/2004 4:03:28 PM
Hi All I want to read what a partially file date is. So I can log it and look back in the log and see if the auto update from another device has missed at any point. I have used FileSystemWatcher componets to detect the file has changed, I just want to grab the time and date....is that t...more >>

Macro to run before saving files
Posted by Lidström at 7/1/2004 4:01:05 PM
Hi, can I somehow assign a macro to be run just before I save my files? I would like to remove trailing spaces and tabs before save. I already have a macro to do so. Version 7.1.3088 -- Daniel...more >>



ViewState ?
Posted by G-Fit at 7/1/2004 3:59:04 PM
Hello group, I am trying to do something simple (or so do I think). A web page, with a Button, each click on it adding a row in a Table below. The result I get is that the Table always has only one row (the one I'm trying to add), instead of getting one *more* row after each click. I thought V...more >>

Learning .NET
Posted by Harag at 7/1/2004 3:19:29 PM
Hi all. I'm thinking about learning ASP.NET. I currently have: Windows 2000 Pro Dreamweaver MX 2004 IE 6 NS 7 TextPad. 4.5 I currently code in ASP-Jscrip, server side/ MSSQL What do I need to beable to learn ASP.NET? What software, what Version of windows etc. any good URL...more >>

Good GUI design, the .NET way?
Posted by spamhoe NO[at]SPAM yahoo.com at 7/1/2004 3:06:02 PM
I am beginning work on what will be a rather large .NET application. I have a treeview that I would like to be very "intelligent" in that it represents some program data and automatically updates itself. I am wondering what a good design pattern is. Take the Solution Explorer in VS.NET for ...more >>

Annoying Visual Studio 2003 behaviour
Posted by Lidström at 7/1/2004 1:57:03 PM
Hi, how can I have the cursor move back into the code window instead of the output window after a compile? It is very annoying to have to type ctrl-tab, ctrl-tab, to move the cursor back into the code. P.S. I do not want to use the mouse for this. VC6.0 did it just the way I like it. -- ...more >>

Using static methods in apotentially multithreaded environment
Posted by Simon Harvey at 7/1/2004 12:47:17 PM
Hi all, In my project I have made a number of helper methods static. As I understand it, this will create the problem that multiple threads could access the static method at the same time and interfere with one another. My question is, for each static method, do I need to lock access to only...more >>

Creating Excel file with Jet OLE DB in VB.NET
Posted by JBAdamsJr at 7/1/2004 12:18:01 PM
I want to be able to create an Excel file with a VB.NET program on a server that does not have Microsoft Excel loaded on it. I am using the Jet OLE DB to read other data files. Can this be used to save an array in an Excel .XLS format?...more >>

run code on background
Posted by Jurgen Oerlemans at 7/1/2004 10:37:43 AM
Hello I have a program for which I want to see from a distance if it has been started. I made a timer which is enabled when the program is started. Code in the timer: Label_Again: txtWaitRun.Text = "R" Threading.Thread.Sleep(300) txtWaitRun.Text = "Ru" Threading.Thread.Sleep(300) txtWa...more >>

STDS - StronglyTypedDataSets
Posted by Jim Douglas at 7/1/2004 10:25:32 AM
Issues with null data, can anyone point to an article on how to use these properly or others workarounds. I am having to check values before taking data from the typed dataset, which can be a pain, extracting data, settting up OLEDB parameters, etc. Thanks! -- Jim Douglas http:\\www.g...more >>

Resource files - read comments
Posted by Oleg Ogurok at 7/1/2004 10:12:58 AM
Hi all, Is there a method for reading the value form the comment field of resource (.resx) files? -Oleg. ...more >>

Are there any good books on combining VS.NET and FrontPage?
Posted by Jack at 7/1/2004 7:21:01 AM
Unfortuantely, both of these products really should be combined, but they're not. Does anyone happen to know of any good books/reference material describing how to use them in conjunction for best synergy? ...more >>

Viewstate in asp.net
Posted by (s_ying NO[at]SPAM foresightcorp.com) at 7/1/2004 5:20:14 AM
How to understand and parse viewstate in asp.net? ********************************************************************** Sent via Fuzzy Software @ http://www.fuzzysoftware.com/ Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources......more >>

Combatting Keyloggers
Posted by TheDutchman at 7/1/2004 4:56:01 AM
Hello: I work at a company and we make Database software. We use VB.Net and SQL server. Since data is very precious and important, we started thinking about the possibility of keyloggers (Since one of our customers used this to find out our support password.) We are now wanting to combat this ...more >>

Adding web service ref
Posted by Kshitij at 7/1/2004 3:50:01 AM
Hi, I am having a web application developed with me which contains a reference to a web service which is on the local network.Now I am creating the setup project for the web application. I will be deploying the application on another machine and I want to change the web reference that I have adde...more >>

Exporting to Excel via memory-stream
Posted by magnusbl NO[at]SPAM simnet.is at 7/1/2004 3:14:17 AM
Hi I´m trying to export a datatable to Excel. So far I have set up a file dump and can start Excel to read from that file. Now, my question is this: Since I have a stream, could I convert it to a MemoryStream, start an Excel process and instruct it to read the memory stream instead of a filep...more >>

DataSet Question
Posted by Christian Miller at 7/1/2004 3:04:21 AM
Hello. I am trying to follow some VB.net code and am having a heck of a time trying to figure out a dataset source. I am assuming that a dataset is similar to an adodb.recordset in VB6. Here is the line of code that I am looking at: mydataview = New DataView(mydatasource.Tables(0)) I n...more >>

.NET & DataBase Providers
Posted by Jim Douglas at 7/1/2004 12:32:27 AM
We have .NET provider from Sybase which is slower in initial testing than the OLEDB provider from Sybase. Is anyone using .NET provider from Sybase, DataDirect or what? I am coming to the conclusion that no one is this group uses Sybase as a database. -- Jim Douglas http:\\www.genesi...more >>

heresy of the month/feature request
Posted by guy at 7/1/2004 12:15:02 AM
Could we have an outlining style option to hide comments? When I look at historic code the comments are often plain wrong (cos they are not maintained) and lead to incorect understanding of the code. Especially an option to hide XML comments! when i am looking at code with the ide why do i need 3 ...more >>


DevelopmentNow Blog