Shane McRoberts MSFT's Q&A profile
Visual Studio Deploying Crystal Reports Web Application
Is there a document which explains the correct way of deploying web applications with crystal reports using Visual Studio 2005. My app runs OK on the development machine, however when I deploy it it errors as follows Configuration Error 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 appropr ...Show All
Windows Forms .Net 2005
Has anyone be allowed to compile from Visual C# Express .Net 2005 I get an asembly validation error but with no description :/ I dont have the Framework directory in Microsoft.NET folder. ...Show All
Visual Studio Express Editions Develop ActiveX Controls with C++ Express?
I would like to develop an ActiveX control for use on a webpage. Can this be accomplished using the Express edition or will I need to purchase the Standard version Thanks... Doing your development in pure Win32 API and COM it is possible with express to do that. But its easier to use MFC or (better) ATL. But for this libraries you need to purchase VS Standard. They are not part of Express. ...Show All
Windows Forms How can I make my user control take my other controlslike a panel
Hi, I contructed a user control with two panels: one docked at the top (panel1) and another one docked as fill (panel2). When I drag my user control onto my form, I'd like to be able to add other controls (i.e. a button) to panel2 so I can dock it inside panel2. How can I accomplish this Thanks much! Hello. You really just need to make sure your user control inherits from either System.Windows.Forms.UserCon ...Show All
.NET Development Make a Project Management Forum
I wanted to ask if anyone else runs into the problem of not having a skilled project manager as I posted in this Blog here , but couldn't find a forum here for it. Hi, These forums do not have sub forum for general discussions. You can however post such articles in the ASP.NET Forums in the Free For All sub-section: http://forums.asp.net/12/ShowForum.aspx Regards, Vikram ...Show All
Visual Studio 2008 (Pre-release) Stopping a TextBox resizing to infinity and beyond
I have a very simple question. I want to use a DataTemplate to specify how to display an item in a ListBox. The item has two fields, one a Boolean, one a string of Text. I naively thought that this would be simple XAML. Maybe <DataTemplate ...> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> &nbs ...Show All
Software Development for Windows Vista So we're n00bs doing a project, what should we use?
We are working on a custom Motion Tracking system for a web camera. Basically what we're doing is to capture a still from a web camera and tracking an object as it moves through a scene by taking some stills a few times a second and sending a signal to move a platform to center the camera on the last known position on the object. Essentially this is a development for motion tracking for web cameras that do not have built-in mot ...Show All
.NET Development Anybody can tell me what is wrong????
Configuration Error 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: Could not load type 'DIP1.AspNet.Membership.OdbcMembershipProvider'. Source Error: Line 79: <add Line 80: name="OdbcProvider" Line 81: type=" ...Show All
Windows Forms URGENT problem with Databindings.
Hi, I'm using .NET Framework 1.1 for this project (we're not quite ready to roll out 2.0 for the company). I'm having a problem I don't think I've encountered before, and it's driving me CRAZY. I'd really appreciate any help I can get on it. The first weird observation that I made was that if I had a list box, and set it to have the datasource be dataset.table and the displaymember be field, it wouldn't set the position in the bindingcontext. Th ...Show All
Visual Studio Visual Studio 2005 Beta 2 Breaks MSDN/HTMLHelp2 Searching!
The Problem: * After installing Visual Studio 2005 Beta 2, HTMLHelp searches do not work correctly. This affects existing installations of the MSDN library (which uses Document Explorer 7) as well as the Visual Studio 2005 Beta 2 MSDN library (which uses Document Explorer 8). Both of those use HTML Help 2, which leads me to believe that it is the HTML Help 2 that is somehow broken. * The Symptoms: (1) Go to the "Look For" search field. (2) T ...Show All
Smart Device Development Single column List View box with vertical scroll bar
Hi, I am adding items to a list view, currently when I add more than can fit in the view, it wraps into another column. I would like the items to merely add them to the bottom of the list and add a vertical scroll bar. Can anyone help Thanks, James ...Show All
Windows Forms Using 1.0.21.288 being a firewall as the DMZ?
I have been running with version 1.0.22.290 of the terrarium which seems to work successfully behind my firewall since I am configured to be the DMZ, but almost no one is using this version. So I wanted to be able to use the older 1. ...Show All
Visual Studio Team System % Time in GC counter getting "stuck"
Been running some load tests and I've noticed that every once in awhile, the "% Time in GC" performance counter from the web server gets "stuck". What I mean by this is you can see the counter tracking normally, but then at a ceretain point, it pegs at a certain value (typically around 40%) and every reading after that comes back with the same value. Tracking from perfmon confirms that the counter is not staying at that le ...Show All
Visual FoxPro How to perform group by and order by AFTER union?
Hi, I have a SQL statement like this: SELECT * FROM ( SELECT * FROM A UNION SELECT * FROM B) GROUP BY 1, 2 ORDER BY 1, 2 Is there any way to translate it to FoxPro 2.5 compatible Thanks. I think you can use this : SELECT * from A ; UNION ; SELECT * from B ; group by 1, 2 ; order by 1, 2 ...Show All
Visual Studio Express Editions using string as an array
I am trying to use a string as an array. int x, size; String^ mystring = textbox1->Text; do { cout<<mystring[x]; }while(mystring[x]< ...Show All
