pramodh's Q&A profile
SQL Server How to extend existing FTP task ?
Is it possible to extend existing tasks (specifically FTP task) Or I will have to develop one from scratch I want to extend the functionality of FTP task for ftp via a proxy server. Is it possible Any ideas Suggestions thanks, Nitesh ...Show All
Visual Studio Team System External Groups
Hi, Does MSF provide any information on the definition of external groups and their repsonsibilities such as the Steering Committee, Business Architect and Project Sponsor Thanks, Rakel Hi Rakel, The governance model for MSF for Agile Software Development does not include these bodies. David, can answer for CMMI Cheers, Randy ...Show All
.NET Development Generic list gets converted into an ArrayList when sent through web services
Hello, i have a customer object like this: public class Customer { public Customer() { } private string customername; public string CustomerName { get { return customername; } set { customername = value ; } } } And a generic Customer collection that can contain customer objects like this: public class CustomerList : List < Customer > { public CustomerList() { } } I populate a CustomerList wi ...Show All
Visual Studio Visual Studio v7 .NET can't run my debug exe
I am still running Visual Studio v7 .NET. I can load my project and build an exe, but I can't run the exe in the debugger. The exe can run fine outside of the debugger. When I run the exe within the debugger, I can see the process (.exe) start in the task manager. It gets to 64K Mem usage and stops. It just hangs there. I don't think its the project or the exe because this happens with another project as well. Can anyone tell me why the debugger ...Show All
Visual Basic VB3 app with Access 2.0 backend
Hello, I am supporting a VB3 application with an Access 2.0 backend... We are constantly plagued with DB corruption issues. There are plans to replace the s/w in 2yrs and thus we are forced to help the existing app limp along until that time. We regularly repair/compact the DB in efforts to pre-emptively avoid corruption issues, however, they continue to happen... We've come up with several ideas to help minimize these pro ...Show All
SQL Server Temporary tables
Hello! I'm creating a temporary table in a procedure to help me with some calculations. I would like the name of the temporary table to be 'dynamic', I mean, to have the hour it was created, something like this: create table #myTempTable15May11:10:00, so if someone access the procedure while it's running, he won't have problems in creating his 'own' temporary table (create table #myTempTable15May11:10:02). Is there anyway I can do this ...Show All
Visual Studio 2008 (Pre-release) NetTcpBinding and netNamedPipeBinding hosted in IIS?
Is it possible to have neTcpBinding, netNamedPipeBinding, and other endpoint bindings ( other than basicHttpBinding, and ws* bindings) in wcf service that is hosted in IIS Is there any sample application I tried, but I am geting exception Thanks, Indigo Cowboy Hey Indigo Cowboy, this is not possible with IIs 5.x and IIS 6.0 - thos 'web containers' are just what they are: web (i.e. HTTP-enabled) containers. ...Show All
SQL Server Adding Global Parameters
Is there a way to access global parameters in Reporting Services Reports ..currently all we can usee is the Globals collection...is there a way to add keys to global collection can we write something in web.config ( as ReportServer is also a web application) and use the ConfigurationManager class . The ConfigurationManager class did not work for me when I used it in the expression editor as the editor did not recognise it. Any help is appreciate ...Show All
Windows Forms How to get the depths of TreeNode in C# Code without Click event ?
what's the mean about title forexample. sample code. public int Depth(TreeNode node) { int _depth; TreeNode tmpNode = node; while(tmpNode.Parent != null) { //Error: could not convert Parent(is object) to TreeNode. tmpNode = (TreeNode) tmpNode.Parent; _depth ++; } return _depth; } running above code that fault and reason is : can't convert typeof parent from object to TreeNode. but, how ca ...Show All
SQL Server Loading multiple files
I have a security system that creates log files in a dbf format. I need to report from a weekly collection for files. I am trying to do this through Integration Services 2005. My hope is to use the for each loop. My problem is the only way I know how to get the data out of the dbf file is to use a .Net ODBC provider connection. In this connection I use a select statement to pull the data from the dbf file and then an OLE DB connecti ...Show All
Visual Basic ADO.NET Hell
There was a time in my not too distant past that I could open a database with ADO, query out some data, work with it, and update it. I have had VB.Net for a little over a week and I can insert data into a table. I can clear out a table. What I can't do is is iterate through the rows and update the table. I am close but I am missing a piece. From what I have read I want to create a connection, adapter, and a dataSet. ...Show All
Visual Basic Issues with Express Registration and Activation
Now that Visual Basic 2005 and Visual Studio 2005 has shipped the final release, we have a new home for setup and registration issues for VB Express. Please direct all setup, install/uninstall, and registration issues to this forum: Installing and Registering Visual Studio Express Editions Thanks, Paul I am still having the issue I described on 5/29. I have 12 day ...Show All
Visual Studio Will VWD Beta 2 be available on CD?
I only have dial-up at home and that would take forever to download. I acquired Beta 1 of VWD on CD and installation was a snap! I am hoping that VWD Beta 2 will also be provided on CD. Any time frame on this Thanks in advance. Jeff There are some Web Developer CDs handed out to specific partners but not to the general public. ...Show All
Visual FoxPro string func failures? bugs?
I found that when applied to THISFORM.Edit1.Text, VFP native EDIT control, the following functions always return 0: AT( ), ATC ( ), ATLINE( ), OCCURS ( ) They cannot be used for any purpose. The following functions work: LEN ( ), $, SUBSTR ( ) I did not bother checking RATLINE( ) , RAT( ) and RATC( ). I presume, they would fail also. Is it a bug Also I found oddly enough that command COPY FILE fileName1 to fileName2 fails i ...Show All
Smart Device Development Asynchronous I/O functions on CE
Hi, I need to port a Windows desktop communication DLL to a PocketPC target. Unfortunately, it seems that CE doesn't support aynchronous call for the I/O function ReadFile, WriteFile and CreateFile but these functions were esential to my DLL. So, is there really no support for overlapped I/O methods on CE Is there another way to implement non-blocking read/write operations on serial ports or sockets Thx, Negyoshi. ...Show All
