| Thread | Last Post | Replies |
|
| Using "My" in C# | 12 Dec 2007 00:41 GMT | 8 |
I've tried following the simple instructions to be able to use MyServices within C#...Add a project reference to Microsoft.VisualBasic.dll and add: "using Microsoft.VisualBasic.MyServices;" to the code module. After that, I expected to be able to use MyClock or MyComputerInfo, ...
|
| A dead process | 12 Dec 2007 00:24 GMT | 4 |
A Windows service A which starts multiple instances of an application B at random time. Both A and B are written in C#. It quite often shows in Task Manager that CPU time for B is 00:00:00 and
|
| LINQ. Remove problem. | 11 Dec 2007 23:56 GMT | 1 |
I was using the following LINQ code in VS 2008 Beta 2: MyDbDataContext database = new CodeDataContext(); database.Tags.remove(tag); Now, with VS 2008 final release, I get an error on Remove:
|
| multi application | 11 Dec 2007 22:16 GMT | 7 |
Hi, Ive written my application and published it. Leaving the editor open, I install my newly made application and run it. Works perfect, then I open it a second time so Ive got two instances of the same application running. The second crashes bringing them both down, when
|
| Arrays | 11 Dec 2007 21:56 GMT | 22 |
hi all i have a method that takes an array e.g. public void Method (string [] array) the contents of array are somthing like below, i don't know what the length will be be until i do a array.Length
|
| It it possible to redirect events? | 11 Dec 2007 21:47 GMT | 5 |
class Manager { public event ItemEventHandler ItHappened; public Manager
|
| BM MQ error | 11 Dec 2007 21:04 GMT | 3 |
when i try to connect to IBM MQ manager, i get the following error An unhandled exception of type 'System.NullReferenceException' occurred in Unknown Module.
|
| Parser Theory - Using grammars to build parsers | 11 Dec 2007 20:55 GMT | 5 |
I'm doing my own bit of research in implementing and using a parser to understand the intent of someone's code or other specialized text file. So far I've written a grammar that allows you to define your own grammar, the program that reads the grammar understands the ...
|
| for loop | 11 Dec 2007 20:46 GMT | 3 |
public class StreamsIOApp { [STAThread] public static void Main(string[] args)
|
| Event Log and EventID | 11 Dec 2007 20:22 GMT | 1 |
I have developed an application and writing to the event log. I want to use the eventid to identify certain error conditions. Is there a standard for this or can I use any eventid. Regards
|
| Need for BindingSource.Removing event | 11 Dec 2007 19:33 GMT | 2 |
I have a BindingSource that has its DataSource set to a BindingList<Customer> where Customer is a business object that manipulates a DataRow. All changes to a Customer instance, update a DataTable via DataRow.
|
| Edit only date in grid | 11 Dec 2007 19:17 GMT | 2 |
I need to display and edit only date part in DataGridView column whose data source type is DateTime?. The following code shows and allows to edit also time part. How to modify this code so that only date is displayed and edited (without
|
| SQLDataReader | 11 Dec 2007 19:15 GMT | 3 |
In the old days, using ADO, I used to be able to move up and down in a resultset, but using functions like MoveNext, MoveFirst, MoveLast, MovePrev. I don't see any of that in the SQLDataReader object. It seems I can only move through it sequentially. Is that true?
|
| accessing csv file | 11 Dec 2007 18:27 GMT | 2 |
Hi, I have software that records betfair data into a csv file. I have no access to the code, al I can adjust is the intervals at which it records, 1sec up, and which folder/file to save the data to. Ive written some code myself which uses streemreader to read the file into
|
| C# and MATLAB connectivity | 11 Dec 2007 17:58 GMT | 1 |
Does anyone know hot to create an application which will use matlab written functions [as a dll] and be able to show plots created by matlab? --------------= Posted using GrabIt =---------------- ------= Binary Usenet downloading made easy =--------- -= Get GrabIt for free from ...
|