| Thread | Last Post | Replies |
|
| i'm beginer,i have a question about C# | 26 Sep 2006 11:56 GMT | 2 |
i use C# 2005 Express Edition to devlop a program, and maybe i push a key on my keyboard, now the blank among my code is replaced by lots of dot for example: it should be like this " using System;", but now it show me "using.System;"
|
| Identify Remote Web Server | 26 Sep 2006 11:01 GMT | 4 |
Hi, I am trying to find the type of web server being used at a remote website, but have no idea where to start to be honest. I have written a webpage class that gathers information about that webpage (keywords and links etc), I need to find whether the server the webpage is on is ...
|
| String Formatting (Like in VB) | 26 Sep 2006 09:41 GMT | 6 |
I have a problem, I'm hoping someone can help. I have a string, lets say: "111111"; // Not always numeric I have a format mask, lets say: "(00) 0000"; // Again, not always numeric.
|
| Open a VFP form from C# | 26 Sep 2006 09:35 GMT | 2 |
Hello, we are developing a project in which we needed to integrate code developed in Foxpro with code developed in.Net. Currently we can open .Net forms from VFP, but we do not have been able to open a VFP form from.Net. Is it possible? how?
|
| DNS update via code. | 26 Sep 2006 09:33 GMT | 9 |
I am trying to create a CName record on my DNS server. Seems like it should be easy. I am using WMI. I have created a test asp.net page and put the code in the code behind. The DNS server is a Windows 2000 box that sits next to my pc. I have rights on the DNS box and use ...
|
| Controls left behind on a resize | 26 Sep 2006 09:32 GMT | 2 |
As part of my app I am programatically adding some Label controls to a form at runtime. The code for these is part of a function that is overrriding the Paint event of the form. The other stuff that is drawn in the same function works fine when I resize the screen (some lines and ...
|
| Declaring a reference on one form to another form? | 26 Sep 2006 07:22 GMT | 7 |
I have an app that presents a small main form when run. When a particular button is clicked, I'd like to briefly display another small form directly below the main form, regardless of where on the screen the main form is currently located.
|
| ref params | 26 Sep 2006 07:18 GMT | 7 |
i'm new to C#... How can I create an out or ref param for a method without having to declare it in the caling code ? Like the DataAdapter can do on its Fill method. DataTable dt = new DataTable();
|
| Accessing AD ObjectCategory=Computer | 26 Sep 2006 06:44 GMT | 2 |
I've written some code to list objects of type "Computer" from our firms primary AD controller. The code is simple: DirectoryEntry myDirEntry = new DirectoryEntry("LDAP://DC=DomainName,DC=local");
|
| Register a c# class | 26 Sep 2006 06:42 GMT | 6 |
How can I register a c# class ? Yoav.
|
| Web Developer 2005 - ViewState stopped working | 26 Sep 2006 05:44 GMT | 2 |
I have a rather strange problem: on my VS2005 ASP.Net application controls do not preserve state between postbacks. And this just happened yesterday (it has worked just fine before). What seems to be even worse that when I run the same code on another PC it runs without any ...
|
| Open Word document error | 26 Sep 2006 02:18 GMT | 2 |
In my C# application, I want to open a Word document using the code from the Help: using Microsoft.Office.Interop.Word; object readOnly = true;
|
| String | 25 Sep 2006 23:58 GMT | 2 |
Howcome C# has string and String data types? Are they the same type?
 Signature Arne Garvander (I program VB.Net for fun and C# to get paid.)
|
| Making Code Library available to COM & .NET from the same assembly | 25 Sep 2006 23:02 GMT | 1 |
Using C# I've created a code library of useful functions I use regularly in .NET projects. I know if you want to make a DLL available to COM clients, you have to include an interface and guid ID e.g.
|
| Semi-Serialization | 25 Sep 2006 22:21 GMT | 1 |
Is there a basic way to convert an integer into an array of 4 bytes and vice versa? I know you can serialize and deserialize, but there's more data involved in the serialized representation than just the four bytes of the integer... Thanks. Jerry
|