| Thread | Last Post | Replies |
|
| DNS enumerate hosts/IPaddress of domain members | 18 Sep 2006 23:25 GMT | 3 |
How do I get a list of members IPaddress of a domain. I look under dnsmgmt and I saw it listed as: Name Type Data comp1 Host(A) 10.1.4.7
|
| Control or Form for displaying HTML ? | 18 Sep 2006 23:01 GMT | 1 |
In C#, what control or form can display HTML? I know in Visual C++, the CHtmlView is the one, but I can't seem to find the couterpart in C#. Thanks. WJ
|
| best way to receive 'callbacks' in a GUI from other threads | 18 Sep 2006 22:00 GMT | 4 |
Advice needed about what's the best in the following situation. In essence, I have a GUI that needs to detail time taken to do jobs that execute in their own thread. Currently, the GUI thread instantiates a class that wraps a job,
|
| Advanced Debugging!! | 18 Sep 2006 21:32 GMT | 2 |
Hi All, I am building a VS2005 project in which I reference an assembly that was built on VS2003. While debugging I am not able to step into the code for that assembly. I have put the source code for that assembly in the same folder where my
|
| SQL selection with Crystal Report | 18 Sep 2006 21:08 GMT | 1 |
Using VS2005 / MSSQL Server 2000 / Crystal 8.5 and Crystal .NET How can I programmatically change the "SQL Where clause" of a ReportDocument ? Example ( Id' like something like this ) :
|
| Tiff images | 18 Sep 2006 21:08 GMT | 5 |
what are options for opening / handling tiff files in .Net framework ? which is the best library, namespace ? Please help Regards
|
| regex question | 18 Sep 2006 21:06 GMT | 2 |
Consider the following pattern: (?'city'[\w ]{2,}\b)?\s*,?\s*(?'state'[A-Za-z]{2})\s*(?'zip'\d{5}) This helps me to detect patterns like: thousand oaks CA, 12345
|
| Business Intelligence & C# | 18 Sep 2006 20:06 GMT | 3 |
When I create a report project which includes several reports. How do I get these reports to showed in my C# progam? Do I need to addd references? I'm doing this for 1st time.
|
| Help with Encoding my String | 18 Sep 2006 19:46 GMT | 2 |
I want to change this method to Encode the text so that it covers situations where for example below, it's showing the link as an inline text instead of a link which should be clickable: example string and what it's showing when rendered:
|
| .NET 2.0 DateTime conversion error?? | 18 Sep 2006 19:11 GMT | 11 |
I am trying to do something simple. Convert a string date to datetime but it is not working and is giving me a baffling error! System.Convert.ToDateTime("Jan 30, 2006") 'System.Convert.ToDateTime("Jan 30, 2006")' threw an exception of type
|
| ComboBox MouseDoubleClick Event Never Fires | 18 Sep 2006 18:59 GMT | 4 |
For some reason, the MouseDoubleClick event for my ComboBox does not appear to be working. I am not subscribed to any other events for this control. I pulled out Spy++ and noticed that the WM_LBUTTONDBCLICK message is indeed occurring. The ComboBox does not provide a
|
| Easiest way to programatically determine if a PDF is encrypted? | 18 Sep 2006 18:58 GMT | 7 |
I'm reading PDF files in C#. I read them in using a TextReader then I parse out the pieces I want like the CreationDate, Author, etc. Sometimes, the PDF file is encrypted and I get binary junk in my parsed strings. Is there a real simple way to determine that a PDF file is using ...
|
| Checking to se if a file stream opened and using a streamreader | 18 Sep 2006 18:46 GMT | 1 |
I am trying to see if a FileStream Opened using an"if" clause: FileStream infile = new FileStream("c:\\blink2.txt", FileMode.Open, FileAccess.Read, FileShare.Read); if (infile==0).....
|
| Pop up MessageBox and close whole program | 18 Sep 2006 18:39 GMT | 2 |
I have this messagebox that prompts when a fatal error occurs and i would like the user to click okie and the whole pgm would exit MessageBox.Show(errorMsg, "Error"); how am i able to do it?
|
| Rearrange definitions to top of class? | 18 Sep 2006 18:19 GMT | 2 |
I am relatively new to C# development. After having developed my first application, I realized that the data definitions and code definition is somehow intermixed here and there. Is there is a way to automatically move all the data definitions to the top
|