| Thread | Last Post | Replies |
|
| trying to transfer files to a PDA | 25 Jul 2007 19:02 GMT | 4 |
I'm trying to transfer files directly to a PDA via a Csharp program I'm writing. Does anyone know how to do this (I obviously can't use active sync). Ohh yes, I'm running Vista.
|
| Hittest on trackBar - to set pointer to clicked position | 25 Jul 2007 18:35 GMT | 2 |
I have a trackbar. I need to set trackbar value depending on where user has clicked on the bar ( mouse_up event for example ). However avent arguments are telling me only about x and y position and so on... If i had hittest method i could try to work it out... Maybe you
|
| Thread.Abort - is it safe? | 25 Jul 2007 18:15 GMT | 6 |
You know, the Thread class has got a method named Abort which according to the msdn: "Raises a ThreadAbortException in the thread on which it is invoked, to begin the process of terminating the thread. Calling this method
|
| writing in app.config | 25 Jul 2007 16:07 GMT | 1 |
I use string sValue = ConfigurationManager.AppSettings["MyKey"] for reading a value in my app.config, section AppSettings. Ho to write in it for example to create a key and assign a value like this ? ConfigurationManager.AppSettings["ANewKey"]="my value in app.config";
|
| Socket programming question | 25 Jul 2007 14:58 GMT | 2 |
I have a question related to socket programming. I have this code: TcpClient client = new TcpClient(hostName, port); try
|
| 4byte - value to string (like IPAddress.ToString()) | 25 Jul 2007 14:07 GMT | 4 |
i've a 4 character string stored in a 4byte value (lets say an 32 bit integer). the integer holds the value: char[3]*255^3+char[2]*255^2+char[1]*255^1+char[0]*255^0.
|
| Rolling back file errors | 25 Jul 2007 14:03 GMT | 8 |
Once file is open, it should be closed: Stream fs = new FileStream(filename, FileMode.Create); try { // write, exceptions may raise here
|
| CD/DVD burning component | 25 Jul 2007 13:54 GMT | 3 |
I'm wondering if anyone out there is aware of any .NET CD/DVD burning component. I'm really just interested in burning files to CD/DVD do I don't care about MP3/MPEG-2 support or anything like that. What I basically need is the ability to put files and folders onto the CD/
|
| <newbie> printing contains of a form | 25 Jul 2007 12:28 GMT | 4 |
.NET 2.0 I have created a form which contains one DataGridView and 2 buttons ("OK", "Print") When clicking on the "Print" button I want the contains of the DataGridView
|
| Sorting a Datatable | 25 Jul 2007 12:07 GMT | 4 |
I am trying to sort this values on a datatable 1 2 12rw
|
| Fixed Width Byte[] C# | 25 Jul 2007 10:20 GMT | 6 |
I need to create a formatted byte array for SMPP, e.g.: 00 00 00 21 00 00 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [00 00 00 21] is the length of the entire message in octets, however the
|
| Problem printing DataGridView | 25 Jul 2007 10:00 GMT | 4 |
.net 2.0 I'm having trouble implementing printing of a DataGridView. Below is the PrintPage event. The problem is that it doesn't matter how many pages the DataGridView content spans, the code below will print the first page only. I
|
| Increment Version ID | 25 Jul 2007 08:12 GMT | 3 |
I want to be able to give the customer a visual representation of a product ID number for ever time the program compiles. Currently we save each instance and have to reply on a very long global ID to communicate versioning between our developers and clients. What is the best ...
|
| how do i implement 'userlevels'? | 25 Jul 2007 07:05 GMT | 5 |
simple question: is there a easy way to implement different user levels (hiding buttons and such stuff)? regards
|
| Clear steps to wrap an unmanaged c++ class code? | 25 Jul 2007 05:37 GMT | 5 |
I want to use a c++ class in my c# application. Are there any clear step-by-step tutorials on an easy way to achieve this? All I've been able to find are relatively complicated discussions about managed extensions and what-not. I also saw someone make the suggestion that
|