5
votes
4answers
397 views
Possible to extend the String class in .net
How to override or extend .net main classes. for example
public class String
{
public boolean contains(string str,boolean IgnoreCase){...}
public string replace(string str,s …
1
vote
4answers
1k views
how to delete registry value in c#
I can get/set registry value using Microsoft.Win32.Registry class. For example
Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "MyApp", Applica …
2
votes
3answers
404 views
in c#: expression evaluation function like flash script
Duplicate of: How can I evaluate a C# expression dynamically?
See also: …
1
vote
3answers
230 views
How to get enum value by keyname
public enum aa{ a1=1,a2=2,a3=6,...,a100=203}
How to get value like this
string att=GetFromDatabase("attribute"); //this return a1 or a2 ...
Enum.GetValu …
0
votes
2answers
152 views
When my application throw an error, windows error dialog shown
I developing windows form application in c#.net. Sometimes my program throw an error, windows error dialog shown (Please tell Microsoft about this problem, Send error report, Dont sent, bla bla...) …
1
vote
2answers
1k views
DllImport vs LoadLibrary, What is the best way?
i'm usually using Win32 API in c#.NET. But not declare all in one application. Sometimes usually using user32, sometimes gdi32 ...
I think when i declare all api function, those use lot of memory. …
1
vote
4answers
281 views
How to create duplicate allowed attribute
i'm using custom attribute inherited from attribute class. I'm using like this
[MyCustomAttribute("CONTROL")]
[MyCustomAttribute("ALT")]
[MyCustomAttribute("SHIFT")]
…
0
votes
7answers
176 views
how to expand flagged enum
I have a key combination like this
Keys key=Keys.Control | Keys.Shift | Keys.D ...
I don't know how to expand key variable to separated Keys values. Maybe like thi …
0
votes
2answers
204 views
how to create command application like run command for vista
how to create application like window run command using C#. When i insert any command (for example: ipconfig) , this return result (for example: 192.168.1.1) on the textbox.
how to g …
1
vote
1answer
116 views
is it possible to insert microsoft word document editor to own application using PIA
How to use Office Primary Interop assembly in own application like Business in the box. Is it possible?
…
0
votes
1answer
50 views
how to handle control from template at runtime in asp.net
I'm using ReorderedList from AjaxControlToolkit. Then insert dropdownlist to InsertItemTemplate. I need to bind this dropdownlist. But can't handle this control.
How can i do?
How to user ITemplat …
0
votes
6answers
136 views
how to equal 2 date variable in c#
DateTime dt=Convert.ToDateTime(data);
if ((dt.Year == DateTime.Now.Year)
&& (dt.Month == DateTime.Now.Month)
&& (dt.Day == DateTime.Now.Day))
lblDate …
0
votes
0answers
18 views
How to get after print command successfully printed or not
My goal is count printed pages only printed from my application. Generally use local printer, maybe use network printer. How to get destination printer info and printed and suspended pages info fro …
1
vote
3answers
103 views
How can I read content generated via ajax using webclient?
I'm downloading a web site using WebClient
public void download()
{
client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_Downlo …
0
votes
1answer
30 views
How to set up webbrowser to text browser
Hi all
My previous question is here "how can i read content generated via ajax …
