all groups > c# > june 2005 > threads for saturday june 11
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
eventlog 'For more information, see Help and ...'
Posted by TommyJ at 6/11/2005 9:59:21 PM
Has anyone ever foud a way to avoid the message at the end of each log
message?
The only one one I saw so far is Norton Antivisrus when it writes "files are
up to date...".
Any solution to remove the ms hyperlink would be most welcome.
Thanks
Tom
... more >>
How to add a separator bar in a listbox?
Posted by Robert W. at 6/11/2005 5:15:01 PM
I seem to remember in VB6 that one could add a string item consisting of two
hypens and that would force a line to be drawn in a listbox.
How does one add a separator bar in a listbox in C#.net?
--
Robert W.
Vancouver, BC
www.mwtech.com
... more >>
null == int testing
Posted by cmay at 6/11/2005 4:22:03 PM
In VB you can test if a value type has the "default" value by doing the
following:
dim i as integer
if (Nothing = i) then
'* i is really 0
end if
Now, when I try to do this in C# of course it doesn't work because you can't
do:
int i;
if ( null == i) {
// i is 0
}
of... more >>
override BackColor
Posted by perspolis at 6/11/2005 10:32:02 AM
HI
I created a user control and place some control on it.
I need when I change BackColor of user control,Back Color of other controls
also change..
I used foloowing code:
public override Color BackColor
{
get{return this.BackColor;}
set{
this.BackColor=value;
this.button1.BackColor=value;... more >>
Prevent from change size??
Posted by perspolis at 6/11/2005 10:03:08 AM
hi everybody
does anyone know how can I prevent resizing a control in design mode .
at runtime I know ,but in design mode I don't know??
... more >>
app.config adn web.config in same application.
Posted by craigkenisston NO[at]SPAM hotmail.com at 6/11/2005 9:42:05 AM
I have an asp.net application that uses the web.config to store some
settings. It uses a library that also has its own app.config file to
store their settings.
When I compile and run the asp.net, and I create an object from a class
that is in the library and that needs a configuration settings f... more >>
Refreshing a page within code.
Posted by Kalyani at 6/11/2005 5:30:02 AM
Hi,
I have a page with a DropDownList populated with some values.On a button
click one of the value in that DropDownList DataSource is removed.But to
update the DropDownList contents the page must be refreshed.How can I refresh
the page so that DropDownList contents get updated?
I ... more >>
How can i unplug selected item in Listbox
Posted by simon_add NO[at]SPAM op.pl at 6/11/2005 5:01:48 AM
Hello everybody...
How can i unplug selected item in Listbox.
Thanks in advance.
Paulo
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
CAB file and P/Invoke
Posted by Eyal Safran at 6/11/2005 12:57:29 AM
Hi,
My C# application addresses some unmanaged dlls using P/Invoke and
since these are unmanaged dlls, I have to manually copy them to the
running folder.
In order to make it easier, I can close all these unmanaged dlls in one
CAB file.
My question is:
Is it possible to P/Invoke a dll w... more >>
How to close Form1 when Form2 displays ??
Posted by ematrix at 6/11/2005 12:00:00 AM
Web service execution time
Posted by Sharon at 6/11/2005 12:00:00 AM
Hi all
As I understand, IIS kills long running web services
What is considered as long time?
Where is it defined?
Thank you
Sharon
... more >>
|