Shannon Braun's Q&A profile
Visual Studio Express Editions how to code to make application icon goes to WINDOWS notification area when "minimize" is clicked in c#.net 2005 ?
some programs can be moved to notification area instead of just go to taskbar when "minimize" is clicked, how to do this with c#.net2005 windows form applications plz help Take a look at what the NotifyIcon provides for you ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcon/html/vboritrayiconctltasks.asp ). With a little extra logic in your forms Resize event handler, you can check the value of WindowState and hide the form when minimized and show it when it’s coming back from being hidden, all the while toggling the Visible property of the NotifyIcon. ...Show All
Visual Studio Team System Connecting to TFS failes
Hi, I have one server which exposes TFS to the Internet via HTTPS and it requires a certificate. I have two client-computers, one can access the TFS, the other can't. The one that failes shows the following output, when using the following commandline in a folder that has a workspace associated with this server: Commandline: tf get /recursive /noprompt > tf_get.log 2>tf_get_error.log Error: Team Foundation Server server.com does not exist or is not accessible at this time. Technical information (for administrator): Client found response content type of 'text/html', but expected 'text/xml'. The request failed with the ...Show All
.NET Development Intercepting an Interface call to a Proxied Object?
This is my interface that my target object implements. public interface IScript { void RunScript(string str); } This is my target object, it inherits MarshalByRefObject and implements IScript public class Device : MarshalByRefObject, IScript { ... public void RunScript(string str) { DoSomethingHere(str); } } This is my RealProxy class, it passes in Device as it's target type in the constructor. Invoke is overriden to intercept all method calls outgoing from proxy. public class DeviceProxy : RealProxy { ... public override IMessage Invoke(IMessage msg) {   ...Show All
Visual Studio Team System Package Load Failure connecting to TFS RC from TE
Hi there, I've just finished upgrading a Beta 3 install of TFS to Beta 3 Refresh and on to RC in single server mode. The install seemed to go to plan, I completed all of the items in the installation guide but now connecting to TFS from TE (either on the server machine or another machine) yields the messagebox: "Package 'Microsoft.VisualStudio.TeamFoundation.VersionControl.HatPackage, Microsoft.VisualStudio.TeamFoundation.VersionControl, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' has failed to load properly ( GUID = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C} ). Please contact package vendor for assistance ....&quo ...Show All
SQL Server SQL Srvr 2005 DTS
Hi, I need help in creating a DTS in SQL Srvr 2005, can anybody help me doing this please AC DTS has been replaced by SSIS (Integration Services) You will find a Visual Studio 2005 in your Start Menu, that's your starting point. ...Show All
Visual Studio Team System Unable to create unit tests...
Hi, I am trying to create VSTS unit tests for my ASP.NET 2.0 application classes which resides in App_Code folder. Whenever I right click on the code editor and select 'Create Unit Test' against a method in the class, the 'Create Unit Test' window does not list my method. None of the methods in my classes are displayed instead it only shows two classes 'ProfileCommon' and 'ThemeLoad'. TFS Version: B3Refresh Any one got into this situation Thanks -Praveen I got it resolved by changing the order of declaring sub directories in web.config. < codeSubDirectories > < add ...Show All
Windows Forms App icon
Hi, I'm creating my 1st winform .NET app & have some problems with it (it'd be strange if I hadn't :) ) During creating new app under VS there is default app.ico icon file. I've altered it to my needs & informed my app that this icon is to be used (via Properties tab). Properites tab shows my icon properly, but af ...Show All
Visual C++ (MSVCRT) _iob disappeared?
What can I do to replace the functionality of _iob Seems to be missing in MSVCR7/8 (using VS2005). Error 1 error LNK2001: unresolved external symbol _iob main.def In my def, I'm redirecting this export as such: _iob=MSVCR80._iob I also tried: _iob=MSVCRT._iob ...Show All
Visual Studio Cannot get local version of MSDN to be called up from VS 2005
Hello, I have recently upgraded to VS 2005 release candidate. I then installed the full 2.6GB version of MSDN locally. I need to figure out how to get the local version of MSDN to be accessed from VS 2005. I have specified "Use local first, then online" as my option for help. Whenever I double click a class name and hit F1, I expected to get the local definition of that class. Instead, it goes through the relatively long process of looking online for it. Is this a bug or a feature I reported this as a bug also. TIA for your help, Joe Barry I am having the same problems with running MSDN October 2005 he ...Show All
Windows Forms VB: an Interface for a service, using events?
Hello, I am writing a Printer Monitor app which forces the user to authenticate against an SQL database when the user attempts to print and then the program logs the job data to the DB. I also wanted an icon in the system tray which would allow a user to see the status of monitor using the color of the icon and a tool tip (say& ...Show All
SQL Server Running an SSIS package as a scheduled job using the SQLAgent service account
Hi Using SQL Server 2005 with SP1, I have successfully managed to schedule jobs to run SSIS packages. They connect to another SQLServer 2000 box, using SQLOLEDB connection manager, to extract data and import it into SQL 2005. The protection level for the packages is Server storage so that the job is run under the SQL Agent account. This is a specific domain account so that it can access other servers. However, using the same setup for a scheduled job to to run an SSIS package which connects to another SQL Server 2000 box with connection manager SQL OLEDB, I get the following error message: The AcquireConnection method call to the c ...Show All
Visual Studio Express Editions How do i get Data Out of a List Box and Seperate it ?
hi im quite new to VB i have been asked to build a program that will ping a number of ip address. I have placed The IP Addresses in a Access Database and have bound the IP Address Field to a list Box. At present i can select a IP Address and it will work but i need some way of it doing it automaticaly The problem is that i don't know how to get vb to go though the list and ping each item on the list any help on this would be great. this is some of my code Dim counter As Integer Dim ipaddress As String Dim listboxcount As Integer Dim listboxitems As Integer listboxcount = ListBox1.Items.Count ...Show All
Windows Forms HTML Viewer control
Hello friends, I want to display html contents in a windows forms application these contents should be editable but i dont have any control which can do this. can anybody help me in this matter Is there any freely availeble control which can do this Rgds, Kiran Suthar In what version of the framework are you developing In C# 2005 for Framework 2.0 there is a WebBrowser control. In older versions I think you have to use som external ActiveX to do it (if you dont want to scratch the website and format the file yourself :) ) /Leyan ...Show All
SQL Server Strange bug with intellisense...
Hi all, I've got a strange bug with VS.NET and SSRS. Whenever I build my solution and it automatically deploys the SSRS reports to our report server, my intellisense stops working and I have to restart VS.NET to get it back. It only happens when the reports are automatically deployed. It doesn't happen if a solution has no report project. Any ideas as to what I can do to fix this Regards, Stephen. Still having this problem and its driving me nuts! Anyone know if there's anything that can be done to stop it Regards, Stephen. ...Show All
Visual Studio Team System Testrun Deployment Issue : xxxx is not trusted
I recently received a webtest from my colleague, but when after I "Add Existing Item" into my project and when I try to run it, it gives an error: Test Run deployment issue: The location of the file or directory '........webtest6.webtest' is not trusted. How can I run this webtest Is this file on a UNC share or mapped network drive If so you need to add these directories as trusted URLs to the .Net Framework 2.0 Configuration (See Administrative Tools) ...Show All
