- How to transfer files in intranet.
I am developing an intranet application with clients reading images on the server. Each request may be varying in the number of images requested, from 1m to 10m.What would be the best way for this problem with reasonable waiting time of transfering? Thanks. ...
- how to represent xml document on treeviewer using c#
I am student and i am biggener user of c#I want to represent xml document on treeviewer can any personne help methanks...
- Deploying a vb app over an existing version
I am using Visual Studio .Net setup project to deploy a visual basic application. Nothing fancy, just a regular old setup wizard to install the program on a computer. My problem is: If the application has already been installed I get the error message: "Another version of this product is already...
- BUG: Designer breaks UI code
Hi, We have a form designed in the VS designer in C# and everytime we build on different machiens its chainging the .Location and .Size properties yet we are not changing anything in this. We have locked the form, we have set AutoScaleBaseSize and so on to false and its still having a mind of it...
- Help in array of array of classes needed
I want to create class Matrix which contains array of class Rows and some additions Class Rows contains array of Cells Here is the declaration public class Cell public int value = 0 public int color = 0 public int background = 0 public class Row public Cells [] cell = new Cells [10] public int r...
- how to use Thread?
Hello to allI try to run one Thread that scan an image from a scanner and i want to show it's progress in a new form with a progress bar.I try this:Private frmScanProgress As New CFormScanProgress()Private MyScanThread As new System.Threading.Thread(AddressOf ScanImage)'ScanImage is a sub...