0
votes
1answer
125 views
Any picture Gallery Control for .NET 1.1 in WinForms?
I need a UserControl to display pictures as a Gallery in Winforms. I have my pictures as a Image Collection but no problem to change to fit Control capabilities.
It could be nice …
0
votes
3answers
44 views
Assignment “=” operator in VB.NET 1.1
I'm "cloning" objects in my code. For instance:
objClone = objOriginal
My question is:
Does the assignment operator in VB.NET 1.1 do a member-by-member copy of the objOrigina …
0
votes
4answers
579 views
How do I unit test object serialization/deserialization in VB.NET 1.1?
I am looking for example code that provides a unit test to serialize and deserialize an object from a memory stream. I have found examples using C# 2.0, however my current project …
2
votes
3answers
39 views
Managing multiple .Net-Frameworks on a webserver
So I'm in charge to deploy my project on the productive server where some other ASP.NET-Websites are also set up.
The problem now is that I wrote my whole project under .NET 3.5 b …
0
votes
2answers
194 views
How to Manage COM Objects in .Net Web Application
A legacy c++ applications with sometimes notorious memory leak issues has to be called from a .Net server based windows application. .Net garbage collection times are not determin …
0
votes
1answer
149 views
Caching Proxy Design Advise
Hi, I'm relatively new to proxies.
I am currently required to design a caching proxy for work.
We have a webservice which serves up data based on calls to it, naturally.
I am requi …
1
vote
1answer
61 views
Active form in a Windows application?
I am developing a Windows Forms application.
I have four forms which is inherited from Baseform in another project.
In all four forms I am using a label to show some transaction co …
1
vote
3answers
110 views
Why does this date parse not work in C# .net 1.1?
private bool ValidDateCheck(){
bool _isValid = true;
try{
DateTime.Parse("07/&*/2009");
DateTime d = Convert.ToDateTime("07/&*/2009");
}
catch{
_isValid = false; …
0
votes
2answers
45 views
Zip File .Net Framework 1.1
How Can We Zip A File In .Net Framework 1.1 Without Use Any Third Party Control...
0
votes
1answer
109 views
Comparing program flow between same app in .net 1.1 and .net 2.0
I'm looking at upgrading an application we're developing here using Visual Studio 2003 / .NET 1.1 to Visual Studio 2008 / .NET 2.0.
Now I was testing stuff, and found that I have …
3
votes
3answers
155 views
How to return custom objects with WebServices.
[Problem]
Having created a shared library that is to be deployed on a server machine and client machine how do I communicate between the client-server with the classes provided by …
0
votes
3answers
330 views
IIS Authentication across servers
My production environment involves a pair of IIS 6 web servers, one running legacy .NET 1.1 applications and the other running .NET 2.0 applications. We cannot install .NET 2.0 al …
0
votes
2answers
48 views
Finding COM ports
hi evry one,
i write a code(vs 2003,ver 1.1) for listing all the com ports available in a system.Now i want to know which of these com ports are connected to a devic …
1
vote
5answers
56 views
will asp run in .net 1.1 framework?
I have an old asp app I am moving to a new server with .net 1.1 Will it run in this environment?
1
vote
0answers
59 views
C#: Compiler tries to build to wrong website
I have a problem whereas a build script is running on a build server. The script builds a .NET 1.1 solution with a webservice and a series of related class library projects.
Actua …
