| Thread | Last Post | Replies |
|
| casting problem | 10 Nov 2006 14:42 GMT | 4 |
hey all, the statement below is giving me a problem and i'm not sure why: medDrp.SelectedIndex = (ViewState["test"] == null) ? -1 : ViewState["test"]; the message is saying that i can't implicitly convert an object to int, Huh?
|
| how to check if a directory exists / and create it if it doesn't | 10 Nov 2006 14:40 GMT | 2 |
If (Directory.Exists(@"c:\indigo\" + txtOfficial + @"\" + comOffice.Text + @"\" + numTerm.Value.ToString())) { storereport();
|
| Q: Is it possible to tell the DataSet wizard where to put source files? | 10 Nov 2006 14:29 GMT | 1 |
When you use the DataSet wizard the .ds files are placed in the root of the project. Is there a way to direct them to a subdirectory? Regards
|
| Internationalization & System.Resources | 10 Nov 2006 14:12 GMT | 1 |
Howdy all, somebody used in the past the library System.Resources for internationalization purpose? I would like to develop an application multi-lingual (english and
|
| Help with time format please | 10 Nov 2006 13:49 GMT | 3 |
i'm currently using the following code without any problem. txtTime.Text = DateTime.Now.ToString("t") however, i want the time to be displayed with am or pm after it. so for instance instead of 15:32, 3:32 pm
|
| Shockwave object doesn't work when IE7 is installed. | 10 Nov 2006 13:22 GMT | 5 |
I have a program that uses the Shockwave Flash Objects (ShockwaveFlashObjects) to display a SWF. Everything works fine. When IE7 is installed on the machine, suddenly we get an 'Invalid char line 2, char 1' error on the SWF file. If we load the SWF file in IE it works fine. If we ...
|
| About Image Editing | 10 Nov 2006 13:18 GMT | 1 |
Hello friends i m devloping one web aplication in which i have images one image per page . I want to mark some part of the image and after tht i want to save tht image with thht changes. So can any body tell me how to
|
| network programming in c# | 10 Nov 2006 12:41 GMT | 2 |
sorry everybody i'm newbie i want to learn network programming in c# but ,i don't know where i can start can u show me the way
|
| How to redact image in web application | 10 Nov 2006 12:37 GMT | 1 |
Well i have number of images in my application which contains some document in it so i just want to mark some part of document in tht image which i think not of any use or i want to hide tht . so i want to mark tht area or i want to do black out tht area after tht i wann
|
| System.Configuration.ConfigurationManager.AppSettings | 10 Nov 2006 12:23 GMT | 2 |
is there any way to tell what .config file the property System.Configuration.ConfigurationManager.AppSettings is trying to access? I have a class which uses this property but no appSettings are being loaded, so I am guessing it is trying to access a different config file than I ...
|
| difference between String and string | 10 Nov 2006 11:22 GMT | 3 |
I notice in my code that is String is typed with an uppercase S it is coloured light blue in the IDE and if it is typed in the lowercase string then it is displayed in dark blue. Can someone explain why this is, and what the difference between these
|
| Problem Formatting A String | 10 Nov 2006 10:57 GMT | 2 |
I'm trying to format a string, using placeholders. I have tried the following : - String Time = string.Format("Time: (({0 - {1}}))", txtDate.Text, txtTime.Text);
|
| Press Esc key to close a form containing many controls | 10 Nov 2006 10:34 GMT | 4 |
I would like to find a way in C# so that, when the user presses the "Esc" key, the form closes; the problem is that I have a lot of controls in the form. At the beginning I have tried with the following form event handler:
|
| MSXML leaves out encoding when using .NET | 10 Nov 2006 10:26 GMT | 5 |
We're using MSXML to transform the XML document we have to an XHTML file using an XSLT. Now the problem is that the dotnet implementation we made does something subtly different from the commandline call to MSXML. The problem is that the dotnet variant leaves out a piece of
|
| Supergrid or WPF | 10 Nov 2006 09:42 GMT | 1 |
Our company needs a grid control. The Window Forms Grid is not adequate. Is there an example how to use Windows Presentation Foundation with .NET Framework 3.0 ?
|