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 2005 > threads for tuesday october 4

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

VS 2005
Posted by Alex at 10/4/2005 8:07:12 PM
Does anybody knows when they are going to start shipping VS and SQL 2005 for the MSDN Subscriptions? Regards, Alex ...more >>


General .Net Question - 3rd Party Components
Posted by Yosh at 10/4/2005 7:35:28 PM
I am looking for a mail UI component for .Net. I know how to send emails using the System.Web namespace but I am interested in a component with a UI built in? Does anyone know of a component or have any suggestions? Thanks Yosh ...more >>

Please HELP!
Posted by Scott at 10/4/2005 7:15:19 PM
I need to write a vb.net program that would convert the RTF file into PS file to be sent to the printer. Any help is highly appreciated. Scott. ___ Newsgroups brought to you courtesy of www.dotnetjohn.com...more >>

Programmatically read file(s) from a USB device
Posted by domtam NO[at]SPAM hotmail.com at 10/4/2005 6:01:16 PM
Suppose I have one of those USB storage devices (like a mp3 player, USB thumbdrive, or even digital camera) connected to my computer. I'd like to write a C# program that can - detect that the USB device is connected, and then - read file(s) from that USB device. How can I do that? Any refer...more >>

Help with Ent Lib error
Posted by Chris at 10/4/2005 3:32:02 PM
Hi, I am trying to use the data access dll in one of my projects and was originally getting the error: 'Microsoft.Practices.EnterpriseLibrary.Data' does not have a strong name. I then followed instructions and gave the following assemblies strong name using mycompany.snk Microsoft.Pr...more >>

column alignment in datagrid
Posted by amber at 10/4/2005 1:09:05 PM
Hello, Why, when I right-align a column in a datgrid, do the headers cut off on the right? I can't figure out how to fix this... Can I put some type of buffer? I'm using te visual editor to add/edit the datagrid. Cheers, Amber ...more >>

Running GUI application in separate application domain
Posted by nickdu at 10/4/2005 11:07:03 AM
I'm trying to isolate "applications" into their own application domain within a single process. I've quoted applications because it's a logical representation of an application. Basically it consists of a bunch of components supplied by some application group. I got this to work, somewhat. ...more >>

Backcolor of Main menu
Posted by hzgt9b NO[at]SPAM nopost.com at 10/4/2005 10:53:02 AM
Using VS VB.NET Is is possible to control the color menus? Including the main menu bar? THanks in advance...more >>



Combobox issue
Posted by Antonio Paglia at 10/4/2005 9:39:31 AM
Hi people, Dim rows as string = "item1;item2;item3....." Combo.DropDownStyle = ComboBoxStyle.DropDownList Combo.DataSource = rows.Split(";"c) Combo.SelectedIndex = -1 The combo is placed inside an MDI Child form. When the form is showed, the combobox allways apears with the first item sele...more >>

IS THIS POSSIBLE: Creating a virtual file
Posted by dfcoates NO[at]SPAM gmail.com at 10/4/2005 9:19:11 AM
Here's the situation: I have several 3rd party applications that write trace files and log files. We are now being mandated to "scrub" the trace files and log files in realtime. "scrub" = remove sensitive data from trace/log. We only have the ability to specify the log file location in each...more >>

Deleting a user profile folder
Posted by Ed at 10/4/2005 7:52:49 AM
Hello all. Hopefully I can get some help... I have created a little C# console app that we needed to delete certain user profiles from the documents and settings directory. But lo and behold I get an error. Access to the path 'path' is denied. I have deleted the folders manually with no...more >>

How to print a PDF file in C# ?
Posted by François Miermont at 10/4/2005 7:46:13 AM
Hello, I'm trying to make an application in C# that can, from a DataSet, create a PDF file. I'll made that (and it works) using iTextSharp library. Now I want to print this PDF file within the code. I just have the free Acrobat Reader 7.0. In my Visual project, I included a reference to A...more >>

Extracting Assembly Info
Posted by EdB at 10/4/2005 6:35:16 AM
I want to use the Assembly information to display version/build information and I have some questions. I'm able to get the FileMajorPart, FileMinorPart, & FileBuildPart. I am not able to get to the stuff like AssemblyProduct, AssemblyCompany, etc... 2nd, How does the FileBuildPart work. ...more >>

How does SelectedItem.Text.CompareTo("string") work?
Posted by Shaurya Anand at 10/4/2005 5:56:09 AM
We tried the following: (1) if(RadioButtonList1.SelectedItem.Text.CompareTo("bug")==0) row["btype"]='B'; else row["btype"]='E'; and (2) if(DropDownList1.SelectedItem.Text.CompareTo("Open")==0) cmd1.Parameters["@bstatus"].Value='O'; else if(DropDownList1.SelectedItem.Te...more >>

Integers being stored as Hex
Posted by Jeremy at 10/4/2005 5:07:47 AM
I have a weird one here. Yesterday Visual Studio 2003 started storing integers as Hex values. For example if I Watch the variable below (DocId), it shows up as &HB. If I do any comparisons, they don't work, presumably because it's comparing Hex values. If I store it as a string it's correct as "...more >>

Pressing Enter to behave like Tab
Posted by Savvas at 10/4/2005 4:30:19 AM
Hi everyone, A client wants to press enter to go from one textbox to the other instead tab. I have read what others have written in google groups but mostly is asp.net. Can anyone help me please? I tried keypress event or the enter event but didnt manage. Thanks in advance Savvas ...more >>

re: stop watch using vb.net
Posted by Chad Z. Hower a.k.a. Kudzu [msft] at 10/4/2005 12:14:51 AM
> how can i create a stop watch using vb.net > i am performing a data extraction job using windows forms and want to > display time elapsed on the form. how can i do it? The easiest way is to use a Timer component and use its even to update whatever GUI control you use to display the time. ...more >>

re: SmartClient?
Posted by Chad Z. Hower a.k.a. Kudzu [msft] at 10/4/2005 12:07:47 AM
> Obviously a newbie question but: > Is a .Net app automatically a "SmartClient" app? If I build a frontend No. .NET can produce many types of apps, and most apps today produced by .NET developers are not Smart Clients. > in VB.Net or C+.Net and use a SQL Server backend (assuming some sort of...more >>

adding extra items on top of ComboBox DataSource
Posted by DraguVaso at 10/4/2005 12:00:00 AM
Hi, I have a ComboBox of +- 15.000 items in it, via a DataSource. On Top of the Items-list, I want to add some values, based on a user choise (via a filter on the DataSource). Does anybody know how I can do this? When just adding them with ComboBox.items.Insert I get an "Items collection ca...more >>

CheckListBox
Posted by John Hughes at 10/4/2005 12:00:00 AM
2 questions : 1. am using the checked list box to display my list but I with to have 2 columns, ID and Name. I want the ID to be hidden and used in the SelectedIndexChanged method to populate another ListBox utilizing the ID. I cannot see how to do this with this control? 2. Why when I...more >>


DevelopmentNow Blog