Scott Bruhnsen's Q&A profile
Smart Device Development Smart Device Development
How do I use VS 2005 to make a CE.net 4.2 solution, Is this possible Please see this: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=408166&SiteID=1 ...Show All
Visual Studio 2008 (Pre-release) Control inside a control
hi, I'm creating a window with a label in it. In that label, I should be able to show a button, and some text, how can I make this work great thanks I don't know if I understand you correctly - you can put anything that knows how to renders itself in content controls. The only thing is that content controls accept only one child, so usually you will embed the controls in a panel: <Label> <StackPanel Orientation="Horizontal"> <Button>Click me!</Button> <TextBlock>Some text</TextBlock> </StackPanel> </Label> ...Show All
Smart Device Development A transparent label
Hi, We are currently working on a project in VB.Net (VS2005) for PocketPC. We are coding on .Net Compact Framework 2. It is required that we use a transparent label, with some text on it. Any inputs on how this can be achieved Thanks! The archives have some info related to transparency and controls. http://groups.google.com/groups/search q=transparent+label+group%3Amicrosoft.public.dotnet.framework.compactframework ...Show All
Visual Studio Team System Sharepoint Portal Server is not compatible with Visual Studio Team Foundation
Hi All When I'm trying to install Beat 2 VS 2005 Team foundation getting this error. I have installed Sharepoint portal server 2003 and Sharepoint portal windows service with service pack 1. Also I have installed sharepoint language pack also. But still Im getting this error. Anyone could you plz help me Thanks in Advance. Regards, Raghu For this BETA2 release of the Visual Studio Team Foundation the installation must be prefromed specifically as outlined in the Visual Studio Team Foundation guide. chemas-microsoft-com ffice ffice" /> > > > > The requirements of installation are for specifically Microsoft Windows SharePoint ...Show All
Visual Studio Can't get CSharp Web templates using GetProjectTemplate (bug?)
Hi, I'm trying to get the a CSharp version of a custom template for a Web application and I always get FileNotFound exception. I tried putting MyWebApp.zip file in the local User's template folder and the VS Web templates folder (and ran devenv /setup) and none of that is working. I tried the example given in another thread for VS Built in templates solution.GetProjectTemplate( "WebApplication.zip" , "Web" ); and it always returns the Visual Basic template and I can't get the CSharp version. Even if I try: solution.GetProjectTemplate( "CSharp\\1033\\WebApplication.zip" , "Web" ); ...Show All
Visual Studio IIS with Source Safe and Apache
Can Apache be used instead of IIS with Source Safe If you are asking if the HTTP plug-in for SourceSafe will work with Apache instead of IIS as the web server my guess would be the answer is 'no'. Does Apache support ASP.NET Web Services If not then I don't see how things would work since the HTTP plug-in calls various ASP.NET Web Services to do the actual work of accessing the SourceSafe database. ...Show All
Visual C++ Problem in MFC AppWizard(exe)
my code is like this: void CRrDlg::OnGetText() { CString kk; int f; CRrDlg* pEdit=(CRrDlg*)GetDlgItem(IDC_EDIT7); { f=22; kk=f; pEdit->SetWindowText(kk); } } I cant show 22 as output and i don't want to use kk.Format() to display. Is there any way to put variable f as variable kk how to convert int to a char string And, how to use SetDlgItemInt I can't use Format because everytime i use it,it will overwrite the previous data. ...Show All
.NET Development Some of the files required for Web references are not installed.
When I click "Add Web Reference", following error inoked. Some of the files required for Web references are not installed. VS Configuration! Microsoft Visual Studio 2005 Version 8.0.50727.26 (RTM.050727-2600) Microsoft .NET Framework Version 2.0.50727 Hello, What version do you have installed For the retail bits of VS.NET 2005 it should be version 8.0.50727.42. Is the version you installed bought from a store or was it handed out at a preview conference My guess is that you are simply missing files needed to render this Add Web Reference dialog box. I assume you've already tried an ...Show All
Visual Studio Express Editions Upgrade SQL 2000 database to SQL Express?
I have a small SQL 2000 database that I wish to migrate to SQL Express to test etc. What is the easiest way to go about this please Excuse the newbie question please... Cheers Craig I initially installed 2005 Express on my game computer and then created all the tables, constraints, keys, stored procedures, etc. Then I wrote a VB6 utility program to copy records from SQLServer2000 to SQLServer2005 Express. It was quick!!! I checked all the tables to make sure the keys where there and correct. I copied over about 500 meg of data. Not much is it ! Then I blew away my development machine and installed ...Show All
Visual Studio Team System Unit Test Creation Hanging...
I have a project that I try to generate unit tests for (C# project, right-clicking in file to select Create Unit Tests, No test project exists as part of the solution). The Populating Unit Test window revolving progress bar comes up and it never goes away. i've let it sit for an hour and it never finishes. It's a small project with about 15 classes - nothing complicated. I can zip and send the project to someone as it happens every time. Thanks. Jeff Hi Jeff, I'd like to take a look. If you don't mind, can you zip and send the project to me at winnieng at microsoft dot com Thanks. Winnie ...Show All
Visual Basic Block Scope and For Next Loop
Inside a function, I have a variable named Combined inside a For Next block of code. As an example without actual code.... Private Function(yadda,yadda) as integer For a as integer = 0 to myarray.length - 1 Combined += Combined next a Return Combined 'Does not work because it lost its scope outside For Next block End Function Was hoping someone could tell me a workaround for this that will allow me to return the value of the variable that's located inside the For Next Loop Thank you in advance Mike Private Function(yadda,yadda) as integer dim Combined as integer = 0 For a as integer = 0 to myarray.length - ...Show All
.NET Development ADO.net, how to use INSERT statement
when execute insert statement, happend exception "fail to connect datasource". if change the value( , , ) to real value(3,'dfdf',11). it work well. so it prove that it can connect to DB. and execute select statement, no problem. why insert can happened the problem how to handle it CageNo defined to AutoNumber, CageName to Text and Food to Number(long integer) in Access. Any help, i will appreciate it. using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.Data.Odbc; namespace WindowsApplication3 { /// <summary> /// Summa ...Show All
Visual Studio Express Editions I dont know where else to ask..... AutoPlay Menu made in VB Express
I'm planing to make a menu for CD/DVD in vbexpress... is there a way to check if .net 2 is installed befor i run my exe file in autorun.inf or some other solution i did not think of that... this could work :-) ... i'll look into that... and by menu... i meant... when you put some cd-s in cd rom.. and you get menu with options..and when you click on somthing it starts install of that like... menu on cd that comes with mother board ... ...Show All
Visual C++ MFC OnShowWindow issue
Hi I have some problems with my MFC application. Working on a small setup program using a wizard. Normally i use .NET but i must do this in c++ cause the setup should not be depending on the .NET framework. So what i did: create a dialog for each page in the wizard. The show the dialogs with CDialog::DoModal() .... this works pretty good, only looking for some kind of event to know the dialog is visible to the screen. Need this for 2 dialogs, the SQL server dialog (enum's the sql server in the network) and the install progress page. when i was working on the sql page; i noticed i took few seconds before the page showed up, ca ...Show All
Visual Studio Reportviewer Paper size
Is there any way to set the paper size for the Reportviewer control other than at runtime using the Page Setup button. It always defaults to "Letter" which is not really suitable for all countries. I am using Visual Studio RC1 on Windows Forms application. The problem is in RTM version too. Previous threads talk about this, but no solution at all. Waiting for some tips from MS. ...Show All
