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 > october 2003 > threads for thursday october 23

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

Install over VisualBasic.net
Posted by Mario Guttman at 10/23/2003 8:28:52 PM
I own Visual Basic Professional which I am using to qualify for the upgrade price on Visual Studio .NET. A while ago I bought VisualBasic.net and uninstalled my Visual Basic. Now I want to install the full Visual Studio. 1. Should I uninstall the Visual Basic.net? 2. How does the install...more >>


Cdo errors
Posted by chris at 10/23/2003 7:54:24 PM
hi i am trying to send a mail using C# and asp.net but i get the following error, object objMail = Server.CreateObject("CDO.Message"); objMail.From = "chris@hotmail.com"; objMail.To = "chris@hotmail.com"; objMail.Subject = "Simple mail test"; ...more >>

Two forms sharing data
Posted by DaveE at 10/23/2003 6:47:15 PM
I have a project consisting of two forms and a class that I created. The class, called Project, has several properties and a method. Form1 instantiates my Project class and populates the properties from textboxes. When the user presses the Next button, Form2 should display the data in t...more >>

.NET MSDN subscription Universal, Enterprise, Professional which to choose
Posted by bobby at 10/23/2003 6:11:57 PM
Trying to decide which subscription to go for. Having a look at http://msdn.microsoft.com/subscriptions/levels/default.asp I can see there are the differences but are there more than this displays? The reason for my question is that I seem to remember that there was more controls (and uti...more >>

session_end question
Posted by Vincent at 10/23/2003 4:44:19 PM
hello there, I want to find out if I close a browser, does that end a session? I want to use a session variable to track the number of user of my site, so I add 1 to a session variable when the "session_start", and minus 1 when "session_end". The session_start is fine, but the session_en...more >>

Dynamically adding values to bound combobox??
Posted by Aaron Ackerman at 10/23/2003 4:01:59 PM
I have a bound combobox the appears on a cell within the column of my bound grid when the user clicks on a cell n(In my vb.net WinForm app). I am trying to allow the adding of an item to that bound combo by allowing the user to dynamically type in the new value directly in the combo box whcih in...more >>

SmtpMail delivers incomplete body
Posted by ecastro NO[at]SPAM hp.com at 10/23/2003 3:48:06 PM
I'm using the System.Web.Mail.SmtpMail class to send email from an app I wrote. I needed to install IIS to get it to send the messages even though I wanted to use an existing SMTP server. Anyway, I got it to send messages for me which is great.... Unfortunately, I do not receive the complete con...more >>

NamedColors problem
Posted by Tim Mulholland at 10/23/2003 3:45:24 PM
I am having a problem where a color i select, and convert to a string for storage in an XML file is not being converted back properly. The following is a small example that illustrates the problem.The color seems to show up properly, but it has lost its IsNamedColor property. Is it possible to ge...more >>



code doesnt work
Posted by chris at 10/23/2003 2:51:39 PM
hi i am trying to make a vb.net control using Imports System.Web Dim email As New System.Web.Mail.MailMessage but it gives me the error Type 'System.Web.Mail.MailMessage' is not defined. why is that however i am able to send messages using asp.net's createobject ("...") why is that? t...more >>

"Background" not in KnownColors Enumeration
Posted by Charles Law at 10/23/2003 1:49:26 PM
When displaying the Color Picker for a web page (in the VS IDE), Background is listed on the System Colors tab. Also, Color.FromName("Background").IsNamedColor returns True. However, Background is not a member of the SystemColors class, and it is not a member of the KnownColors enum no...more >>

Calling an object from an object
Posted by Schu at 10/23/2003 1:23:25 PM
I have a project with 2 DLLs, one of which is supposed to call the other, but I can't seem to get it to work. I am doing the following: 1) The 2 DLL projects are set up as VB class projects and their DLLs are compiled (build command). 2) The 2nd DLL is referenced from the first one. 3)...more >>

Combine DLL's
Posted by Patrick at 10/23/2003 1:15:30 PM
Is it possible to combine two dll assemblies into one? If so, how? TIA Patrick...more >>

Combine DLL's
Posted by Patrick at 10/23/2003 1:15:10 PM
Is it possible to combine two dll assemblies into one? If so, how? TIA Prateek...more >>

Rules of thumb for WinForms vs. WebForms
Posted by BillyTheKid at 10/23/2003 1:03:50 PM
Are there any rules of thumb for when it is more appropriate to use WinForms over WebForms. It strikes me that WinForms is best suited for many/most "Intranet" and some "Extranet" scenarios but wholly inappropriate for "Internet" scenarios. I ask because there seems to be a school of thought t...more >>

GAC and assembly types
Posted by Paul K at 10/23/2003 12:58:38 PM
I have a base interface named IBase. Two classes, CChild1 and CChild2 implement IBase. CChild1 and CChild2 perform the same function but in different ways. My client application needs to be able to choose either CChild1 or CChild2 at runtime and create an object of the class. I haven...more >>

Why events, why not just delegates?
Posted by Marty McDonald at 10/23/2003 12:01:13 PM
It is still unclear to me why we would use events when delegates seem to do just fine. People say that events make it so the publisher doesn't need to know about the listeners. What does that mean? Why are events better than delegates? Thanks ...more >>

Read and write from a serial port using c#
Posted by Daniel_Ã…berg at 10/23/2003 12:01:03 PM
I can't find how I can, in c#, open a serial port and read and write to it. Anyone that knows if there is any namespace with methods or code example....more >>

machine debug manager service locking registry key preventing profile sync
Posted by DC Gringo at 10/23/2003 10:30:25 AM
I recently added a machine with Visual Studio.NET 2003 on a Win2k sp4 SERVER machine and am having problems with roaming profiles. Apparently the Machine Debug Manager (mdm.exe) service is holding on to a registry key during shutdown and restart and prevents the roaming profile from synchronizi...more >>

"Visual" User Controls in VB.Net (ASP.Net) ??
Posted by im2dxtreme NO[at]SPAM aol.com at 10/23/2003 9:51:40 AM
(Sorry for the cross-post, but no one responded to my other thread.) When developing a web page in VS.Net, I see everything in WYSIWYG format. And when I am creating a User Control, I see that drawn the same way. However, when I drag the User Control onto my main page, I see a gray box whe...more >>

The use of Classes
Posted by Schu at 10/23/2003 8:44:37 AM
If I have 2 VB Classes that are DLLs on my workstation and I reference them from a program as follows: program -> Class A -> Class B it puts the DLL for class B into the Bin directory for Class A along with the DLL for Class A. If I later decide to make changes to Class B, how will the ...more >>

CDO?
Posted by shin at 10/23/2003 8:33:50 AM
hi i am using windows 2003 and donet 2003 do i need to install exchange server to send a mail using CDO or CDONTS? ...more >>

Where is Visual Studio for Applications SDK
Posted by Silva at 10/23/2003 8:31:21 AM
Hi! Does anyone knows where is vsa sdk? It has already been shipped? It has been abandoned? Is there a way of using vba sdk with .net Applications? Thanks, Silva...more >>

Create instance takes long time???
Posted by serge calderara at 10/23/2003 8:28:12 AM
Dear all, I have a simple class in my application whcih create dynamically textbox control to be place on a form When I execute the code : log(time) my control = new myclass() log (time) it take more than 3 secondes to execute, even if I have just a simple line in myclass contructo...more >>

update datetime sqlserver
Posted by mcod3r at 10/23/2003 7:44:12 AM
i'm using an sqlcommand like this "update mytable set myfielddatetime='" + DatetTime.Now.ToString("G") + "'" but when i execute it, i get an exception (System.Data.SqlClient.SqlException) that tell me : converting from char to datetime generated a datetime overflow how can i execut...more >>

Help! How to HTTP Post in Dot Net??
Posted by leeedw NO[at]SPAM hotmail.com at 10/23/2003 7:27:22 AM
I'm trying to port one of my applications from VB6 to Dot Net. In my VB6 app I do an HTTP Post of data to a website and receive a response. I want to essentially do the same thing in VB Dot Net. This is my original VB6 source code: WinHttpReq.Open "POST", "https://www.abcdefg.com/ProcessI...more >>

Implementing Address Labels in application
Posted by Chris B at 10/23/2003 6:52:22 AM
Does anyone know of a way in VB.net, to implement the following functionality in printing address labels. Allowing the user to select from which location on a stadard address label sheet (Avery 5160) they want to begin there printing from. The address labels are printed using Crystal Rep...more >>

Replace return with tab
Posted by Paul at 10/23/2003 5:26:38 AM
I have a form in c#. I want whenever a user presses return on a text box, combo box or numericupdown control the key press will be trapped and replaced with a tab character forcing the user to move to the next control. I can trap for the character but can only block the return and then do ...more >>

Open Source Challenge: Compile It or Shut Up
Posted by john a. bailo at 10/23/2003 5:00:56 AM
I have created the world's greatest OSS program. Here it is. I defy you to compile and run it. This will separate the trolls from the zealots. HHAHAHAHAHHAAHAHHAH!!!!! /////// yoU.c #include <gtk/gtk.h> static gint delete_event_cb(GtkWidget* w, GdkEventAny* e, gpointer data)...more >>

can i create my own controls?
Posted by avl at 10/23/2003 4:46:35 AM
I want to create my own controls which are totally diferent from the existing controls like button and textbox.I dont want to use the existing web controls in anyway i.e I dont want to go for user or custom controls. Can anyone please give me an idea as how to design a control,how should ...more >>

.NET passport authentication
Posted by srinivas at 10/23/2003 4:41:31 AM
Hi all, I want to test .NET passport authentication on my site which is not for public consumption. ie., I want to test on my local machine (localhost). Can someone give my step-by-step example of refer any site which gives this help? Thanks and regards, Srinivas ...more >>

WHAT? I CAN'T HEAR YOU
Posted by john a. bailo at 10/23/2003 4:25:26 AM
I'm listening to RUN DMC and Aerosmith Walk This Way in Ogg vorbis format on Radio Free Virgin ...more >>

Add new record using bound controls on windows form
Posted by Paul Edwards at 10/23/2003 4:11:21 AM
I am writing an application in c# that connects to a SQL server database. Following examples etc I can use bound controls and with the position property go to a row and edit it and save changes back to database. The problem is I can't find how to set the position of the form to a new row. ...more >>

HLP: GRRR... StartUp Troubles
Posted by Mr. B at 10/23/2003 1:48:06 AM
GRRRR... I've run across a situation in which I have NO solution. Hopefully there is one. VB.net. It's rather simple. I've a ComboBox that get's populated via a Database. And I pre-select (during Formload) the Index using SelectedIndex: ' Get User info from Data Base fill daPi...more >>


DevelopmentNow Blog