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 > august 2004 > threads for thursday august 19

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

Boxing
Posted by SK at 8/19/2004 11:55:09 PM
What is the real use of boxing and unboxing in what situations will it be used. Since all types are utlmately dereived from object..what is the need for boxing and unboxing.....help...more >>


connectionstring for VB.Net app which connects to MDB on website
Posted by Rhek at 8/19/2004 8:53:01 PM
Hello, I am hoping that someone can provide a code sample using the following sample information below. I am wanting to create a vb.net application that is run on a local computer and connects to our database on our website. I have seen some connection strings for SQL but not MS Access. I...more >>

Howto: Include text data in a .net executable?
Posted by Ola Theander at 8/19/2004 8:52:39 PM
Dear subscribers I'm currently creating a small application that will run at the end of a web installation to configure a SQL Server. For this task I have a SQL batch file in the same format as SQL Query Analyzer uses. I would prefer not to merge the content of this file into the source co...more >>

Webclient.Downloadfile to get the latest version
Posted by musicsoup NO[at]SPAM gmail.com at 8/19/2004 8:47:45 PM
Hi, I am using the webclient.downloadfile() method to download a file from a remote web server to the local harddrive. public CopyFile(string sSrcPath, string sDestPath) { WebClient oClient = new WebClient(); oClient.DownloadFile(sSrcPath,sDestPath); } Is there anyway i can determi...more >>

Hash table
Posted by Marty at 8/19/2004 7:11:16 PM
Hello, Does anyone has to face the problem of hashing a string of 12 characters AND avoid any collision? I'm looking for some algorithm who could return a good (small) hash value for any string of 12 characters. Do you have any idea? Marty...more >>

Socket - Need help for Multiple clients to server using VB.NET
Posted by User at 8/19/2004 7:05:20 PM
Hi, Let's say that I run this raw code. This is on a server side, the server will wait for client connection request. Private MyTcpListener As System.Net.Sockets.TcpListener Private MySocket As Socket Dim MyPort as int32 MyPort = 1000 Dim ipHostInfo As IPHostEntry = Dns.GetHostByNam...more >>

adding rows to html table programmatically
Posted by bubbles at 8/19/2004 7:05:01 PM
i have a HTML file and it already has a HTML table and a few rows created by default.. however, i would like to add more rows to this table programmatically may i know how? ...more >>

How do you make a webform button run an onClick Javascript
Posted by Cathy at 8/19/2004 4:33:06 PM
Has anyone ever made a webform button run an onClick event that is a Javascript in the HTML code and then after running the script make it go into the code-behind? An HTML button will run the onClick event but will not return to the code-behind. I need to get back to the code, which the webform ...more >>



How to load xml resource file under a folder in a .Net project
Posted by Cindy Liu at 8/19/2004 3:21:01 PM
Hi, If my xml resource file is directly under my project file, I have no problem to load that xml file via Assembly.GetManifestResourceStream. However, after I create a folder under the project and move my xml file under that folder, I cannot load that xml file via Assembly.GetManifestReso...more >>

need url parameter separator "&" not "&"
Posted by DC Gringo at 8/19/2004 2:41:55 PM
I have an image control (that pulls an image off an ESRI map server): <ASP:IMAGE ID="imgZonedCountry" RUNAT="server"></ASP:IMAGE> In the code behind I am setting the ImageURL to a String value with url parameters like this: imgZonedCountry.ImageUrl = "http://server/servlet/com.esri.wms.Esri...more >>

Datasets? Properties? Values?
Posted by Charles A. Lackman at 8/19/2004 2:37:23 PM
Hello, I have been working with an application that sends a dataset to other forms that are called from individual DLL's. I have noticed that, a dataset that is passed to another form, when changed, changes the dataset in all of the forms. But, if you send a string to the other forms, that ...more >>

how many threads? network programming design .NET
Posted by Parahat Melayev at 8/19/2004 2:20:59 PM
Hi I am programming a multi-threaded asyncronous server with .NET But when systems thread count reaches to 1350 system can't respond. Simply my design is creating a Reading Thread after every Accept. And creating a Writing Thread when server sends data. Can you share your experience wit...more >>

VB.NET to c# convert
Posted by Michael Nicol at 8/19/2004 2:03:35 PM
Hey all Our company recently started using .net and started in VB.NET. We've since changed to c#, but has some code already written in VB.NET. I'm looking for a converter that will just take vb.net and convert it into farely nice c#. I've found one or two, but they do some strange stuff and ...more >>

Update disconnected dataset
Posted by Rob Gibbens at 8/19/2004 1:04:39 PM
If I manually create my own dataset with no backing database, is it possible to run an Update sql command on this dataset? What I would like to do is this Dim ds as New DataSet Dim dr as DataRow ds.Tables.Add("table1") ds.Tables("table1").Columns.Add("column1") dr = ds.Tables("table1")...more >>

Moved from VC6 to VS.Net .. missing F4 thru search results, and Shift+Ctrl+G to open include
Posted by Roger at 8/19/2004 12:34:01 PM
Are these two features available in VS.Net 2003 at all (maybe different keys)... F4 to go thru find-in-files search results (just like you F4 to go thru build errors). In VC6, if output window was set to look at find results, F4 would go thru those, and only go thru build errors if build outp...more >>

Detect Change in PC Name
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 8/19/2004 11:55:04 AM
Is there a way to detect if the computer name has been changed in .NET? ...more >>

Compiling resources into assembly
Posted by news.microsoft.com at 8/19/2004 11:52:09 AM
Hi! My app consists of three parts: 1. Client app 2. A webservice with sourcecodefunctions 3. Local "end-user-compiled library" The user does like this: 1. Download small app from Internet 2. Start application and login to my service 3. Small app downloads source code and compiles an ass...more >>

Dropdown lists
Posted by Sara at 8/19/2004 10:52:10 AM
Hi- I have created a dropdown list in my VB.net application, with data from a database table - that works fine. I then added a record to a table through a form that has this drop down list - that worked fine too. The problem is now selecting and displaying this value. All the other fields ...more >>

good getting started info
Posted by Stephanie_Stowe NO[at]SPAM IDX.COM at 8/19/2004 8:33:23 AM
I am an experienced ASp (classic) and VB developer. My organization will be moving to DOTNET. I need to get started figuring out the framework, C# and ASP.NET. (Yeah, yeah I am a little late.) The web and MS site is *awash* with info. Do you guys have a good starting web site or book or some...more >>

Create DB without ADOX
Posted by Tink at 8/19/2004 5:43:04 AM
I have Googled this topic to death to the best of my ability and hope that somebody here can help. I do not want to have any COM dependencies in a project. For various reasons, the application will use an Access database. Unfortunately, it appears ADO.NET does not allow you to create a da...more >>

create component with vb.net for regular ASP..
Posted by Tommy at 8/19/2004 4:49:03 AM
Hi.. anyone know how I can create components(business object) in vb.net for regular ASP??? Regards, Tommy...more >>

customErrors working too well on project open
Posted by Tom Potts at 8/19/2004 3:33:03 AM
Using VS2002 I have added some customError handling which e-mails me on a problem - this works fine live but when I open a project in VS - I dont have to run it - I get a deluge of emails from the error handling code.* How can I stop this? * The errors seem to come from a page that would be...more >>

Localizing text in an exception.
Posted by Ray Cassick (Home) at 8/19/2004 12:45:45 AM
I am running the code for a code assembly through FXCop here and it seems to be throwing a fit each time I pass in some descriptive text into the constructor for various exceptions I am throwing. FXCop says that I should be grabbing the text from a string resource so that it can be localized b...more >>

Completely new to .NET
Posted by karelken at 8/19/2004 12:13:02 AM
Hello, In your opinion : novices should start with Visual Web Developer 2005 Express Edition Beta or with Microsoft ASP.NET Web Matrix ? Thanks -- Karelken ...more >>


DevelopmentNow Blog