Tallgoose's Q&A profile
Visual Studio ToolboxItem attribute not honored by AutoToolboxService in VS 2005
The service that automatically creates toolbox items is not using the correct class: it ignores the ToolboxItemAttribute on the component that specifies which ToolboxItem-derived class to use, and instead creates a ToolboxManagerToolboxItem. The result is a bunch of unusable Toolbox items. We have already logic to populate the toolbox with a correct ToolboxItem whenever the designed class is opened in our graphical root designer. So we h ...Show All
Visual Studio Express Editions changing screen resolution for two monitors
Basically, I am trying to find an efficient way to write a simple app (only for myself) that can change the resolution on my two monitors without having to go through the GUI for each monitor. I have an HP laptop that I plug into to a Targus dock (w/VGA) for a second monitor and plug into a primary monitor through the laptop's VGA port. I use this configuration at both work and home. The monitors I have at work support 800 x 600 and 1024 x 76 ...Show All
SQL Server How can I tell which CTP I have?
I received SQL Server 2005 CTP in my June MSDN shipment. But it seems to be missing specific functionality that I would expect in the latest June CTP. Specifically, I don't see the 'Transfer Database' task in the Integration Service project template. A fellow on the NG told me that he has this task in his environment. He reported his SQL version as being 9.00.1187.07, while my version is 9.00.1116.00. So which CTP do I have Am I using April or J ...Show All
Visual C# help me -- sound project --
hi i want to record sound and save it as wav file You can take a look at the DirectSounds API, a great article is: A full-duplex audio player in C# using the waveIn/waveOut APIs . ...Show All
Visual C++ Scroll limitation issue
hi, I have recently taken over the a project for someone, one of the issues we have come across is that you cant view an entire document, in a window with scroll bars if its really big. I track this problem down to the ranges on the scroll bars. Once the range of the scroll bar exceeds 32000 pixels, it is set, by my ex-colleague back to 32000. So when you view a document, depending on the zoom factor you may only see a fractio ...Show All
Visual C# Event Args.
private void rbButtons_CheckedChanged(object sender, System.EventArgs e) could someone break this event handler down for me....what is the purpose of the 'object sender' and 'System.EventArgs e' Hi, This event occurs when the state of a RadioButton changes. sender will contain the instance of RadioButton on which the event occured. EventArgs is the base class for all classes which contains data regarding an event. In this case there is no ...Show All
Visual C++ How to change the Tab Label Font ,not all labels but the specific one. THKS!
Hi Dear All, How to change the Tab Label Font ( CPropertyPage) ,not all labels but the specific one. THKS! If it's worth the effort you should be able to do it with a hook on TextOut or DrawText whatever it uses internally and select your font into the dc. ...Show All
Software Development for Windows Vista Sample Problems On Building - Actiivity 'workflow1' validation failed: Property 'DataObject' has invalid value. Field
Hi, WF Newbie Here. Have got VS2k5, WF Beta 2 I am trying to work my way through the samples in teh book Presenting Windows Workflow Foundation. The second example of a windows app talking to a workflow, won't build. The error(s) thrown are Activity 'waitForData1' validation failed: Property 'DataObject' has invalid value. Field 'data' does not exist. I have downloaded the code from the publishers and it still won't build. A ...Show All
Visual Studio Visual C++ 2005 and Crystal Reports
Does Crystal Reports work with VC++ 2005 or not I seem to be able to do about half the stuff I can do in C#. ...Show All
Visual C# Who Discovered OOPS ?
Hi All, I'm preparing for an interview,I Just wanna know the answers for the following Who Discovered or Invented .... 1.OOPS .. 2.C# (off-course Microsoft) But still wanna know the name of team developed. 3.J#.. I'm Sorry for posting this bug(may be silly)..But still Eager to know the answers .. Please help me.. Regards, Vinoth.N Anything you try to 'learn' the day before the interview is not going ...Show All
Windows Forms Saving a Cookie from Inside a Secondary Thread
Yes, I know this is an ASP.NET question and I should ask it on the ASP.NET site, but I'm usually a WindowsForms kinda guy so I wanted to post the question here first. I have to start a new thread on an ASP.NET page (using VB.NET)  ...Show All
Visual Studio Printing
Hi all, I face the problem on printing using report viewer. When i press print button in report viewer, it will pop up the print dialog to let user select the printer and after select the print then press print for printing. My expected is when i press print on report viewer, it will directly print without pop up the print dialog, is it can do it. Thanks You can implement this functionality on your o ...Show All
Visual Basic The A-mazing disappearing class.
I have a class which I described yesterday here..... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=235310&SiteID=1 It's a mildly complex class of dynamically declared controls which are all added to to a tabcontrol as a tab page. In the test environment it's works flawlessly and does exactly what I want. It's a class a mom could be proud of and it's well isolated and self contained. However when I ...Show All
Visual Studio Team System Organizing multiple applications with shared components
Our team builds applications for collecting data used in clinical research. Because the data collected and requirements can vary drastically, each trial gets its own application. Because we're not totally insane, we have a fair amount of shared code. (Detabase connection layer, object persistance layer, web class libraries.) A solution for one of our applications can contain up to 9 projects, all of which are shared, except for the web app ...Show All
Visual C# C# Equivalent To VB WithEvents?
I have a form with a tabcontrol, and each tab has a webbrowser control. I have declared a form variable, curWebBrowser, of type, WebBrowser, that gets set to the current, visible webbrowser control when the user clicks on its tab. I would like to handle all webbrowser events via curWebBrowser, rather than code event handlers for every webbrowser control. Is there a way to do this in C# TIA, rca ...Show All
