turbofreddan's Q&A profile
Visual Studio Express Editions Sound player in VB.NET Compiler Beta2 2005 Express Edition
Hi. Can someone tell me how to put a working sound player into the VB.NET 2005 Express Edition Beta2 I am having a little trouble, and I can't really figure out what it is. Is it a control If so, why isn't it in the Designer's Toolbox It wont work for me, it keeps asking to Convert the Files using Conversion Wizard. Do i need somthing, or am i missing somthing ...Show All
Software Development for Windows Vista difference between state machine and sequential workflow
hello every body can some one help me to know the difference between state machine workflow and sequential workflow. what's the advantages of every one thanks for help One of the best advantages to a state machine workflow is the ability to describe a process based on business events. Especially in document management types of workflows. Describing workflows based on state also enables users to see clearly what the status of a workflow is. Also, state machine workflows are easier to code based on events and the process of listening for them. Sequential workflows are more ideal for processing and linear stepping logic type of w ...Show All
Visual Studio Can't add MSDN library to x64 install
Hi All, I have an install of VS 2005 CTP July 2005 on my DELL PowerEdge box (dual 64-bit processors). The install went fine, but I can't install the MSDN library that was on the DVD. The install says an unhandled excption in msiexec.exe. Can the MSDN library be installed on 64-bit hardware Or am I missing something else Thanks in Advance! Corey. What OS are you using If its Windows 2003, do you have SP1 installed (and Windows Installer 3.1) ...Show All
Windows Forms Form refreshing issue.
I'm currently trying to learn Windows Forms by porting a game I made for Java to C#. The issue I have is that whenever I refresh the positions on my game board, either with Refresh() or Invalidate(), the form gets cleared, paints the plain grey window, and repaints the images on top of it. As such, it flickers between the game board images and the plain grey window behind them. Is there some sort of way that I can make it simply draw on top of what is already there One thing I have tried is repainting the images on top of one another without leaving OnPaint(). That does work, however, if I were to use this as a solution, I'd have to write ...Show All
Windows Forms Child Windows in Child Windows in C#
Hi there, This may be a stupid/newbie question, usual apologies if so, but I'm writing in C#, and I've got an application with an MDI setup, and I want to add windows in as child windows to the MDI's child windows. For example, my documents contain many objects, and I want to add a window inside the document window to represent certain objects; th ...Show All
.NET Development Ado Vs Ado.net
Hi All While comparing ado with ado.net,what r the advantages of ado.net over ado in all the sense Reagrds Atul ...Show All
Software Development for Windows Vista what is Optical Platform ?
If any body have like on this topic Optical Platform Group is the name we are currently using for our team. The current scope of the team includes support for creation of optical media that is not (easily) created by using the live UDF file system. (The live UDF file system is not within the scope of our team.) The OPG responsibilities currently include creation of audio CDs, DVD-Video discs (which require very specific constraints on both the file system and file contents), as well as the creation and burning of ISO images for all types of optical media. Hope that helps! ...Show All
Visual C# Unrecognized configuration section 'connectionStrings'
Hello ,can someone help me in the following : I have some pages that have been created with VWD express but when I try to test these pages with Dreamweaver or when I upload these pages on to a Host provider I get the following error message: 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: Unrecognized configuration section 'connectionStrings' Source Error: Line 10: <configuration> Line 11: <appSe ...Show All
Software Development for Windows Vista Workflow changes over time
I'm writing a system that uses the StateMachine Workflow. There will be many long running instances persisted in the database. Say I want add a simple activity to an existing event handler. Say send an email out. There are existing workflow sitting at that state waiting for external events. Currently when you make such a change your existing workflows are dead you get the. EventDeliveryFailedException. I would hope that I don't have to version my DLLs each time I make a simple change that adds to the work flow. Am I missing something Thanks, Jeff Hi, To do what you describe in the ...Show All
Visual Studio Express Editions Can not register: IE does not aunch.
Hi, after installing and using the Visual C++ Express Edition I wanted to register it. I clicked on the provided link "Microsoft Visual Studio registration website" and... nothing happens. Then I searched the forum and did the following: - signed in at passport.net - updated my profile at profile.microsoft.com and verified my email address at hotmail - made IE the standard webbrowser - setted the security options of IE to 'low' - restarted afterwards the browser Again I clicked on the provided link "Microsoft Visual Studio registration website" and... nothing happens. Do you have any suggestions to solve my problem (except trying Eclipse ...Show All
Smart Device Development Smartphone 5.0 Emulator connection problem
Alright, I'm pissed off beyond limits. I have .net 2.0 beta 2. I can write smartdevice 2003 application and can open emulator w/o any problem but, when I create Smartphone 5.0 project and try to run it, the emulator never shows up. Not only that it also freezes up my .net ide. I don't know what the heck is going on I'm also running norton internet security ( and it worked with it before ) Any help would be greatly appreciated. Thanks. Vladimir I tried this like 3-4 times and it still does not work...thanks though. ...Show All
Visual Studio 2008 (Pre-release) Suggestion for WPF - Navigation Transform
Hi All I've been checking out the January CTP, and the Sells/Griffiths book, and I'm really excited about WPF...I'm experimenting with translating a Windows Forms app and a different ASP.NET app into WPF, and it's looking good for both! As far as I can see from my explorations, the navigation stuff in WPF just does a straight replacement of the target page in the application. I would love to see transforms between the pages - eg pages displayed on the faces of a cube, and navigating rotates the cube, or pages are arranged in a z-order stack, and navigating zooms through one page to another, or gamma-fade and restore, or flipping around ...Show All
Visual C++ Managed COM
Hi, i wanted to expose some application COM classes written in C++ to other COM capable languages so i tried to write some test classes and exported a *.tlb with regasm.exe. But it doesn't work cause neither interfaces with id's nor class id's are defined in the *.tlb So there is some kind of a exporting problem. Heres the code: // Class interface AppInterface [Guid( "4F588E58-C85C-4b8c-A831-CDE454B5C218" ), InterfaceType(ComInterfaceType::InterfaceIsIUnknown)] interface class AppInterface { String^ GetAppVersion(); void Initialize(); }; // Events interface AppInterfaceEvents [Guid( "57EA6615-5526-42d4-9039-2A0FC ...Show All
Visual C# How can I capture the event of closing a form?
I have applied Form1_Closing() event handler to capture the Form-Closing event, but failed many times. I attempted to use this .Closing += new System.EventHandler( this .Form1_Closing ); to add the event handler, always suffered from a syntax error. Who can give me some successful C# source codes to fulfill the purpose. You might want to consider overriding the OnClosing event in your form rather than hooking up an event to it. To do this, add the following code to your form: protected override void OnClosing( CancelEventArgs e) { MessageBox .Show( "Test" ); } ...Show All
Visual C++ Where did the quick console go?
Anyone know where the quick console window went in Visual C++ Express August CTP Jeff House Hi Yaniv, Thanks a lot for your feedback. You can actually log your suggestion at http://lab.msdn.microsoft.com/productfeedback/ where other interested folks and users can vote and determine the importance of your suggestion. The VC team for sure considers every single suggestion entered there. Thanks in advance for taking the time to log your opinion. Thanks, Ayman Shoukry Program Manager VC++ Team ...Show All
