Bdy's Q&A profile
Visual C# Reusable component for FTP
Is there any Reusable component available in Dotnet for FTP. Component should be able to send file to other Server. There are built in .NET Framework classes (Version 2.0) to handle FTP. http://msdn2.microsoft.com/en-us/library/b7810t5c.aspx These are fairly easy to use and take away the complexity of the protocol and commands, Enjoy -james ...Show All
Visual Basic VB6 Upgrade Wizard
Hi, I was wondering if there is any possibility that MSFT could make the VB6 Conversion / Upgrade wizard open source. I think it could really help those of us whom have a lot of VB6 code that we'd like to migrate to .NET speed up the process. Thanks We need compatibility objects that emulate Printer and the graphics command of the Picture as well. ...Show All
Visual C++ Can the toolbars be made to behave?
Hi All Iam having a problem with the toolbars. It seems that depending on what you are doing different toolbars are turned on/off whichis a nice idea but at best it causes an annoying movement of the edit windows as the toolbars wrap to a new line as they are added. And at worst is playing havoc with my dialog creation as everytime I move to the properties of an item a toolbar is removed and the item I am editing gets moved because of it. Can the IDe be told to not turn toolbars on and off on context, its a nice idea but its a real pain. Chris how many modes are there I too find it annoying that, if I have a ...Show All
Smart Device Development Vs 2005 pocketpc application
create a new pocket pc project . added a listview and a gotfocus event but it fails. (null referans exception). focused item =null need any help ...Show All
Visual C++ How to do copying files?
Hi, I am writing an MFC program that can copy files (let's say: *.chm) from one directory to another by using API. Any idea Thanks. vcboy Hello vcboy, You can check out Boost.filesystem library which provide many operations on files and directories. file:///D:/Downloaded/3D%20Programming%20Related/c++Libs/boost_1_33_1/libs/filesystem/doc/operations.htm#copy_file Good luck. ...Show All
Visual Studio Team System TFS.authenticate();
Hello all! I'm creating a simple .aspx page that connects to TFS and display the list of bugs in a GridView. When working locally from inside my IDE it works. When I debug and step into it all works well. Now I've decided to Publish my web site, still locally on my machine, I created a folder and then publish my web site to that newly created folder. Then I created a virtual directory that points to that folder and tried to run it but it fails. I've attached to aspnet_wp.exe process to see what goes on and realized that from inside the IDE I did not need to impersonate but once deployed, even locally on my machine, I needed to add an ins ...Show All
SQL Server How to Average a column of field values
In the formula for my y axis values in a graph of monthly counts, I set it to sum the values. However, in a graph of average numbers per month, shouldn't I set it to average the months together If so, I do not see averaging in the Value field of the Series in the graph. How do I tell it to average a series MichaelM ...Show All
Visual Studio VS2003 source control gone
I have an aging machine which has VS6, .NET 2002, ,NET 2003 and .NET 2005 on. Since installing VS 2005, my VS2003 installation no longer supports source control. It claims to be using SourceSafe in the tools / options settings, but I cannot change any details. WHen I try and open a project which is under source control I get the famous 'The solution appears to be under source control...' message. There is no source control option in the files menu and in general it seems disabled. HOWEVER, source control works fine in VS2005 and VC6.0. and VSS 6.0 is installed and working. (btw, I claim it's since installing VS2005, but I'm no ...Show All
Visual Studio Team System threshold violations
Hi, I am testing one win form application. I have written unit test and i am calling this unit test in my load test to test the web services. In counter sets I have given my computer name and selected .net for counter sets. After my load test is completed, I am seeing many threshold violations. One example Computer-> PC name -> Processor -> % Processor time -> Total This counter failed many times and showing errors (Cross marks) in graph for this counter. Is it a performance bottle neck having many threshold violations Or having many threshold violations is minor issue H ...Show All
SQL Server Full text thesuarus
Did you restart the Full-text service after changing the thesaurus Go to My Computer->Manage->Services and Application->SQL Server Configuration Manager->SQL Server 2005 Services to find and restart it. Best regards Michael < kts@discussions.microsoft.com > wrote in message news:fbfb65e9-e043-4f50-8995-479b19b0d690@discussions.microsoft.com ... I am not able to get the thesaurus to work during search. Do I need to edit the thesaurus before building the index or is it used during query time. here is my tsENU.xml <XML ID="Microsoft Search Thesaurus"> <t ...Show All
.NET Development Undocumented exception *very* occasionally occurs in background thread in my ASP.NET app!
Hi, I'm doing some background threading in an ASP.NET application, and just now experienced the background thread crashing with the following stack trace: System.Threading.ThreadStopException: Thread was being stopped. at System.String.GetHashCode() at System.Collections.Hashtable.GetHash(Object key) at System.Collections.Hashtable.Insert(Object key, Object nvalue, Boolean add) at System.Collections.Hashtable.set_Item(Object key, Object value) There rest of the stack trace is my application code, which as you understand attempted to add a value to a hashtable. I don't really think the reason the exception occur ...Show All
Visual Studio Team System Code Analysis Check-In Policy - Behavior
Does anyone know if it's possible to set the Code Analysis check-in policy so that it runs only when you do a "Rebuild Solution" and/or by selecting "Run Code Analysis" on the context menu The problem we're having is that each time a developer makes a code change and presses F5 to run the application, code analysis is run which takes a good amount of time (30 - 90 seconds) before the application starts up. If there was a way to prevent code analysis from running when pressing F5 (start debuggin) then that would solve the problem. One workaround we're aware of is to turn the code analysis check-in policy off and then run code anal ...Show All
SQL Server saving DTS package to sql server
hi, I have a "Transfer sql server object task" in SSIS that transfers few tables from one database to another. The task works fine and the project is saved on my c: drive. I was trying to save the project on the SQL server and don't know if i am doing somehting wrong I have the following selections made: Package Location: SQL server Server: ServerName Authentication Type: Windows Package path: /TransferTables Protection Level: Encrypt sensitive data with user key Now when i hit ok i get the "No description found" error with the following details: No description found (Microsoft Visual Stud ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DirectX with Java?
Is it possible to utilize DirectX fully with Java I'm a novice programmer and would like to know. Thank you! Java3D has OpenGL and DirectX versions. However the API you code against is Java3D which may or may not look like the DirectX API (I've never used it so I'm not sure). See http://java3d.j3d.org/implementation/java3d-OpenGLvsDirectX.html ...Show All
.NET Development SMTPClient Problems
Just converted my vs.net 2003 project to 2005. Changed to system.net.mail. I get the following error when i get to the send command - {"Command not implemented. The server response was: Command not Supported"} Here's the code. Dim ErrMail As New MailMessage( New MailAddress(cVariables.UserEmail), New MailAddress(MailTo)) With ErrMail .Subject = subject .Body = Message End With Dim MailClient As New SmtpClient(Our Email Server ) MailClient.Send(ErrMail) Many thanks I can second this. Ran into the same problem when we switched to .NET v2 We are using McA ...Show All
