| Thread | Last Post | Replies |
|
| How to create a MS Access File | 23 Nov 2005 21:31 GMT | 10 |
I search in all the Disscussion but can not found. How can I create a MS Access Database file using C# code with a given Table Structure ? For example, I want to create a Access Database File with 2 tables: Student
|
| How do they do that? | 23 Nov 2005 21:17 GMT | 2 |
Im tring to make a music store like itunes (on a much lower scale mind you :) ). Im trying to make a little player that streams 30 seconds of a mp3 track so the user can preview it. I've managed to do it in flash to some extent, but then i saw MSN Music
|
| Getting client ip address | 23 Nov 2005 20:36 GMT | 4 |
I'm trying to write some code in a business layer which will audit the IP address that the request is coming from. If the business layer is being called from a web app, I'd like to get the IP address of the client browser, but if the business layer is
|
| Static Class and static methods | 23 Nov 2005 20:27 GMT | 9 |
What is the difference between declaring a class as static and delaring methods as static (class not static)? Also, when do we use a static constructor?
|
| Problems with the performance of nant 0.84 | 23 Nov 2005 20:21 GMT | 2 |
I am currently trying to upgrade to the nant 0.84 and was successful in making the necessary changes. I am having a performance issue though. Whenever I have a reference of the form A.D.dll, what the nant is doing is that it copies all the dlls having A.D.*(A.D.dll, A.D.S.dll,
|
| Function that return System.Web.UI.Control[] | 23 Nov 2005 20:05 GMT | 5 |
I have a function that return System.Web.UI.Control[]. It's a custom vb function that i call in C# that is defined as Public Function FindControlsByID(ByVal container As System.Web.UI.Control, ByVal id As String) As System.Web.UI.Control()
|
| WebClient.UploadFile | 23 Nov 2005 19:35 GMT | 1 |
Hi All, I am attemting to setup an file upload page in asp.net C# 2005 .net 2.0. I am receiving an "The remote server returned an error: (401) Unauthorized." error when uploading. Here is my code: System.Net.WebClient oWebClient = new System.Net.WebClient();
|
| How to use the Control.Tag? | 23 Nov 2005 18:47 GMT | 2 |
I am wondering how to use the .Tag in a Windows.Control, such as MyTextBox.Tag. Would someone give me some advice? Thanks for help.
|
| Datagrid row | 23 Nov 2005 18:38 GMT | 1 |
public void updategridrow(int couner, int index) { DataOut.Rows[index][1]= couner; DataGridOut.Refresh();
|
| Help locating local database | 23 Nov 2005 18:36 GMT | 2 |
Hey Everybody, I am running a C# code that creates a database called Mobile.sdf SqlCeEngine engine = new SqlCeEngine ("Data Source = Mobile.sdf"); engine.CreateDatabase ();
|
| Embeded MySQL with C# | 23 Nov 2005 17:22 GMT | 1 |
I wrote an application using c# and mySQL database. But when I deploy it doesn't work on an other PC. How can I embed mysql in C#. A code example will be quite helpful for me. Any help wll be appreciated.
|
| RemotingException: Cannot load type | 23 Nov 2005 16:04 GMT | 2 |
I have a console app which is a remoting server. When trying to access the server using console app client, it works fine. But when i try the same client code from aspx page on iis i get this:
|
| bool and Boolean | 23 Nov 2005 15:35 GMT | 2 |
I am using VS2005 Beta2 In the VS.NET IDE, the Intellisense drop-down shows both bool and Boolean. What is the difference between the two? Similarly, it shows string and String ('s' capitalized). What is the difference between string and String?
|
| XmlSerialization over a NetworkStream | 23 Nov 2005 15:11 GMT | 2 |
I am trying to send data over the network using XmlSerialization. The code shown below is what I am executing. My problem is that no message is arriving in the Server method, and the Deserialize method is blocking.
|
| Reference page cast not working | 23 Nov 2005 15:09 GMT | 3 |
Error: Unable to cast object of type 'ASP.CompanyDirectory_aspx' to type 'CompanyDirectory'. Code: clsCompanyDirectory = (CompanyDirectory)Context.Handler;
|