473,788 Members | 2,721 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C# / C Sharp Forum

0
134
thread by: Peter Morris | last post Jun 27 '08 by: Peter Morris
I am looking for private detectives to find him. You are looking for attention, when in fact what you need to do is to turn your computer off, go outside in the sunshine, and listen to the birds singing :-)
0
823
thread by: ad | last post Jun 27 '08 by: ad
Hi, I want to check the Require SSL option in Default web site of IIS; How can I do that with c#?
2
2,223
thread by: Denis | last post Jun 27 '08 by: Denis
Hi, I am trying to convert a double to a string. The problem the value of the double may vary and I need to always the exact value without the exponential and without rounding. Example: double 0.00000000000000000000023 should be string 0.00000000000000000000023 and not 0.00 or 2.3-E24 I tried it with Console.WriteLine(dd.ToString("X",...
2
1,608
thread by: OHM \( One Handed Man \) | last post Jun 27 '08 by: Microsoft Newsserver
I have two assemblies with a different implementation of the same class Lets say ns1 and ns1 with the class Widget. I add the references to the project and put in aliases in each of the properties for the libraries as w1 and w2 and before my using imports, I put extern alias w1; extern alias w2;
3
1,397
thread by: skneife | last post Jun 27 '08 by: =?Utf-8?B?VGFudHIgTWFudHI=?=
I need to access to a dictionary by its index like a string array. Dictionary<string, stringtdmDx1 = new Dictionary<string, string>(); for (int item = 0; item < tdmDx1.Count; item++) { .... how access item by its index ??? } Sam
0
824
thread by: Pete Kane | last post Jun 27 '08 by: Pete Kane
You Lei wrote: I found Jesse Liberty's Programming C# very good
5
2,798
thread by: =?Utf-8?B?aWduaGVucnk=?= | last post Jun 27 '08 by: Jeffrey Tan[MSFT]
I have a managed C++ project and two C# projects. All are class library projects. The C++ project links with native C++ static libraries and references to one C# project. The projects structure goes something like this. Proj2_MCPP --(references)--Proj1_CSharp Proj3_CSharp --(references)--Proj2_MCPP and Proj1_CSharp My objective is to link...
2
2,420
thread by: Qu | last post Jun 27 '08 by: Qu
Hi everyone. The short version: I need a way to change the currently active process at run-time. The long version: I need to get a directory path out of an external application. The only way I seem to be able to find this path is with an environment variable: "XS_PROJECT". Therefore, I can get it via...
0
879
thread by: O.B. | last post Jun 27 '08 by: O.B.
Is there a way to programmatically determine which processes are listing to WH_KEYBOARD?
2
949
thread by: parez | last post Jun 27 '08 by: .\\\\axxx
Hi, Whats the best way of keeping a code base after doing a release.. in VSS 2005? Can I do labels? TIA
9
2,337
thread by: Peter Duniho | last post Jun 27 '08 by: =?UTF-8?B?QXJuZSBWYWpow7hq?=
Is there a straightfoward API in .NET that allows for inspection of a database? That is, to look at the structure of the database, without knowing anything in advance about it? For example, retrieving a list of tables in the database. Doing a little browsing in MSDN, I see that the abstract representation of a database appears to be the...
6
8,548
thread by: Tem | last post Jun 27 '08 by: Tem
List<inta = new List<int>(); a.Add(1); a.Add(2); a.Add(3); List<intb = new List<int>(); b.Add(1); b.Add(2); b.Add(3);
0
1,310
thread by: =?ISO-8859-1?Q?Arne_Vajh=F8j?= | last post Jun 27 '08 by: =?ISO-8859-1?Q?Arne_Vajh=F8j?=
Paul J. Hurley wrote: I have used SharpDevelop for several years. Not for large projects, but for many small. In total about 50000 lines of code. Lots of trivial stuff but still some code. And I like it and have no intentions to switch to VS Express.
2
948
thread by: Karl | last post Jun 27 '08 by: Rick Lones
Can someone suggest where to post a job offering for this skill set?: C# SQL Server 2005 Report Builder Sharepoint Thanks (Does not have to necessarily be a Microsoft site.)
4
1,936
thread by: Richard Carpenter | last post Jun 27 '08 by: Richard Carpenter
I see more and more people using Windows Server for their OS on the workstation they use for development. Is this pretty common? Aside from being able to set up just about any server resource you might need to develop for (SQL Server, SharePoint, IIS, etc.) on your local machine, what are the other pros and cons? What OS do you use and why? ...
3
1,789
thread by: ad | last post Jun 27 '08 by: =?ISO-8859-1?Q?Arne_Vajh=F8j?=
I want to hash a givien string to a hashed string. How can I do witth c#?
16
2,107
thread by: =?Utf-8?B?VGFtbXkgTmVqYWRpYW4=?= | last post Jun 27 '08 by: =?Utf-8?B?VGFtbXkgTmVqYWRpYW4=?=
Hi, I am using Visual C# window to dispaly a set of questions with their answers. The users should be able to move to the next question by clicking on next button. I am going to use only one panel to display one question and move to next question. Can someone please help me with the codes on coding "Next" button? Thanks -- Nejadian
7
2,110
thread by: =?Utf-8?B?VGFtbXkgTmVqYWRpYW4=?= | last post Jun 27 '08 by: =?Utf-8?B?VGFtbXkgTmVqYWRpYW4=?=
Hi, I am using visual studio C# window and I have an xml file which I need to read that file using Object Oriented program. What codes I should use in my class to load and read that xml file. Thanks My xml file call carsXml.xml and it includes below information: <?xml version="1.0" encoding="utf-8" ?> <carlot> <car>...
5
6,346
thread by: TheSteph | last post Jun 27 '08 by: Marc Gravell
Hi ! I have a DataGridView with a Date (DateTime) Column. When a user edit the cell and change the date I woulk like to allow him to write "081501" and programmatically transform the entered date to "2008/15/01"( using a custom method called TransformDate(string ARawDate)) But I can't find any DataGridView event to call the...
5
1,810
thread by: GiJeet | last post Jun 27 '08 by: Jon Skeet [C# MVP]
Hello, I know that all that’s required to use linq to objects, is the collection must implement IEnumerable<Tbut how to know if a collection implements this interface? For example one of the books I’m reading uses the running system processes and I wouldn't know off the top of my head if these processes implement the IEnumerable<T> interface...
5
3,416
thread by: =?Utf-8?B?Q2hyaXN0aWFuIEhhdmVs?= | last post Jun 27 '08 by: RobinS
Hi, how can I add files (e.g. ini-files, xml-files, pdf,..), that should be installed with a ClickOnce deployed applications? Christian
4
6,123
thread by: ludwig_stuyck | last post Jun 27 '08 by: =?ISO-8859-1?Q?Arne_Vajh=F8j?=
Hi, I've a number of WCF services and other components (not services). I'm thinking of creating a centralized logging system. One possibility is to create a logging service that stores everything in a database table, but I was curieus whether this is the way to go; or are there better alternatives to handle centralized logging in a service...
1
976
thread by: =?Utf-8?B?Q2hyaXN0aWFuIEhhdmVs?= | last post Jun 27 '08 by: RobinS
Hi, is it possible to add some kind of custom actions (e.g. call a script) if a ClickOnce deployed application is uninstalled? Christian
4
6,174
thread by: Sin Jeong-hun | last post Jun 27 '08 by: Peter Duniho
Hello. It seems like the default behavior of DrawString is trying to keep the whole word if possible. I'd like the string to be drawn in multilines, but filling the entire line width. For example I'm using a fixed-width font, and the width of the layout rectangle is that of 12 characters, the result I want is, This is a sa mple text. not,...
4
1,882
thread by: Andrew | last post Jun 27 '08 by: CLGan
I am having an interesting namespace conflict. When we use a third party lib we create a company assembly for any descending classes to go in. I have simplified the problem into the example below. We are using the third party assembly Abc.Reports so we have an assembly called ComanyName.Abc. The problem is when I try to use the class...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.