red_ice's Q&A profile
Software Development for Windows Vista Single Frame Animation
I need to create avi files one frame at a time, preferably by passing bitmap structures or DirectX drawing surfaces into a function that will do this, then create the audio by attaching a wav file stored on disk This was very easy to do using the old windows media video functions, but these old functions only support AVI1.0, with it's troublesome 4GB file size limit. So I'm looking for a solution that allows me to create AVI2.0 files in or ...Show All
Visual Studio SolutionEvents.Opened event + VCCodeElements = EXCEPTION!
I'm trying to use the SolutionEvents.Opened event to trap when a new solution is opened. My add-in gets called just fine... then I do the following: 1) get the Solution object from applicationObject.Solution 2) enum the Project objects: prj = solution.Item(i); // i = 1 to <= project count 3) try to get the VCCodeModel object: VCCodeModel vcCM = (VCCodeModel)prj.CodeModel; At this point I get an ...Show All
Visual Studio Team System Organization of Team projects
Hi We've been doing a couple of small projects with Team System (and the Team Foundation Server). Now we are facing a larger project with aprox 10 sub projects. In total there will be 15-20 people working on all of the projects with a deadline early next year. I'm having a hard time deciding whether I should create one large Team Project or 10-15 individual Team Projects. My dilemma is that there will be some developers that are working ...Show All
SQL Server Can't start SSIS
Hello, Our enterprise have bought a sql server 2005 standard edition. Before installing it i have installed the beta version. And after I desinstalled this beta version (with difficulties). But the problem is that I can't start SSIS. I have the following message: " The request failed or the service did not respond in a timely fashion. Consult event log or other applicable error logs for details. " Please can you help me. Thanks. ...Show All
Microsoft ISV Community Center Forums Emailing from an Access form.
Hi I have been asked to create a tracking system that will automatically email team leaders of when they need to add to data are that comments or other wise. What I need to do is develop a form that allows the selection of a record and then who to send a reminder email to and a comment text box that will be added to the email. is it possible to do this I can get the form to show the records and build the form but I have no idea ho ...Show All
Visual Basic DataGridView Delete Row Confirmation
Trying to handle the deleterow confirmation, and i might be going about it the wrong way but here is what i have so far... problem is. it doesn't handle the delete key. i have tried keys.back, keys.delete and they both only respond on the backspace key, not the delete key. do i need to handle this even witht hte datagriduserdeleting row event instead Public DeletePressed As Boolean = False IF Private Sub CompaniesDataGridV ...Show All
Visual Studio Express Editions Does the Visual Studio 2005 Express Edition support Pet Shop 4.0?
The Visual C# Express has error when open the Pet shop sln file. When I click the PetShop.sln, it ask which program will be used for open. I choosed the VC# Express, then it went on. Soon it complains that it can't handle the web module in Pet Shop. I think maybe the VC# Express can't process the web directory because there isn't a .csproj file, is it right ...Show All
Visual Studio Team System Running Unit Test with Code Coverage enabled raises SecurityException
Hi, We have some unit tests that we're running, all of them are currently passing and we're getting code coverage info back for them all. I add a new test method to one of the fixtures, which does nothing more than create a custom windows forms control (which inherits from Label), and suddenly my test method fails with a SecurityException. I run the tests with code coverage disabled and the new test passes. Re-enable code coverage and it fai ...Show All
SQL Server Exporting Stored Procedures to a file
I have a need to export all of the stored procedures in a database to files on the server dirve. I know that this can be done through the management interface but I need a way to do it programatically. I need to have a script or stored proc that dumps all of the procedures to a defined location on disk. Does anyone know how this can be done Thanks! There is an article with a stored procedure that does this at http://www.databasejour ...Show All
.NET Development Formatting 100000 to display as $100K
Is there a format suitable to display 100000 as $100K I read that {0, 3} is a way to specify the width of the display number but this only pads the number extra spaces if it is less than 3 digits. {0:$###K} --displays the full number $100000K {0, 3} -- displays the full number 100000K {0, 3:N} --same basic problem 100,000K Isn't reasonable that one would want to display only the first few digits of a number Or only the last few ...Show All
Visual Studio Express Editions Printing multiple pages
Can someone please help me print out a directory listing to multiple pages Here is the basic code I have so far: Private Sub PrintDocument1_PrintPage( ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage Dim di As New DirectoryInfo(pathString) 'create an array representing the files in the current directory. Dim fi As FileInfo( ...Show All
Visual Basic Visual Basic 2005 MenuStrip RadioCheck Properties
I can't seem to find the radiocheck properties for menustrip menu's it is in earlier visual studios version. does anyone here know anything about that I would surely appreciate the help. ...Show All
Visual Studio Bugs/Issues with Class Designer in VS05 Beta 2
Howdy. I've been attempting to create/use the Class Designer and I've come across an issue that seems to be different than the "Beta 1 leftovers" - at least as far as I can tell. I'm in a Windows App project. When I attempt to create a class diagram, I get a neverending series of dialog boxes that give the same error: Method not found: 'EnvDTE80.vsCMOverrideKind EnvDTE80.CodeEvent.get_OverrideKind()' When I endproc on VS05 and come back in, ...Show All
Software Development for Windows Vista about waveinopen on w2k
I write one program whitch call function "waveinopen" when another program is using the sound blaster .it can work normal on winxp but it can not work on w2k .it returns "MMSYSERR_ALLOCATED" why and what can i do thanks! ...Show All
Software Development for Windows Vista Compiling Rule file using WorkflowCompiler
I m trying to compile a XOML (Beta 2.2) file along with the rule file using WorkflowCompiler but failed to find the best way. Do anyone has a conde snippet of how to accomplish this. Thanx in advance WorkflowCompiler compiler = new WorkflowCompiler (); WorkflowCompilerParameters parameters = new WorkflowCompilerParameters (); string rulesFile = Path .Combine( Path .GetDirectoryName( this .loader.Xoml), Path .GetFileN ...Show All
