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# > september 2007 > threads for sunday september 9

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

How to open my gridview to a google spreadsheet
Posted by Mahernoz at 9/9/2007 10:27:59 PM
Hi Friends, I have a webpage, which has a gridview. I want to export my gridview to a google spreadhseet. I want this urgently. Can you pls give any solution. Thanks & Regards, Mahernoz ...more >>


Crystal Reports Book
Posted by shahoo at 9/9/2007 9:58:04 PM
Hi, Does anyone know a good book (or tutorial) on Crystal Reports in C# ? Thanks in advance. ...more >>

Additional Functions for base classes.
Posted by Jeff at 9/9/2007 9:45:59 PM
I am not sure how to explain what I want but here is an example. you can use the following this.tb_MyTextbox.Text.Replace("a","Z") what I want to do is this.tb_MyTextBox.Text.MyComplexReplace("adc") What I want to do is provide code which I can call to work on any string. Is this p...more >>

how calc the DesktopLocation of a control on a Form?
Posted by Steve Richter at 9/9/2007 8:33:11 PM
I am using ShowDialog to show a popup form and want to position the popup relative to the control on the form the popup is pertinent to. For this, I am using FormStartPosition.Manual to set the position of the form relative to the desktop. I can calc the location of a control relative to the c...more >>

Threading Question
Posted by Frankie at 9/9/2007 2:07:16 PM
Just getting my feet wet with threading... Is it the case that... once a method starts executing in a given thread, that method will [can only] finish executing on that same thread? Or is it possible for a given method to begin executing on a thread, and then finish executing on another thr...more >>

MessageBox
Posted by vinnie at 9/9/2007 1:21:37 PM
Anyone knows if a Message Dialogue Box (MessageBox) is available in the Toolbox panel, or if i have to write all the time the code to create it? Thanks ...more >>

load all HTML into string....
Posted by Rogelio at 9/9/2007 9:56:16 AM
hey, I want to get the entire contents of an HTML page, and put all the html code it returns in a string. so that I can parse that string for data, how would I go about doing this? would I need to use a web browser control ? any help/advise ? thanks....more >>

Detecting signals from multiple mouse-based hardware
Posted by at 9/9/2007 9:43:26 AM
Dear Group, I have got two mice connected to one PC (notebook). In example I click parallel left button on mouse A and left button on mouse B. Is it possible, programmatically detect which on which mouse which button has been clicked? Mainly, the thing what I'm doing is to connect to 'scrol...more >>



Compiler that allows inline IL
Posted by az.anonymous NO[at]SPAM gmail.com at 9/9/2007 9:35:57 AM
As far as I know, csc does not support inline IL. I was wondering: is there any C# compiler that allows inline IL???? ...more >>

How to work with Header files(.h) and lib files in C
Posted by weird0 at 9/9/2007 9:25:42 AM
Hi!all. As part of the course project in the university, students have been given task to develop a front-end for SMILE( an API written in C++ for network modelling). Upon extracting the setup, it gives a collection of " Header files and Lib files" written in c++. Now, how do i add them in ...more >>

How to work with Header files(.h) and lib files in C
Posted by weird0 at 9/9/2007 9:25:36 AM
Hi!all. As part of the course project in the university, students have been given task to develop a front-end for SMILE( an API written in C++ for network modelling). Upon extracting the setup, it gives a collection of " Header files and Lib files" written in c++. Now, how do i add them in ...more >>

Problems Updating label Value
Posted by directory NO[at]SPAM askcybersteve.com at 9/9/2007 9:07:25 AM
hey guys, I've got a weird one for ya....i have a form which takes user input in the form of textbox's etc. It then grabs some details from a file and updates some of the labels with some info like numbers etc. Anyway, i'm just updating the field properties like lblnumber.Text = variable1; ...more >>

winforms async calls for the beginner
Posted by Chandy at 9/9/2007 8:51:52 AM
Hi, I am trying to get my head around threading and delegates and have been reading the "Calling Synchronous Methods Asynchronously" document on MSDN but, strangely, can't get any of the examples to fit in my head with what I want. I say strangely because I thought what I want would be very ...more >>

Access lookup-service managed by C module
Posted by Sune at 9/9/2007 8:29:27 AM
Hi all, I'm not a C# programmer so please be gentle: Prereq: --------------- - The lookup service (see below) implemented by a C module cannot be re-written in C# ;-) - The lookup service is to be loaded into the process of the C# application, i.e. I want to avoid expensive IPC 1) I g...more >>

Thread.Sleep(0)
Posted by Frankie at 9/9/2007 7:05:50 AM
This is from MSDN online (http://msdn2.microsoft.com/en-us/library/d00bd51t.aspx): "Specify zero (0) to indicate that this thread should be suspended to allow other waiting threads to execute." My questions: 1. By "other threads" - does the above statement refer specifically and only to...more >>

Importance of Anonymous Methods/Delegates
Posted by Frankie at 9/9/2007 6:42:54 AM
I have just gotten up to speed on what anonymous methods are (syntax, capabilities, etc), and how they can be used with /called via delegates. What I am wondering is... 1. Are they only/mostly syntactic sugar (important as that can be)? 2. Are anonymous methods *required* anywhere? That i...more >>

How to stop a thread
Posted by Jon Slaughter at 9/9/2007 3:20:03 AM
I'm using Thread and ThreadStart to create a thread for testing purposes and I do not want to use a pool because the thread exists for the life time of the app. Eventually I might move on to using pools but at this point I'm just testing some timing issues. in any cause the thread is simply...more >>

Help With Variable Scope!
Posted by grif at 9/9/2007 12:00:00 AM
Hi everyone! Been a few weeks since i've asked a noob question :) At the moment I'm writing my First Form application compared to the few console bits and pieces that ive been working on. And due to me reading a few new books etc i've started cleaning up my code and sticking the engine p...more >>

Console app async control
Posted by Alistair George at 9/9/2007 12:00:00 AM
Hi all. A win gui has to run a console (cmd) app, desirably the cmd window is hidden, which I will do by placing outside the view area. The GUI must be able to parse the output from cmd and do various things like show a progress meter etc. It should also be able to gracefully close the cmd w...more >>


DevelopmentNow Blog