Zafoe's Q&A profile
Visual Studio Team System Project Alters
Hi, I have a test installation of TFS and everything seems to be working fine but I don't receivce any alerts. I've gone to Project -> Project Alerts and I've enabled all alerts there. Also my project site is sending notifications when a new user has been added. How can I find if there is an error when generating the alter and sending an email Thanks, Marian. I'm seeing the exact same issue as Ha ...Show All
.NET Development Erroneously empty DataReader
A method that has successfully returned a Datareader for many queries has started returning a DataReader with no rows. No error is generated as a true DataReader object is present, just empty (I can force an error by submitting an incorrect SQLquery). The same query run in Access works. It makes no difference whether I submit the query as SQL or call a stored procedure in Access with the same SQL. If I reduce the query to a simple SELEC ...Show All
Visual Studio Express Editions app.config problem
hello to everyone I am running windows based program compiled with Express Edition. I have User name and Password that application run OK and connect to remote computer everything is OK I Store these values in Application Settings all is fine… But when I run the application from Windows schedule IT IS CREATE NEW application setting WHICH are EMPTY in first start…. HOW to prevent that ...Show All
Visual C# Deleting IE Cache
Well, i'm trying to delete the IE Cache with this: #region IECache private void IECache() { ClearFolder(new DirectoryInfo(Environment.GetFolderPath(Environment.SpecialFolder.InternetCache))); } void ClearFolder(DirectoryInfo folder) { foreach (FileInfo file in folder.GetFiles()) file.Delete(); foreach (DirectoryInfo subfolder in folder.GetDirectories()) ClearFolder(subfolder); } #endregion IECach ...Show All
Visual Basic ApplicationSettings
I need to read the settings from "project a" in "project b" from the same solution, how can I do this using "my.settings.[whatever]" I'm using VS2005 and VB.NET regards, Pablo Tola k, I figured out how to deploy the GUI apps with click once and transferring files between Dev/Test/Production. I'm still having an issue on the web services deploy (I have the separation of duties req ...Show All
.NET Development Forms question for a non-windows application
Using Visual Studio 2005 (my first app using .net, btw - but been using VB6 for 5 + years) There are windows forms that are instantiated through events thrown by FileSystemWatcher class. The issue is with giving scope to the instatiated form. Except, the form is frozen! I can't do anything to it: Code is as follows (irrelevant code excluded) Public f As frmMyForm FileSystemWatcher1_OnCreated() f = new frmMyForm ...Show All
SQL Server Multi-valued parameter parsing for sp's?
Quote Stored procedures do not natively support a multi-valued parameter. You will need to pass a string and parse within the SP. end quote Did anybody solved the problem is there any code snipet to parse the multi-valued parameter so it can be used in the sp Thanks, Philippe It is an nvarchar(4000) may be you need to switch to nvarchar(max) Philippe ...Show All
Visual Studio Team System Creating custom work item types...
I see that in Team System there are Bugs and Tasks...is there a way to easily add a second one that is like a task but is a "Wish List" We used Dragnet before and had a quick way of adding this. Would be great! It is possible - check the "Authoring work item types" document out: http://msdn2.microsoft.com/en-us/library/ms243849(en-US,VS.80).aspx ...Show All
SQL Server NULL values in CLR TableResult UDF
Hi everyone, I need my UDF (which returns a table) to be able to return NULL values. My function looks like this: <SqlFunction(FillRowMethodName:= "Process_TrainingInfo" , TableDefinition:= " CourseName nvarchar(80), CreditDate DateTime, " + _ &nb ...Show All
SQL Server Insert or Update null if the value is zero using Trigger on table
Hi , I have 2 tables (Dept and Emp) The columns in table Dept are Deptno and Deptname. Deptno is bigint and it is primary key. In Emp table, columns are Empno(PK) ,EmpName and Deptno(foreign key referring to Dept) To Insert or Update record in Emp through application, value of Deptno is coming as 0(Zero). I want the value of Deptno to be inserted or updated as null if the value is Zero (0). How to do this in sql server 2005 by using t ...Show All
Windows Forms Manually Trigger a ClickOnce Update for Application
Hello, I have a ClickOnce application that function correctly and applies updates as I publish them. However, the users only see the updates the next time they shut down & restart the application, and I have several users that leave the application always running. How can I manually "trigger" the update process I found this article, which looks promising: http://msdn2.microsoft.com/en-us/library(d=ide)/system.deployment ...Show All
Visual FoxPro Andy and Marcia on Vacation
Marcia and I are leaving in a couple of hours for two weeks touring holiday in England and Scotland. We will be staying in small, out-of-town hotels so probably won't have Internet access most of the time. Will check in when I can, but I won't be around much until the beginning of June now... How dare you leaving us like this! ! Enjoy! Aleniko. ...Show All
Visual Studio Team System Cannot browse TFS website locally
I have installed TFS Beta 3 Refresh (single server deployment). I see 3 websites in IIS - 1) Default web site - which points to the Windows Sharepoint Services. I can access this site locally. 2) SharePoint Central Administration - which points to Windows SharePoint Services Central Administration and can be accessed. 3) Team Foundation Server - which has a number of virtual directories (build, services, VersionControl, Warehouse, Wor ...Show All
Windows Forms designer can't load form. Where is 'more information'?
Maybe I have a solution. In my case one of the references was guilty. When I set the property Specific Version to false, the problem was gone. I hope that works for you. ...Show All
Visual FoxPro creating tables programmatically-some questions
I have decided to create some tables programmatically since they most likely will be used temporarily. I do have a number of questions pertainint to CREATE TABLE paramaters. I could not find any explanations so far to figure out what they meant. First I assumed that CODEPAGE should be 1252 (Windows ANSI). Is it the right choice I want to create tables FROM ARRAY arrName I understand that arrName is a 2-dimensional array with the same numb ...Show All
