You must reference ('using') System.Configuration namespace. ... === message truncated === __________________________________ Do you Yahoo!? Yahoo! Mail - 50x...
That's because it resides in the System.Configuration Namespace, which you are not referencing. With do: using System.Configuration; at the top of the page or...
Hi, I have a TextBox set to ReadOnly. By default it's colored gray. I would like the backcolor of the TextBox to be white, but I don't succeed to change it, ...
Nico Callewaert
nico_callewaert@...
Oct 1, 2004 1:29 pm
7946
Hi, I have using CrystalDecisions.CrystalReports.Engine; using CrystalDecisions.Shared; and Im trying to use the following line: DocumentReport rptDelNote =...
Use the Solution Explorer to add the following as references : CrystalDecisions.CrystalReports.Engine CrystalDecisions.Shared CrystalDecisions.ReportSource And...
In a partially completed project I've just started working on, the existing code changes the background color to white to represent read-only in textboxes and...
Hi I have some problem installing the ODP.NET.When the "Orcale Net Configuration assistant" windows comes up,I check "perform typically configutation" and...
... <srussell@l...> ... to ... source ... ============================= hi "c:\userlist.txt" ?? i'm not sure but may be you must write two \\ or @ befor ...
In win32 code u have to subclass the control and handle wm_ctlcolorstatic message and return a white brush -- GetStockObject(WHITE_BRUSH) Dunno how it's done...
Hi Dear group I am creating a comboBox control once you type the first letter of any item ,the items which bigen with this letter are selected. but there is an...
How to capture the console output and display on the web page.I have a console application which will be running all days and i'm displaying some messages ,...
When i click on ButtonA, i want to open an email program. Here r the code I'm using: Param := 'mailto:' + 'email@...' + '?subject= 'Subject' + '&Body=' +...
You can use the statement cap=Console.Read(); where 'cap' can be variable of type char,int etc. If you intend to use string variable then replace Read() with...
Hi! I want to copy all the contents of variable (type ='char array') to another variable(type = string). Its ok if multiple statements are involved, but it...
Hello, Anyone know why this program won't show the output? Thank using System; using System.Data; using System.Drawing; using System.Collections; using...
You can use the statement cap=Console.Read(); where 'cap' can be variable of type char,int etc. If you intend to use string variable then replace Read() with...
The simpliest way would be every time you write to a console, also WriteLine to a Text file. Then in the web app read in the text file and display, also if...
Hi, Thanks for the reply. I checked my code and the color is changed after the readonly property is set, but the editbox remains gray. Strange it's working in...
Hi use the string constructor like this. string s = new string(chararray); HTH Chamindu ... __________________________________ Do you Yahoo!? New and Improved...
We have a web application that we have developed (using ASP.NET and C# code) on a local development machine. This works fine against the local web server...
Check this link: http://www.15seconds.com/issue/030610.htm It will provide you with much help on the subject Best Regards, Peter Shoukry "Newtz, Brian"...
Hi all, I want to save one or more log files as a merged log in my program. But when user tries to save a log file with a file name that it existed dotNet...
Open your merged output stream once (outside the loop). Write the input streams to it, and then close it. You don't need to keep rebuilding the string as a...
Investigate ASP.NET caching abilities. For a moderate amount of data you can use ViewState. But there are other options. You no longer need the Session objects...