| Thread | Last Post | Replies |
|
| About best coding Style of C# | 25 Jun 2006 17:43 GMT | 42 |
1. int[] intArr = new int[255]; 2. int[] intArr = new int[255];
|
| Trouble with Threads blocking execution | 25 Jun 2006 17:42 GMT | 4 |
I have a UI with a gallery of thumbnail image previews. The PictureBoxes are created and their Images are generated by a method which quickly retrieves the icon for the filetype. Worker threads then asynchronously retrieve and resize the full image previews and update
|
| How to get the same as MS FCIV | 25 Jun 2006 17:35 GMT | 3 |
I have a VB 5 program that computes an MD5HASH on a file. I can get the same number using Microsoft FCIV. But this code does not. ( What more should I do to get the file's hash as the legacy and MS FCIV tool ??
|
| Workin with progress bars | 25 Jun 2006 17:08 GMT | 9 |
People, I want to do same things with a progress bar but I don't know how. So, how do I change it to make it a solid bar, not a step byt step as the default? And how do I make it a vertical bar? Also, how do I put a progress bar withing a button?
|
| DataGrid Edit field | 25 Jun 2006 16:05 GMT | 2 |
(VS 2003) I have a DataGrid and accept button. My problem is when a user starts to edit one of the values in the grid and does not either press Enter or move of the current cell and presses the Accept buton the current typed value
|
| registry access | 25 Jun 2006 14:10 GMT | 1 |
Here is the code: this.regPath = @"Software\FileManager\" ; System.Security.Permissions.RegistryPermission permissions = new
|
| help with following code | 25 Jun 2006 12:49 GMT | 4 |
I'm new to .net and just learning c#. I have the following code in vb and want to convert this to c# Public Class PositionData Private strText As String
|
| Querying or Parsing Datasets? | 25 Jun 2006 12:12 GMT | 1 |
I am looking for some advice or best practices on how to do this.. I have an XML file, that I read into a dataset via ReadXML: PlayersDataSet.Clear(); PlayersDataSet.ReadXml(filePath);
|
| TreeView Question | 25 Jun 2006 06:17 GMT | 1 |
I want to display a 'hover box' (for want of a better description) when the mouse hovers over a node in a tree view. The box would display detail information for the node. It should be small, something like a tool tip.
|
| Listing of classes (similar to Java API) | 25 Jun 2006 05:05 GMT | 4 |
Coming from Java, I am looking for something similar to the online Java API pages. I did a search and found a thread from 2003 that listed the following link to an MSDN page. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/cpre f_start.asp
|
| my net 1.1 app is faster than 2.0?! | 25 Jun 2006 04:36 GMT | 3 |
Process.Start ("http://website.com"); net v2 is about 2/5 sec's slower to respond than 1.1 no seriously why? do i have to write something else now?
|
| TextBox Properties | 25 Jun 2006 03:53 GMT | 1 |
i have a question? if i have two text bo? textbox1 and textbox2. and iwant when i enter an input to the first textbox and click enter the cursor go to the second text box no to press the button.
|
| assembles | 25 Jun 2006 00:04 GMT | 1 |
I have reached the level at which i want to learn assembles. Thus i need to know what they really are, and what for they are used. I tried to ask google, without result. So i'am asking you for any links, answers, or advices.
|
| How to show line numbers in .cs file? (C# Express) | 24 Jun 2006 22:59 GMT | 2 |
I am using C# Express. Is there a way to set it to show line numbers in the code? Thanks!
|
| How to show the value of a private variable in some debug window? (C# Express) | 24 Jun 2006 22:58 GMT | 2 |
Let's say I have a Person class with a private int age member variable. I have a get and set accessor for the Age property. When I am running the code in debug mode, I would like to have a debug window show me the value of age (rather than the value of the Age property). Is there ...
|