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 > c# > june 2006 > threads for sunday june 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

Help regarding com+service.
Posted by archana at 6/4/2006 11:04:38 PM
Hi all, Can someone help me in understanding com+ services. Means exact use of com+ services. Why to use com+services. Please help me. Thanks in advance. ...more >>


DataGrid Webcontrol
Posted by Magnus at 6/4/2006 11:01:20 PM
I have a datasource with items, the DataGrid is bound to this datasource through its DataSource property. Each item in the datasource is displayed ok in the DataGrid, with one row for each item. However, I would like for each item in the datasource to be displayed over two rows in the Da...more >>

Is there a way to determine the progress of a select statement
Posted by Robert Bravery at 6/4/2006 10:58:00 PM
Hi all, New to C#.net I have a select statement to a rather big CSV file, use MS text ODBC driver. Is there a way to show the user progress of the data retrieval. Currently I just have a form stating that it is processing please wait. Thanks Robert ...more >>

Detecting the end of a line when reading a text file
Posted by Z.K. at 6/4/2006 10:45:08 PM
In C#, using the StreamReader, how do I detect when you get to the end of line. I am reading a text file using the Read() function and I need to detect the \n\r, but everything I try does not work. I am sure that this probably fairly simple, but I have not been able to figure it out. ...more >>

Does anybody have a real-world sample of building a treeview control
Posted by Henry at 6/4/2006 10:41:29 PM
Does anybody have a real-world sample of buiding a treeview control using data from database tables? All the sample code I have found either builds the treeview manually or uses a file directory as the sample. I have trouble translating those samples to working with data coming from my dat...more >>

How to start application on remote host server?
Posted by Mark Huebner at 6/4/2006 9:43:31 PM
I am trying to create a web application with Visual Studio 2005 and C# that will start up a "keep alive" application on my web site's server. My DotNetNuke home page loads slowly when the site hasn't been accessed for a while. The purpose of the "keep alive" application is to keep my web sit...more >>

Create a CustomControl ... some doubt
Posted by Andrea at 6/4/2006 6:06:40 PM
I'm trying to create a custom control, but I've some doubt. I do the following to setup the designer default value internal class MyControlDesigner : System.Web.UI.Design.ControlDesigner { public override void Initialize (IComponent component) { if (!bas...more >>

non-focusable form
Posted by Roman at 6/4/2006 5:41:39 PM
hello im working with winforms. how can i make form a non-focusable, more precisely i want to have form that is half transparent and is positioned somewhere on the screen and i still can click some items that are behind that form, for example i have my transparent window in lower right corne...more >>



Scroll Pointer in DataGridView
Posted by randy1200 at 6/4/2006 5:20:02 PM
I have some buttons that increment and decrement the index of a DataGridView. The code below gets the updated index value. The code below highlights the first column of the current row. dataGridView1.CurrentCell = dataGridView1[0, index]; This is almost exactly what I want. I'd really pre...more >>

Installation monitoring and capture......
Posted by ljh at 6/4/2006 4:35:18 PM
(note: this is being posted to the dotnet groups because of thier expertise in app development and network administration) I cannot, for the life of me, remember the name of an application that I had a couple of years ago. It was an app that monitored the installation of another applicatio...more >>

Class Library => MS Visio
Posted by Just D at 6/4/2006 3:42:18 PM
All, If there is a more or less simple way to import the classes and their relations and create the Microsoft Visio diagram? I can't imagine that I need to do that manually, only if I have no choice... :( Just D. ...more >>

How can I make to create a folder and direct access?
Posted by Carlos VillaseƱor M. at 6/4/2006 3:33:47 PM
Hi everybody! At this time I'm developing my first vusual C#.Net application, and at the same time I making the "Setup and Deployment" project to install that application in another computer, everything well, but I don't know how to configure my Setup project to ask for and create the folder a...more >>

want to use this code in C#
Posted by Avi G at 6/4/2006 2:51:01 PM
Hi, i'm trying to run a program from the %ProgramFiles% with no success,what is the problem with this code'why i can't run the program,i've to use the %ProgramFiles%,Plz help with this code Process Outlook_Express = new Process(); Outlook_Express.StartInfo.FileName = Environment.SpecialFo...more >>

Concantenated Object Naming in a Loop
Posted by TheLostLeaf at 6/4/2006 2:32:10 PM
Hello, I am trying to get this code: p1_1.Image = System.Drawing.Bitmap.FromFile(imgPath + picture[0].ToString() + ".GIF"); p2_1.Image = System.Drawing.Bitmap.FromFile(imgPath + picture[1].ToString() + ".GIF"); p3_1.Image = System.Drawing.Bitmap.FromFile(imgPath + picture[2].ToString() + ...more >>

New to C# - Need help with comboboxes
Posted by Rick Shaw at 6/4/2006 1:02:52 PM
Hi. I am very new to C# and needed help. Use to program in Delphi but switching to C#. I am just starting my very first application and already don't know what to do. Here is what I'm trying to do. I have 2 comboboxes. 1st combobox is filled (dataset binding) with list of companies fro...more >>

Binding to Business Objects and Generic List
Posted by ME at 6/4/2006 12:39:40 PM
I have an object we'll call it MyObject. MyObject has a property calld MyBusinessObjects of type List<IMyBusinessObject2>. IMyBusinessObject2 is a defined interface in my application (See below). I want to bind the MyBusinessObjects property to a ComboBox as follows: ComboBox cbData = ne...more >>

Hide columns in datagrid
Posted by daz_oldham at 6/4/2006 11:45:20 AM
Hi If I have a stored proc that returned colA, colB, colC, colD and colE, but I only wanted to display colB, colD and colE, how would I do it? I can get my datagrid to display okay - I am using my own code-behind code rather than the wizards if it has any bearing on the answer. Many thank...more >>

Bitmap and Graphics
Posted by Andrew at 6/4/2006 11:45:08 AM
Hi, I'm trying to blit small bitmaps onto a larger bitmap, and I've got a few issues wrt positioning and output size. I think my problems are due to DPI differences... My small images are 72 DPI My Large image (which i need to create in code) needs to be 300 DPI. My code as it stands ...more >>

Maintaining Page State with Panel Control
Posted by clintonG at 6/4/2006 11:19:47 AM
I'm having a problem maintaining state with a Panel control in a MasterPage and I need help thinking through this process. The basic structure of the HTML in the Master looks like this... <asp:PanelActivatorLinkButton ... /> .... .... <asp:Panel Visible="[true | false]" ...> <asp:LoadConte...more >>

Is this a bug with events and add/remove?
Posted by David Levine at 6/4/2006 11:07:39 AM
I ran into a problem this morning with event accessor methods that appears to be a bug in C# and I am wondering if this a known issue. public event SomeDelegateSignature fooEvent; public event SomeDelegateSignature foo2Event; { add { // some code here } remove { // so...more >>

How to get namespace
Posted by ad at 6/4/2006 8:25:40 AM
Hi, How can I get the namespace of my program in run time? ...more >>

Installation of .NET 2.0 dotnetfx.exe ( VC# Express)
Posted by Ian Semmel at 6/4/2006 7:43:51 AM
OK, VC# Express does not have the project deployment option. So, if I want to distribute my app, I included dotnetfx.exe. I tried to execute this using a program butr this didn't work so I just tried executing dotnetfx. The program chugs away for a while and then fails with error 25007, s...more >>

Dynamically Change a DataGrid Value
Posted by dauphian NO[at]SPAM gmail.com at 6/4/2006 7:31:27 AM
Greetings, I have a dataSet that I am loading into a dataGrid where one of the columns values is simply one letter. I need to be able to assign that letter to word: BoundColumn type = new BoundColumn(); type.DataField = "type"; type.DataFormatString = checkType("{0}"); type.HeaderText = ...more >>

GetRequestStream blocks
Posted by Mike Markiewicz at 6/4/2006 12:44:28 AM
I need help from someone who's familiar with HttpWebRequest. I'm trying to extract data from a website that requires you to log in. I'm using the GetRequestStream method to send the POST data. I can successfully get through logging in, but there is a second post that has to be done. When I ...more >>

Keyboard Controller Buffer (Writing To)
Posted by NvrBst at 6/4/2006 12:29:26 AM
I'd like to simulate keypresses at the lowest level I can (writing to the keyboard buffer if possible). I can find x86 solutions but nothing for a higher level language. Does anyone know how I can do this in C#? I'm also wondering if the "keybd_event" or "SendInput" goes as low as writing ...more >>


DevelopmentNow Blog