Aaron--ScriptKitty's Q&A profile
Visual Studio Tools for Office Cypress questions
I read the Cypress announcement and I have some questions. It is unclear to me what functionality will be usable in VS2005 and what will require an upgrade to VS2007. Specifically, I am interested in Word application-level add-in support (like IDTExtensibility2, as opposed to the document-centric approach of the current VSTO) and custom taskbars. I also am interested to know whether any of these features above (and any others) will be supported by Cypress under previous versions of Word (2003 and/or XP). I am a bit confused about the following statement: " I want to be clear that Cypress is not a super-set of all t ...Show All
SQL Server SQL Server 2005, MS Access Merge Replication?
Hey there! In a nutshell, I want to do a merge replication with a SQL Server and several Access databases. I haven't been able to find anything in the documentation or 3rd party books. Is this possible Thanks! - Erik What version of SQL Server are you using This feature has been deprecated in SQL Server 2005. Here is a pointer to the old documentation http://msdn.microsoft.com/library/default.asp url=/library/en-us/replsql/replhet_956b.asp Have you considered merge replication to SQL Express subscribers, this is a great scalable solution. Thanks Nabila Lacey ...Show All
SQL Server Management Studio Express CTP update now available
There is a new Management Studio Express CTP download available at http://www.microsoft.com/downloads/details.aspx FamilyId=82AFBD59-57A4-455E-A2D6-1D4C98D40F6E&displaylang=en . This update fixes the defect where installing the full Books Online documentation prevented Management Studio Express from starting. With the update, Management Studio Express and Books Online no longer interfere with each other. To update Management Studio Express CTP: 1) Uninstall Management Studio Express CTP from your machine. 2) Clear your browser's download cache. If you are using Internet Explorer 6, you can do this by starting Internet ...Show All
Visual FoxPro cannot update cursor < > since it is read-only
I am getting this error message at RUNTIME ONLY in startMode = 4. In interactive mode (starMode = 0) everything works fine. This message comes from a secondary form that I use to select email addresses. They are stored in a table with a few fields. I dedicated one of them as a markup field meaning that if that address is selected in a combobox it is marked, the table is updated as TABLEUPDATE (1). I mean, it is supposed to be updated. It is not . Instead I get a series of error messages related to each address selected (main address, CC, BCC, etc). I do not understand the message because there is no cursor. It is a table. Again, it appear ...Show All
Windows Forms How Do I check for the Blank Text Box
Hi, I am new to this site as well as c# language. My Background is vb6.0 How do I check for the blank Text Box which we were doing in vb6.0 if txtName.text="" then Msgbox("Please Enter Name" txtName.SetFocus() end if How do I achieve very same thing in C# winforms application. bye venkat_kl Yes testing the length for being 0 will& ...Show All
Windows Forms Disable Control Designer for WinForm Control
How Can i disable ControlDesigner for standard WINForm control in VS 2005. i.e. restrict resizing or moving it on form in design time. For exampe for standart Panel or Button to Lock it is not acceptable. Hi, The ability to resize or move a control is done via the SelectionRules in the control designer. So in order to get the desired behavior you would have to override this method. Martin ...Show All
SQL Server Join tables, count problems
Hi, I have the following problem: I want to join 2 tables but the table that I want to join on has duplicates of the same record. This is what my query looks like: SELECT a.account, e.account AS Expr1, COUNT(e.ord_status) AS SentOrders, MONTH(e.datetime_added) AS Month, YEAR(e.datetime_added) AS Year FROM executionreports AS e INNER JOIN accounts AS a ON e.account = a.account WHERE (e.ord_status = '0') GROUP BY a.account, e.account, MONTH(e.datetime_added), YEAR(e.datetime_added) ORDER BY Expr1 and the output looks like this: 1AA 1AA 328 4 2006 1CC 1CC 45 3 2006 1CD 1CD 8 4 2006 1MA 1MA 1167 3 2006 1MA 1MA 8 ...Show All
Visual Studio Express Editions Manually move VC++ 2k5 Express installation files
Good evening... Admiittedly I'm being somewhat anal, but I'd like to move a few of the directories around that VC++ 2005 Express created when I installed it. Generally, I'd like to split the IDE & Help files from the library and compiler. I previously installed the VC2k3 Toolkit in my C:\Cpp\VCToolkit2003 directory. So I wanted to move the bin, lib, and include sub directories of the VC directory that VC++2k5 Express installed in C:\Program Files\Microsoft Visual Studio 8\VC into C:\Cpp\VCToolkit2005. Can I do this and just change the directories under Tools | Options | Projects and Solutions | VC++ Directoreis On a related note, ...Show All
Visual C# Is there metadata/manifest for the Project Name of an Assembly?
Does an Assembly have a manifest/metadata that tells the title of the project that it came from I tried to look at the assemblyinfo.cs of one of the project that isn't mine and the only lead that I have is the: [assembly: AssemblyTitle ( "" ) However, there are projects in our company that the AssemblyTitle is different from the project name. There are also several instances wherein the Assembly name is different from the project name. Please advice. No there's no such metadata. You don't need Visual Studio to build assemblies so there may not even be a project. I'm curious why you need the pro ...Show All
Visual Studio API for browsing VS 2005 "Track Changes" (yellow/green editor margin)
Hi, VS 2005 introduces a cool feature that allows the programmer to track changes in the text editor using the yellow/green line that VS draws on the left-hand side. Does anyone know if it is possible to browse those code areas (same as we browse manually added mark points) How can I program a macro / add-in / package that performs this task Thank you, Eyal The DTE object, the root of the automation model, is a service. You can get to an instance of this with code such as this in your package's class: GetService(typeof(EnvDTE.DTE)) Craig ...Show All
Visual Studio Express Editions Rookie at vb and visual studio
Environement:I'm using visual basic studio express edition and sql server express edition. Problem: I write a code to delete some datas in the sql server. But i want that before deleting, a message box opens with two options in it. One option as yes if user is sure to delete the data and no if the user changes his idea. I tired to add a new dialogbox to the project with ok, cancel. I was thinking to use DialogResult.Yes but the thing is i cannot open that dialog box. I'm mistaken some syntaxes (maybe not mistaking, just I dont know) just because i'm quite new to the vb.net and visual studio. I'm sor ...Show All
Visual Studio Team System Question on Team testing tool
Hi, I'm very new to team system, I’m currently looking for a tool that can help me to do the functional testing (end user acceptance testing), the tool will be needed to document the manual written test cases (test plans) and testing results. Our application has both Windows GUI and Web formats. Do you think the Team System testing tool will fit my need Thank you for your input. Hi Kathy, Bug Tracking is part of Visual Studio 2005 Team Foundation Server. It includes source code control, work item (bug) tracking and other features. A good overview of the different products can b ...Show All
Software Development for Windows Vista Reloading the state machine instance from persistence in Tracking
I am trying to extend The Ordering State Machine example. I want the form to load all persisted workflows on start up, displaying each at their current state in the list view. I have implemented the SqlPersistenceService and the Tracking service successfully and both databases are being populated. As a test I am loading a persisted workflowInstance using its GUID WorkflowInstance CurrentInstance = theWorkflowRuntime.GetWorkflow(new System.Guid("63714370-9bd8-4ab3-9928-cc3c0b2c6696")); CurrentInstance.Load(); I have implemented the handler for the workf ...Show All
Smart Device Development How to build DLL programme base Smartphone
in Visual Studio 2005, there is only MFC DLL project, but Smartphone does not support MFC develop then how to develop DLL project based on smartphone thanks! Oh, and if you don't want to use MFC, you can create a DLL project through the Win32 project wizard, one of the options on the application settings page is DLL. Hope this helps, Jeff Abraham Visual Studio ...Show All
Visual Basic Making a Start Menu in VB.Net
Hello, Does anyone know how to make a menu similar to the "Start" Menu, so that I can allow the user to drag & drop items from different folders in the same menu I need to let him/her rearrange the different items of the menu and add new folders and items. Thank you for your help! I'm not sure if it's the same control, but take a look at Lutz Roeder's CommandBar for .net. http://www.aisto.com/roeder/dotnet/ ...Show All
