Joseph Fluckiger's Q&A profile
Visual Studio Team System Divergent build instructions for Formal Team Build
I want to be able to use some custom settings within .csproj files when doing a formal Team Build but not when developers build in the IDE. So in my .csproj I add a conditional import at the end of the file, which only evaluates to true on the build machine because of an environment variable I have set up: <Import Project="$(SolutionRoot)\Exweb.Settings.targets" Condition=" '$(OfficialBuild)'=='true' " /> Howev ...Show All
Visual Basic How to distribute a VB.NET application alongwith a SQL Server 2000 database
I have developed an application using VB.NET and have a SQL Server database to go with this but I now want to deploy this application within the company so that other users can access it. How do I go about doing this. What procedures do I need to go through. The application was developed at home. My company does not have SQL Server. Regards Dipendra You can always try the SQL Server express edition on your co ...Show All
Smart Device Development Synchronization primitives in .NET CF
I need to synchronize access to a particular collection of files, all contained in the same directory, across multiple processes. All of this is handled through a single class with methods to add files, read files, and delete them. This class is part of a dll that multiple processes use. I'm running into trouble trying to get synchronization primitives to work. Access to the file system is the critical section, so it would make the most sense to ...Show All
.NET Development Random Class
Is anyone else having problems with the Random class I am using the following code in a 3d graphics application which models erosion on a landscape: nOffset = rnd.Next(NUM_DIRECTIONS); if (nOffset == NUM_DIRECTIONS) throw new ApplicationException("This shouldn't Happen"); and guess what, the exception is thrown. Not very often. I am running at around 20fps with the above code being called arou ...Show All
Visual Studio Express Editions windows control library
Hi to all, I installed express edition.I want to create custom controls.For this windows control library is needed.In express edition there is no template for control libary.Please help me How to get it. Do you know what the difference between a Class Library and a Windows Control Library was in VS.NET 2003 A Windows Control Library had references and imports for System.Windows.Forms and System.Drawing by default, plus the ...Show All
Visual C# Query on XML
Hi, 1) Can I do select, update and insertion queries on XML file 2) Can I do update query on dataset instead using of loop Thank's Alexei Hi, My problem was to put there records to database (took about 5 minuts) and creating xml file takes 2 seconds. I found the bulk insertion command of MSDE/SQL server. I have put the data to text file with delimiter and use bulk insert command (with lock table parameter) to upload there data to data ...Show All
Visual Studio Team System Stopping the build committing when it fails
When a build fails in the AfterDropBuild it still commits the work items and changesets so that next time the build executes, it does not associate with all the changesets and work items. Is there someway of stopping this Umm - actually not. The changesets and the work items association happens in a step before the DropBuild. That is why even if BeforeDropBuild (or later targets) fail(s), the changesets and work items commiting re ...Show All
Smart Device Development Make CF.NET 1.0 Application with VS 2005...
Hey guys! I'm looking for a way to make an application (C#) running on WinCE.NET and Pocket PC 2002 with Visual Studio 2005 (Beta 2). I know that Visual Studio 2005 let you program for Pocket PC 2003, SmartPhone 2003 and WinCE 5.0. In our enterprise, we make applications on PocketPC 2002 and WinCE.NET with Embedded Visual Studio 3.0 and 4.0. But it's verry painfull (old MFC etc :P ) so i'd like to show to our boss that it should be in ...Show All
Visual Studio Express Editions running the Personal Web Site Starter Kit
I created a Webpage using the Personal Web Site Starter Kit that comes with My Web Developers Tools. I know... I know... This guy must be a "green horn" since he is doing all that introduction stuff! Well, yes I am. Got to start somewhere! Anyways, I ran the webpage like the instructions said, before I ran the Configurator. Then I ran the Configurator and then tried to setup a user and give him (Me) administration priviledges. Whe ...Show All
Visual Basic Installer
Hallo, Please help me. I'm make the program using VB.NET 2003, after finish, I want the program a make become installer for Windows Application. But I use Crystal report in program . After finish, I make installer. I try Install the program, the program running. but when i open the report, then show error like this "Can't find Keycode or keycode error" If anyone can help me, please reply this question. Thank's Jebat (Boed ...Show All
Windows Forms creating an install-like wizard
hallo i'd like to supply the user a 3-steps wizard to guide the enter of some data and print out a report. I think i'll use the panel array-method, i use the same theory in developing wizards for web pages. Is there any way to use the ...Show All
Windows Forms Runtime exception in MDI Application
Hi We have a VB.NET application (which was upgraded from VB6 using the Conversion wizard). It is an MDI Application We use the following VB6 Controls:- Status Bar Control (Shows time, date, CAPS lock etc), FlexGrid Contol, Hierarchial Flex grid Control We have&nb ...Show All
Visual C# Window Media Player Errors
Hi Forum, I'm not sure if this is the best part of the forum to discuss it, but it involes c# to a large extent anyway. I am developling a c# application which uses Windows Media Player and Real Player components, and I have discovered 2 errors - yes 2 errors! - with Windows Media Player. Error #1: Winodws Media Player crashes (freezes - not responding) when it fails to connect to a server whilst in its 'handshak ...Show All
Visual Studio Team System how to create a Project in VSTS server using Integration services of VSTS.?
how do i create a new project in VSTS using APIs. Vikas ...Show All
.NET Development The configuration section cannot contain a CDATA or text element.
With this config section: < EditorSettings > < name > Verdana </ name > < size > 24 </ size > < style > 2 </ style > </ EditorSettings > I receive this error "The configuration section cannot contain a CDATA or text element." Using the new ConfigurationManager, ConfigSection and ConfigElement classes, are you unable to have that type of config section now. I am able to make it work lik ...Show All
