AnilK110285's Q&A profile
Visual Basic Convert a old VB6 project
Hy all, I have a very old VB6 project (a complex one), I need to to convert it to the new .net 2005 platform. I installed VS.2005 and tryed to convert it using the conversion utility, unfortunatly I get several "Error 7: Out of memory" witch I skip and finaly a "The referenced component TXTextControl is missing a design time license" error witch stops my conversion proces. Anybody has any ideeas on this one. Have a nice day, ...Show All
Visual Studio Team System VSTS installation erorr 32000: Report server access secure....
I have a serious problem at installation. VSTS installation throw a error message: 07/27/05 22:46:04 DDSet_Status: WorkingDirectory: System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: The Report Server Web Service is unable to access secure information in the report server. Please verify that the WebServiceAccount is specified correctly in the report server config file. ---> Microsoft.ReportingS ...Show All
Smart Device Development VS2005 CR1: Failed to open vpc network driver
My emulator is working fine except it can't connect to the network. Here are the steps: 1) Try to use Pocket Internet Explorer, type my favorite web address 2) Got the following bubble message: Cannot Connect, Unable to connect: blah blah 3) Dismiss the message, go to Setting-> Connections-> Network Cards 4) It says "My Network Card connects to: Work" (Good) 5) On the emulator window -> File -> Configure -> Network -> Clic ...Show All
Visual C++ Lib->App dependency doesn't always work
Hello, I have a solution with a statib library and an application which uses this static lib. Sometimes the code changes in the library are not reflected to the application. Even a rebuild of app and lib doesn't help. App has dependencies on the lib and incremental linking is off. Any ideas This problem appears on a desktop PC which I use to regularly compile this system. The problem may appear anytime during d ...Show All
Visual Studio Team System Using Existing SharePoint Portal Server
Hi, I have an existing corporate SharePoint Portal Server. Is it possible to install TFS on one box and have it use the corporate SharePoint Portal Server for it's sites Thanks! This is a frequently requested feature - but unfortunately we don't support it at the moment. We're considering what options we have to support this in the future at the moment ...Show All
Visual Studio What is the status of Beta2 docs?
I installed the MSDN help that came with MSVS Beta2. I notice that the documentation seems to be missing lots of information, for example, some .Net framework classes are incomplete, compiler warnings are missing and c++ example code is missing. Are we expected to report bugs on these things or are these known issues that will be addressed in future updates I also notice that when I search for something like 'Forms', In 2003, I used ...Show All
Visual C++ C++ __clrcall
Ever got a solution to your problem below class __declspec(dllexport) TestClass { public: TestClass(); int GetDotNetMouseButton( System::Windows::Forms::MouseButtons button ); }; I am having a problem when compiling this. The GetDotNetMouseButton function gets compiled with the __clrcall calling convention and as a conseqeunce dllexport is not allowed. This worked fine with VC2003. I have a huge amount of such unmanaged clas ...Show All
Visual C++ c++ program wont start
Hi i developed my program in win XP with SP2 i use this functions: mciSendString mciGetErrorString i #include this : #include "stdafx.h" #include <windows.h> #include <iostream> #include <string> #include <mmsystem.h> #include <Commdlg.h> #include <fstream> project .LIBs : WinMm.lib ComDlg32.lib and when i ...Show All
.NET Development How to add Text to generated textbox
Hi, With a for loop I created 81 textboxes, all named t10[i ], they are created in Page_Load. for ( int i = 0; i < 81; i++) { t10[i ] = new TextBox(); t10[i ].Width = w; t10[i ].Height = 30; Panel2.Controls.Add(t10[i ]); and so on } Now i want to add Text to them on a later stage, for example while pressing on a button. like this: for ( int i = 0; i < 81; i++) { t10[i ].Text=arra ...Show All
.NET Development Visual Studio 2003 Mixed Mode Debugging Crash
I have a project that is made up of a mixture of C++ COM dlls and C# COM dlls. The main executable is a Win32 app. If I turn on Mixed mode debugging to allow me to debug the C# dll's Visual Studio crashes 100% of the time as it loads the C# dll's. I noticed that the project uses reference to the .Net framework 1.1, but just before Visual Studio crashes it is loading .Net framework 2.x components. Any idea how to fix this I hav ...Show All
SQL Server Specify column list in Full Text CONTAINS search
Can anybody provide an example of how to specify a column list in a CONTAINS statement Documentation says it must be comma separated inside parenthesis - I have tried (every combination of) this but always get the error "Incorrect syntax near '('.", for example: SELECT .... WHERE CONTAINS (( Name , Description ), '"options"' ) This works fine when just querying one column (without the parenthesis). ...Show All
.NET Development System.Web.Mail Blocks Isdn or Adsl Connection
Hi , i want to share my smtp expirence in c# we can send mail using IIS Smtp with .NET SendMail Function Like This. -Step 1 Control Panel->Administrative Tools-> IIS in Smtp Properties , set ip is your local ip or net ip.. And write this code in .net : (add System.Web to project references) System.Web.Mail.MailMessage Mes= new System.Web.Mail.MailMessage(); Mes.From=" you@domain.com "; Mes.Subject="Example"; Mes.Body="<center>< ...Show All
SQL Server Can SSRS 2005 be installed on Windows XP SP2?
I installed SQL Server 2005 Developer edition on a Windows XP SP2 to run side by side with SQL Server 2000 dev edition and SSRS 2000. Can SSRS 2005 be installed to run on Windows XP SP2 Thanks Yes you can. I have RS2005 installed on my portable computer (with Windows XP SP 2) and it's work fine - even the development tool (VS2005). Of course you need to have IIS installed on your computer. Good luck ...Show All
Windows Forms Transparent Panel Headaches
Hi, I'm having a really frustrating problem when using transparency in a Panel, if anyone has any suggestions I would really apreciate it. My problem is the following: I have a Form with a Panel contained on said Form. The Panel has the BackColor property set to "Transparent". I would like the background of the Form to be visible through the panel (I assume this is what setting the BackColor property to transparent means ). When my for ...Show All
SQL Server Database Mirroring hangs on ALTER DATABASE SET PARTNER
Hi, Here is the scenario. I currently have a single XP Professional machine with three SQL Server instances installed. I'm trying to set up a database mirroring session. The mirror instance was created with an endpoint listening on port 5151. The principal instance endpoint listens on port 5150. The witness listens on port 5152. After creating the endpoints, I back up the database I wish to mirror on the principal instanc ...Show All
