emalik's Q&A profile
Visual Studio Team System Help with the Custom Checkin Policy Example from the Extensibility Kit
Hey! I'm running TFS Beta3 Refresh,and using the latest version of the extensibility kit. I am not able to see my custom policy, when I try and add it to the Check in Policy page. I see the three that are installed with it, but I do not see mine. My assembly is called MyExtensibilityClass.dll, and is located at c:\policies. In the registry, I have added a string to the Checkin Polices key. The string name is MyExtensibilityClass and the data for the string is c:\policies\MyExtensibilityClass.dll. But my policy is still not showing up where i can add it. can anyone give me some words of wisdo ...Show All
Windows Forms Winforms not loading
I created my application. signed all assemblies strongly. I am running XP SP2. I put my application on the server and when I go to the url with IE i see it downloads but it doesn't start. In my download cache also nothing. Please help security permissions weren't set. in my blog I am putting a complete walkthrough on how  ...Show All
SQL Server SSIS will not start after SQL Server 2005 SP1 upgrade
Hi guys, I have experienced a problem with a SQL Server 2005 SP1 upgrade, where hotfix.exe reported an error during the SSIS component upgrade, and then the SSIS service would not start back up. I have since attempted an additional SP1 upgrade on the server, which completed successfully, however the SSIS service still will not start. The server is running Windows Server 2003 Standard Edition SP1 with SQL Server 2005 Standard Edition (x86), which had been a clean RTM install prior to the SP1 upgrade attempt. The following information was located in the C:\Windows\Hotfix\DTS9\Logs\DTS9_Hotfix_KB913090_0.log file (the servers name has bee ...Show All
Visual Basic The annoying auto update code to match gui object name changes feature.
/ranton How do I stop VB updating code in the background, for example I have a button on a form, if I edit and rename that button it runs through my code and updates all the references with the new name - this is a really big pain in the proverbial, I know exactly what I want to achieve I know exactly why I am changing the name of a button which my code references I know exactly how to fix the issues that arise from me doing that but when VB goes off and 'fixes' it it gets in my way - I am doing the programming here not the damn application. What really annoys me is that if I paint a button on a form, double click the button which switche ...Show All
Visual C++ C++ interface assembly not visible in other .NET projects
I created an interface assembly1 in VC++.net 2005 (debug configuration). By interface assembly I mean just 2 public interface classes within a namespace definition. The interfaces, methods and properties are marked public. Interfaces assembly1 references another interface assembly2 - with the same namespace wrapping its public interface definitons, methods and properties. Build them no problem. Now I add assembly1.dll as a reference in a VB.net 2005 class library project, and none of the interfaces (or their methods or properties) are visible. Using the Object Browser the dll is listed but cannot be expanded. If I try an Imports on the Na ...Show All
Windows Forms Bartender Label+VB.net2003 WindowsForms
Now I am using Bartender and Access 2000 to printout labels we have many version of Access programs for each customer but I want to change from Access to VB.Net 2003(window form). Any one can help me Becuase I want to integrate the label program in one program by vb.net (windowform). Thank to helping me . Have a good day. ...Show All
Visual Studio F1 help behavior- VS2003 Vs VS2005
Hi All, This is for the help system for our VSIP package. If there are multiple keywords pushed as LookupF1 keywords (say keyword1, keyword2, keyword3 added in that order, all added as LookupF1), the dynamic help window in both VS2003 and 2005 displays keyword3, keyword2, keyword1 in this order(ie, last pushed keyword as the first one). Pressing F1 in this scenario- in VS2003 opens up the page for the first keyword, keyword3 in this case (last pushed) and VS2005 opens up the last keyword, keyword1 in this case(first pushed). Is this the expected behavior . How to get the F1 help working the same way for both VS2003 and 2005. ...Show All
Visual Studio Express Editions Visual Web Developer Express question
I just installed Visual Web Developer express. I can generate even the simplest aspx style page with it. When I try to display the web page I get errors like this: Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Unrecognized attribute 'xmlns'. Source Error: Line 8: \Windows\Microsoft.Net\Framework\v2.x\Config Line 9: --> Line 10: <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> Line 11: <appSett ...Show All
.NET Development web service access issues
first I'd like to apologise if I'm starting a duplicate thread here, but after searching for a half hour I was unable to solve this issue. I am new to developing in a microsoft enviroment, more used to unix so please bear with me. I have written a web service using visual studio 2005. Just a sample to try get things working. I then consume it in a windows app (also in VS2005). Both using C#. at first I was using the ASP.NET development web server that launches with VS2005 to serve the web service locally, which was fine. I decided to install IIS (5.1) on my windows XP machine to serve the web service across the network to do some speed tests ...Show All
Visual FoxPro Urgent! How to change the value of a range in an Excel worksheet in VFP?
Dear Experts, I've formatted a range from Text to Date in an Excel worksheet using codes in VFP, however when I open the worksheet to view the format is changed but the values still showing as text. Also found that the values will only change when i double-click on each indiviual cell on the worksheet, how can i do it using codes in VFP Your help appreciated. Andrew I've formatted a range from Text to Date in an Excel worksheet using codes in VFP, however when I open the worksheet to view the format is changed but the values still showing as text. Uhmmmm - would you mind showing us your code ...Show All
Windows Forms using applicationsettings/propertybinding to save form size etc.
I want to be able to save the following: The last position and size of the form when not maximized and the last windowstate. ie if the user closed the app maximized, next time I want it to open maximized, but if the user sets it back to a normal window, I want it to display using the save size and location (as Microsoft Word does). I have created three user settings with the appropriate type. If I bind these to the form properties, it seems to really screw up (it works ok until I add the windowstate, but I need this setting. Otherwise, if I maximize the form and then close and reload the app, the windowstate is set to normal, but the size is ...Show All
Visual C++ Code used to clear text boxes
im new to c++, and i would like to know the code that you need to use to clear text boxes. regthesk8r wrote: im new to c++, and i would like to know the code that you need to use to clear text boxes. SetWindowText can be used with an empty string. ...Show All
Visual Basic A question about Byte.Parse
I use: Try Byte.Parse(tbHyper.Text, Globalization.NumberStyles.Integer, Nothing) Catch ex As Exception If tbHyper.Text > 28 Then tbHyper.Text = 28 If tbHyper.Text < 0 Then tbHyper.Text = 0 End Try The above code is executed on textchanged. Everything is fine except for if the text box is blank then the exception is thrown as an Invalid Cast. Is there a way to use Byte.Parse and have it ignore when the box is empty Since I am asking, is there a better way to limit a textbox without using a mask Like my textbox is only allowed positive integers from 0 to 28. If there is a better way to do this than ...Show All
.NET Development Container.DataItem()
I was messing around with the Repeater control and I went to add my item template tag into it's code and I noticed that Container.Dataitem wasn't appearing in the intellisense. I tried using it anyway and it says 'Container' does not exist. Any ideas Thanks! -Chad Hi! What version of ASP.NET are you using That way of doing things changed in ASP.NET 2.0, and while it's still supported, it's not the best practice to do it that way. The best place for asking ASP.NET questions is on the ASP.NET community site, and in the forums there. Check out http://www.asp.net/welcome.aspx tabindex=1&tabid=39 . HTH, PEte ...Show All
Visual C# Getting Started Page not loading C# express beta 2
I just installed Visual C# 2005 Express Beta 2 and upon starting it I am told that the page cannot be displayed. The page it is trying to load is D:\Program%20Files\Microsoft%20Visual%20Studio%208\Common7\IDE\VCSExpress\HTML\GettingStarted.htm I installed the software to my D partition by the way so thats not why it can't find it. The page used to work on the first beta. I followed the instructions for unistalling the old Express betas before I began the instalation. I downloaded the .img version so that I don't have to download it again, but I couldn't burn it to a disk because I only have nero express wich doesn't suppor ...Show All
