| Thread | Last Post | Replies |
|
| Convert int to BitArray | 21 Sep 2005 11:32 GMT | 2 |
I want to convert an int to binary and put the binary number's bits into a BitArray. Anyone know how to do this?
|
| Run a program repeatedly from another program | 21 Sep 2005 11:08 GMT | 4 |
I want to add a program to windows which will run at a specified time period which may be changed by the administrator.What I plan to do is start the program at windows startup and then within that program check for the correct time to run. Then when the time is equal to the seted
|
| Is it possible to use typed fields from a DataViewRow object? | 21 Sep 2005 11:02 GMT | 2 |
When adding a new row to a DataView, is it possible to cast the returned DataViewRow to a typed row? Without casting, I am forced to indicate the names of fields as strings when setting their values. Example:
|
| Run batch file minimized | 21 Sep 2005 10:46 GMT | 2 |
I need to run a batch file wich I would like to run minimized. The batchfile runs a exe file with some arguments, and deletes af file, and remanes another. How can I do that minimized? I know I can make a vbs file, and use the
|
| Excel application.quit leaves instance of Excel running | 21 Sep 2005 10:39 GMT | 8 |
When you use Application.Quit() on an Excel application, there can still be an instance of Excel running, as seen in Task Manager. You can try following the advice on MSDN:
|
| Field not being saved to DB even when bound textbox shows changed data | 21 Sep 2005 07:56 GMT | 1 |
I have a form with a single textbox control which is bound to a DataRelation in a typed dataset. The textbox displays the name of the product depending on the language selected from a combobox. When you select a different language, the textbox must show the name of the
|
| WriteLine hangs ... PLEAZ HALP MEEE!!! | 21 Sep 2005 07:51 GMT | 3 |
I'm having a problem with the StreamWriter class in System.IO. I can generate output to a webpage by attaching a string object to a label, and viewing it OK on postback, but when I try to write it to a file (appended), with stream IO, it hangs after about 4,180 bytes.
|
| C# Function question | 21 Sep 2005 07:49 GMT | 3 |
This should be a simple problem to solve, but I'm fairly new to C# and have been wracking my brains to no avail. I created a new Console Application in C# beta 2, and entered the following: using System;
|
| alert box in asp.net | 21 Sep 2005 07:14 GMT | 4 |
How can we use alert and confirm method in asp.net application. i am working with application where i want to use confirm box before going for any operation. and same for alert box Sonu
|
| python and C#? | 21 Sep 2005 07:13 GMT | 7 |
Hi all. I know I should probably be focusing on one language at a time, but I'm interested in learning Python (though I don't really know why!). But I was wondering, does Python complement C# in any way, or would C# be able to do everything Python can? Would it help to learn ...
|
| Invalid Length for Base-64 string problem | 21 Sep 2005 06:57 GMT | 4 |
I have list of name separated by comm like this name1,name2,name3,...etc i converted then to Base-64 using Convert.ToBase64String() then pass them to webmethod then i when try to get data back to original using
|
| how to call .net web service call from java client? | 21 Sep 2005 05:31 GMT | 2 |
I have a c# developed web service deployed on IIS. and I am accessing it thorogh java client. Now the problem is whenever we call a web method with a parameter list from java client, web service recieves this parameter as null. Waiting for a solution...........
|
| Generics | 21 Sep 2005 04:02 GMT | 1 |
I have two question. How c# implement generics?I need to explanation or a link. Polymorphic method can be virtual? Thanks in advance
|
| ClassLibrary.DLL and app.config files | 21 Sep 2005 03:03 GMT | 7 |
We have a class library application that needs to read some application settings from it's own app.config file. I assume that a ClassLibrary.DLL can have a app.config file, but during runtime, it run within the context of another main application that has its
|
| How to update the database when data on a datagrid has changed? | 21 Sep 2005 01:09 GMT | 3 |
Hi, I have a datagrid and its source is a dataset. When I change information on the grid does that automatically gets change in the dataset? If not then how do I do that? I use the following update statement when the form is closed to udpate the database but the changes are ...
|