| Thread | Last Post | Replies |
|
| FileSystemWatcher not firing changed event | 05 Jan 2005 05:37 GMT | 2 |
I have setup a FileSystemWatcher to fire an event when the specified file is modified. But the event never fires for some reason and the file is being modified. I have pasted the setup code below. I must be doing something wrong (I have
|
| String conversion from an Object in VB.NET | 05 Jan 2005 03:45 GMT | 2 |
Which statement gives better performance (where obj can contain any of the CLR runtime types) 1) CStr(obj) or
|
| calling cpp file from c# | 05 Jan 2005 03:18 GMT | 1 |
Can I use c++ source files in my c# project, and in c# call the c++ classes? If so, how can I do it? please cc to my mailbox: ohad@usbphone.com Thanks a lot
|
| URL without suffix in .Net | 05 Jan 2005 03:17 GMT | 7 |
Is it implementable in .Net framework? http://www.test.com/Product?id=7788 If so, How can I do that. I know it can be done in J2EE environment.
|
| Error while executing my app on a target/client machine? | 05 Jan 2005 03:05 GMT | 3 |
I'm new at developing apps in VB.NET. I just created a small app that just has a text box and a button on the form. The button code will just write to the eventlog using eventlog.writeEntry(txtMessage.text). After copying the following files to the target machine and running the
|
| general question regarding when to abstract vs. interface | 05 Jan 2005 01:52 GMT | 5 |
This is just a thought I wanted to put out there to get some opinions... I've been programming for a number of years, but until a couple of years ago, always with VB6, so everything I did to "fake" inheritance was done with encapsulation. About two years ago, I began working with ...
|
| installing .net framework on XP Pro | 05 Jan 2005 01:16 GMT | 2 |
Looking for information on the changes made to XP Pro after installing .NET Framework 1.1. I only needed to install it because of a requirement needed by a program I need to use.
|
| Who is my calling object? | 04 Jan 2005 22:23 GMT | 1 |
I am implementing I method where it would be convenient to get the instance of the object that is calling me. I know I can get the calling method using the StackFrame class, and I can get the calling assembly, but what about the instance of the object which implements the calling ...
|
| RegAsm error: Declaration referenced in a method implementation .. | 04 Jan 2005 19:57 GMT | 1 |
Hello, I am getting an error with the regasm tool: RegAsm error: Declaration referenced in a method implementation can not be a final method
|
| path of current executable? | 04 Jan 2005 18:41 GMT | 3 |
How do I get the path of my executable when it is running? Thanks.
|
| Visual Studio .Net trashes HTML code in ASP.Net projects | 04 Jan 2005 16:27 GMT | 2 |
I am using Visual Studio .NET 2003 ver 7.1.3088 When developing ASP.NET projects and switching between HTML and Design views on the aspx files, the editor trashes my HTML. I can think of no reason a <BR> tag should end up looking like:
|
| Determining which Drive is the CD-ROM drive | 04 Jan 2005 14:17 GMT | 2 |
What is the best way in .NET to determine which drive is the CD-ROM?
|
| KISS Tutorials | 04 Jan 2005 14:14 GMT | 1 |
Keep It Simple Silly.... What ever happened to it? I am absolutly struggling to understand how to read XML files. I am not talking about mass sized, hugely complete XML files either.
|
| How to tell .NET Framework 1.1 SP1 is installed | 04 Jan 2005 12:01 GMT | 4 |
I am certain I have .NET Framework 1.1. How do I tell whether I have installed SP1? It doesn't show up in Add or Remove Programs.
|
| "Synchronized" wrapper | 04 Jan 2005 09:25 GMT | 5 |
Some classes of .NET framework offer a "Synchronized" static function that creates a thread-safe wrapper around the object. example: public static Queue Synchronized(Queue queue) What is puzzling me is that the returned object is of class Queue too...
|