0
votes
1answer
20 views
Invocation of methods (with ‘params’/generic cousins)
I've been trying to find an answer for this for a while.... Any ideas on how do I get to invoke all of the methods here?
using System;
namespace ThinkFarAhead.Examples
{
pub …
3
votes
2answers
41 views
How to do unit testing in Visual Studio 2005?
Hi,
Is there any support for unit testing in Visual Studio 2005? After googling for some time, I found out that we can do unit testing with Visual Studio Team System, but I do not …
0
votes
2answers
39 views
C# Faster Drawing Vector Graphics
In my application I want to draw polygons using Windows Create Graphics method and later edit the polygon by allowing the user to select the points of the polygon and allowing to r …
1
vote
2answers
29 views
How to find function parameters
I need to log all the function parameters in a dozen functions.
Is there a way to pro grammatically determine all the parameters and their values (or at least their .ToString() va …
0
votes
0answers
11 views
After Download file button visibility false and panel visibility true
HI
Any one can help me i am try to
i try visibility false of the button after download file and visibility of panelemil is true
protected void linkbtndow_Click(object sender, …
1
vote
2answers
28 views
How to play an Exclamation or Asterisk sound in the .NET Compact Framework 2.0 ?
I want to create audible feedback to the user to signal success or failure of data validation. Playing the system Asterisk and Exclamation sounds seem to be the proper way to do th …
0
votes
2answers
12 views
ImageList Transparency not working at runtime
I am using 32bit PNG files with transparency. I added them to an image list with properties:
ColorDepth: Depth32Bit
TransparentColor: Transparent
When I assign the image to my t …
0
votes
2answers
23 views
DropDownList in C#, getting DropDownList items overflow after every time using selecting an item
Hello all, well the problem is that i am trying to get DDL to:
1. Recive catagories from a DB tabel - working
2. OnChange select from a different table the products by the item in …
2
votes
1answer
29 views
C# 2.0 - Is there any way to do a `GroupBy` with a yielded itterator block?
I'm working with a C# 2.0 app so linq/lambda answers will be no help here.
Basically I'm faced with a situation where i need to yield return an object but only if one if it's prop …
0
votes
1answer
17 views
Implementing SFTP in 2.0
hi all,
I want to write applications for SFTP client,SFTP server in .net 2.0,is it possible to write ? Please give me some suggestions over it.it will be very helpful.
0
votes
0answers
40 views
Free .NET 2.0 Cover Flow User Control
I'm looking for a free User Control that provides functionality similar to that in Apple's Cover Flow. I'm aware of FluidKit, but I want something that targets .NET 2.0 for cross-p …
0
votes
0answers
38 views
How to Convert a C++ Structure into C# Structure
I need to convert a complex C++ structure into C# Structure,I have converted other structures in C#, this one contains some Two Dimensional array that is what the problem how to c …
1
vote
5answers
325 views
Problem With thread
hi
I am doing a project in ftp,which will do multiple uploads,and the process i am doing is compressing the file then encrypting then cut into several pieces and send it to the s …
0
votes
3answers
109 views
Casting generic collection to concrete implementation in C# 2.0.
Chosen Solution
Thanks for the help everyone. I've decided to do the following.
public static class PersonCollection
{
public static List<string> GetNames(RecordCollec …
1
vote
2answers
23 views
loading jQuery in webbrowser control from the filesystem
Here's my scenario:
I'm using the WebBrowser control in a WinForms app to display data. The HTML is served via the DocumentText property and I want to use jQuery to interact with …
