| Thread | Last Post | Replies |
|
| how to optimize memory on my photo slide program | 08 Feb 2007 18:50 GMT | 4 |
I made a c# program for my friend's wedding. It slides all photos in specified folder automatically. To roll the pictures smoothly I firstly scan and store all pictures in RAM and push one by one to PictureBox control and display it when the Timer control ticks. Coding like this:
|
| access control by string | 08 Feb 2007 17:28 GMT | 7 |
I would like to access just one of several controls by its number: I do not want call: Button1.Text instead I want to call:
|
| Memory Issue | 08 Feb 2007 17:26 GMT | 3 |
I have a program which is looping through a data reader, taking the record which is read, creating an instance of a class which respresents that record, and then inserting that record into a database. As I am looking at the task manager in the performance tab, the PF Usage
|
| Help me please! RSA Encrypt with .Net C# | 08 Feb 2007 17:02 GMT | 1 |
I'm developing a C# .Net (1.1 Framework) Windows Application, and I need to encrypt, using PKCS#1 v 1.5 padding, a string using an RSA 1024 bits public key, situated in a X.509 .cer file. I don't really know what to do... I've read some forums but no one
|
| Combobox | 08 Feb 2007 16:43 GMT | 1 |
I am trying to insert some Text via drag and drop into the editable area of a combobox. The problem is, that I can't get the current charIndex of the selected Text via the mouse cursor location.
|
| Difference between CAB and SCSF? | 08 Feb 2007 16:31 GMT | 1 |
What is the difference between Microsoft Composite UI Application Block (CAB) and Smart Client Software Factory (SCSF)? Thanks, Ron
|
| COM library inconsistency | 08 Feb 2007 16:25 GMT | 1 |
I have a com dll, and I add it to my VS 2005 C# project it wrap the dll in a set of functions. And when I'm generating the .NET wrapper dll manually by using the TlbImp.exe, the function does not look the same.
|
| Listview and Empty Groups | 08 Feb 2007 16:21 GMT | 2 |
Is it possible to display empty group (i.e. group with no items assigned to them) in a listview? Thanks tf
|
| XAML - WindowsFormsHost : Grid has invalid child | 08 Feb 2007 16:15 GMT | 1 |
I tried to add a wmp to XAML via WindowsFormsHost and when compiling, i got an error message telling that "Grid has an invalid child". I did use the namespaces etc. The same error occurs with the exemple included in the windows vista sdk (HostingWfInWpf) !!! Is it a kind of
|
| Class passing, to ref or not to ref... | 08 Feb 2007 16:05 GMT | 9 |
Today I found as ignorance owe me.. Let me explain what I'm tring to do and fail (fail: in my needs) For example, I've my stupid class: public class Hello
|
| dock windows | 08 Feb 2007 15:39 GMT | 2 |
can i dock windows in my programs like Visual Studio 2005 do (for example, the properties window) ? Thank you
|
| updating a lables text | 08 Feb 2007 15:29 GMT | 2 |
I am looping through a number of files and I want to display the current file name that is being processed to the form in a lable. this.lblProcessing.Text = "Processing file: " + this.lBxFiles.SelectedItems[ i ].ToString();
|
| Profiling/ Coverage Tool | 08 Feb 2007 14:25 GMT | 1 |
I am searching for a good profiling tool for C# which can be easily embedded into Visual Studio. My objective is to measure the times and counts of every method in my program.
|
| exception bubbling | 08 Feb 2007 13:31 GMT | 4 |
I have a simple app that opens in Program.cs with try { Application.Run(new Shell());
|
| XmlDocument Vs StringBuilder | 08 Feb 2007 12:53 GMT | 1 |
XmlDocument Vs StringBuilder Hi Group, You might have found the Title a little strange :); well following is the problem description:
|