| Thread | Last Post | Replies |
|
| Why can't an XmlDocument be passed via remoting? | 26 Jun 2006 17:06 GMT | 4 |
I don't get it? Of all things, shouldn't an XmlDocument type be serializable by default? How can I pass this type through a remoting service? It just doesn't make sense, especially since DataSets can be passed, which are XML.
|
| Casting Object | 26 Jun 2006 16:32 GMT | 2 |
i do have a function where in which it instantiates an object eg: private void myfun() {
|
| unable to attach the process | 26 Jun 2006 16:09 GMT | 1 |
I have a question when debugging dotnet code when attaching vb6.exe code to this process. i get an error like : unable to attach the process. there is no managed code running in the
|
| Evaluating a variable name | 26 Jun 2006 15:59 GMT | 6 |
I've run into another road block that google.com isn't able to solve since I don't even know where to start when searching. In my webapp, a certain number of table rows containing textboxes is displayed depending on a number chosen by the user. For example, if
|
| how to use obfucation in .NET | 26 Jun 2006 15:52 GMT | 10 |
Hello, I'm using VS.NET 2005 TFS and I want to start using the obfuscator that comes with it. Does anyone know of a good tutorial for how to obfuscate code in .NET? Thanks
|
| How to create an object instance by its string type? | 26 Jun 2006 15:51 GMT | 2 |
I have a list of System.Type and I wish to create an instance for each of this types. string[] types = "System.Boolean", "System.Int32", "System.Single", "System.Double", "System.String", "System.DateTime"};
|
| Retrieving data types from database | 26 Jun 2006 15:50 GMT | 1 |
Hi, I have the following problem: I want to retrieve SQL data type of every column from database (means I want to retrieve bigint, varchar(20) etc. instead of System.Int32, System.String etc). I've written the following code:
|
| System.Net.Mail | 26 Jun 2006 15:22 GMT | 2 |
I am trying to send an email using the MailMessage Class. Everything is working, except that it will not send the message immediately. When I try to send the message nothing happens. If I then send another
|
| windowsforms.treeview control question | 26 Jun 2006 15:15 GMT | 1 |
I am using VS2003 and am workinig with the form.treeview class. I want to add a piece of code to my "double-click" event that checks to see if the selected node has any children. If it does, then I need it to do a toggle, if it doesn't then it will execute the desired code.
|
| State of Object changed or not | 26 Jun 2006 14:30 GMT | 9 |
i do have a customer table in the Customer class i do have a function which fetches data from the table and assign to the customer properties, Ok, In the Front end , i get all these properties and show it to the
|
| Using BITS to upload a file. | 26 Jun 2006 14:20 GMT | 2 |
I'm using the MS wrapper for BITS (Microsoft.MSDN.Samples.BITS) and I don't see any way to upload a file. Does anybody know of how to do that? TIA - Jeff
|
| How to play the swf file from this code in windows application | 26 Jun 2006 14:09 GMT | 1 |
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca b#version=6,0,29,0" width="324" height="307"> <param name="movie"
|
| very-dynamic casting :-) | 26 Jun 2006 13:58 GMT | 2 |
here's my problem: I have to dymanically build (and compile, of course) some code, from some ECMAScript function. ECMAScript variables I get are not typezed, so I should have operators like variable == a string or a double ore anything else
|
| Delete a line from a text file | 26 Jun 2006 13:25 GMT | 6 |
I'm trying to get a single line removed from a text file using a search pattern (pretty simple: if line contains "NODE1") -> remove line). To achieve this I's like to operate with only the original file and no temp file since the file is 1. on a network resource 2. pretty big 3.
|
| Convert VB to C#, Operator "Not" | 26 Jun 2006 13:08 GMT | 5 |
I try to convert VB codes to C#. I got this error "Operator '!'cannot be applied to operand of type 'long'". Any ideas? Why doesn't "Not SYNCHRONIZE" equivalent to "!SYNCHRONIZE"? Thanks,
|