NumericUpDown for webforms?
Tue, 11 Nov 2008 07:45:17 -0800 (PST)
Is there a control I can use on a webform that is similar to Winforms'
NumericUpDown? I don't seem to be able to find it when I am working
on a web project.
Thanks,
jake ...
|
Code Behind as standard
Tue, 11 Nov 2008 15:32:38 +0100
Is there a way to default the creation of a new Web Form in Visual Web
Developer 2005 Express Edition to "place code in a separate file"? Several
times I have created a new Form, and forgot to click checkbox. And then you
have to delete the form, and start again. I would like to make code behind
the standard ...
|
Disabling the power key in windows mobile device
Tue, 11 Nov 2008 06:21:01 -0800
Hi,
I am trying to disable the power key in windows mobile version 6.0 while my
application is running. The user should not be able to turn off or turn on
the device. Those functionalities should happen by programming using C#
codes. Could someone please help me with that? Is there any site that
explains ho ...
|
Wpf: Merge toolbars between Window and UserControl?
Tue, 11 Nov 2008 06:09:29 -0800 (PST)
Hi,
In WinForms, you could have a MDI child merge it's menu / toolbar
items automatically with the MDI parent's. I'd like to know if
there's a way to do something similar for Wpf, but with a UserControl
and host Window. Ideally, the solution would be a pure Xaml one.
Thanks!
Andy ...
|
Re: http (c#)
Tue, 11 Nov 2008 04:07:32 -0800
What is the difference between :
WebClient client = new WebClient();
client.UploadFile(url,path);
And the option of using:
HttpWebRequest myReq =
(HttpWebRequest)WebRequest.Create(httpPath);
for the purpose of uploading zip file to some http location?
Thank you!
*** S ...
|
Bad Flicker, TransparencyKey and ControlPaint.DrawReversibleFrame
Tue, 11 Nov 2008 12:51:06 +0100
Hello NG,
I had/have a bad flicker Problem with my Application.
On starting some applications, while my app was running, the whole Display
started to flicker. Even the desktop Icons!
Looking for help on this issue, I ran over a anser Linda Liu [MSFT] at :
http://groups.google.de/group/microsoft.public.dotne ...
|
DataView filter
Tue, 11 Nov 2008 03:40:48 -0800 (PST)
Hi
I have a dataview. I would like to apply a filter on the dataview on a
column with datatype system.string. I have filter with wild char *.
>>> Operator LIKE is used to include only values that match a pattern with wildcards. Wildcard character is * or >>> %, it can be at the beginning of a pattern '*valu ...
|
|
|
C4.5 decision tree algorithm
Tue, 11 Nov 2008 03:25:22 -0800 (PST)
Hi,
I'm looking for a C# implementation of the C4.5 algorithm or failing
that, a pseudocode implementation easy enough that I could implement
in C# (I'm pretty new to decision trees, so it would have to be pretty
detailed etc...)
Any comments/suggestions/advice would be greatly appreciated.
Thanking you, ...
|
http (c#)
Tue, 11 Nov 2008 03:22:16 -0800
Hello,
I am trying to transfer zip file via http - how can I do it in c#?
Thank you!
*** Sent via Developersdex http://www.developersdex.com *** ...
|
newbie question - how to sign binary files
Tue, 11 Nov 2008 03:06:48 -0800 (PST)
Hello,
I'm trying to create an XML digital signature over some assets listed
in the XML file. It works fine until I add a pdf file in the list of
assets, which throws an exception saying that "Data at the root level
is invalid". I'm sure it must be possible to sign binary files as
well, but I've been searchin ...
|