| Thread | Last Post | Replies |
|
| AxHost.GetIPictureDispFromPicture | 31 May 2007 14:29 GMT | 3 |
public class MatarotHost : AxHost { public MyHost() : base("02FD5840-C1A3-448E-8310-98611DF58281"){ } public IPictureDisp GetIPictureDispOfPicture(Image image)
|
| FileUpload component | 31 May 2007 14:21 GMT | 2 |
How do I use FileUpload component to upload the file to a specify location in web server? For example, the file path is "c:\temp\uploadfile.doc," how to I get the file path?
|
| dataGridView row selector or margin or grid? | 31 May 2007 14:16 GMT | 2 |
What is that huge row margin on the left that allows you to select rows of a dataGridView called? I've looked and cannot find it named. I want it hidden because it is ugly.
|
| How to connect to Web Server with certificate? | 31 May 2007 14:11 GMT | 5 |
I have a problem. I need to connect to Web Server, send a xml string (query) to it and receive another xml string (result). I have the location of the Web Server like: https://extranet....com:8443, then user name and password,
|
| Pairs | 31 May 2007 14:07 GMT | 7 |
I have this string: private string[] pairs = { "AB", "CD", "BD", "AC", "BC", "AD", "AB", "CD" }; Now I want to randomize all pairs, like the first AB to BA. for (int i = 0; i < 8; i++)
|
| memory consumed by my .net Application | 31 May 2007 13:44 GMT | 5 |
I am in the process of optimizing an .Net application that consumes lot of memory for its mathemetical processing and calculation. Can any one pls suggest me how to check the memory consumed by an .net Application apart from performance monitor.
|
| dataGridView2 is interferring with dataGridView1... | 31 May 2007 12:59 GMT | 1 |
I have dataGridView1 with a DataSource (categoriesBindingSource). I didn't use the vs.net workbench to bind the second datagridview (dataGridView2). I used this code:
|
| Compilation error - user control | 31 May 2007 12:32 GMT | 2 |
I have a user control in which in have the following code : <%@ Control Language="C#" AutoEventWireup="true" CodeFile="RatingControl.ascx.cs" Inherits="UserControls_RatingControl" %>
|
| How to use the DataBuffer of SCSI_PASS_THROUGH_DIRECT in c# ? | 31 May 2007 10:35 GMT | 9 |
Hi All; I need to send a READ command to CD-ROM drive by SCSI_PASS_THROUGH_DIRECT. int inputSize = Marshal.SizeOf(typeof(SCSI_PASS_THROUGH_WITH_BUFFERS)); IntPtr input = Marshal.AllocHGlobal(inputSize);
|
| BackGroundWorkers | 31 May 2007 09:22 GMT | 6 |
I have a Queue and 2 BackGroundWorkers. How can I set one worker to Peek in Queue and the other one to Dequeue the first element from queue? Thanks
|
| Linq; expression parser? | 31 May 2007 09:01 GMT | 28 |
In Linq, you can apparently get a meaningful body from and expression's .ToString(); random question - does anybody know if linq also includes a parser? It just seemed it might be a handy way to write a safe but easy implementation (i.e. no codedom) for an
|
| Alphanumeric character validation in C# | 31 May 2007 08:35 GMT | 7 |
Hey all, I have to validate a textbox in windows forms for alphanumeric characters such that non alphanumeric key presses are ignored. Some help would be appreciated
|
| Overloading in generic interfaces | 31 May 2007 08:32 GMT | 23 |
It's my first post here. Could anyone please explain me the behaviour of the following code? <code> interface IFoo<T, P>
|
| write data of unbound datagridview to XML | 31 May 2007 08:00 GMT | 4 |
I need to export data of unbound datagridview to XML file. Since my DataSource is NULL, What other options do I have? Does i need to make 2 loops (on all the records and inside loop of all the cells)
|
| Confused about memory usage. | 31 May 2007 06:43 GMT | 1 |
I have an application (windows service) that in the beginning reads data rapidly into a collection of large object trees. Each object tree in the collection is about 100mb and typically there are 6-20 object trees in the collection. When the application starts and the data is ...
|