Answer Questions
Benny Pedersen Current statement markers
Hi, I am implementing a language package complete with a debugger and all (not using the regular VS debugger SDK, for certain reasons). Now, the debugger is working but right now i am using the bookmark marker as the current statement. I want to use the regular Visual Studio current statement marker, but it seems that the MARKERTYPE enum does not have any such option. Ofcourse i can replicate it by making my own marker, but i don't want to do th ...Show All
sanj VSIP Package Wizard
I am working with creating VSPackages and trying to use the wizards that seem to have been removed form the VS Beta 2 and VSIP-B2. Has the wizard location changed The VSIP documentation says 1) File New Project 2) Extensibility Projects (was there under Beta 1) Trying to create a VSPackage for our own language that will support a Forms designer. I went under the VISP 8.0\envsdk\cs_samples and c ...Show All
Hadas Rodal Get all bindings on a page?
Hi all, I'm trying to create an ErrorProvider that I can give a data context to and have it display errors automatically thanks to the IDataErrorInfo interface. Is there a way to interrogate the current page (this is a WPF navigation application) to find all the bindings on the page Thanks, From what I can tell there isn't a central store for Bindings. I'm sure there probably is one somewhere deep in the framework (IE unexposed ...Show All
rabidrobot Command pattern
I read some articles on implementing such a feature by extending the Command pattern. Now, WPF has an implementation of this pattern (System.Windows.Input) and I'm using it already. So here's my question: how do I add the Undo/Redo in an orderly way One of the things I have considered is extending the CommandManager but: 1. how do I get my window to use it 2. it is sealed... Any suggestions -- Erno ---- WPF tutorials: http://blogs.infosupport ...Show All
Sumathi SQL Like & In Operators | other errors
hi there I am missing the SQL LIKE and IN operators. Are those currently not available or did I not find them I expected something like var q = from t in something where t.somecolumn like "blah%" select t; and var q = from t in something where t.idcolumn in (myIDarray) select t; In the samples I saw a category " ...Show All
isaacc Setting the style of the current XMmlNode during ContextEnter
Hi I have a XML document in Word 2003 and I would like to set the style of the current XmlNode during ContextEnter event. private void ChapterTitleNodes_ContextEnter( object sender, Microsoft.Office.Tools.Word. ContextChangeEventArgs e) { SetXmlNodeStyle(e.NewXMLNode.Range, "Heading 1" ); } private static void SetXmlNodeStyle( Range range, string style) { object styleobject = style; &nb ...Show All
dilibu Revision and Build not changing in VB.NET project since Source Safe
Ever since I put my project in to Visual Source Safe, the revision and build numbers never change. Another side effect is that when I launch Visual Studio, it say sI haven't worked on the project for a long time even though I am in it daily. Please help! Jim Alin, I checked and neither the SUO nor the .user file is under SCC. I didn't realize that the revision number only incremented each da ...Show All
Tony Loton menu problems resolved
earlier on i posted a question about building menus. the issue was creating various menus. i built a wrapper to make the process a little more palletable and ran into the issue where i was getting catastrophic exceptions (0x8000FFFF) when attempting to add a command to a second (always a second) menu. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=202764&SiteID=1 the cause (after banging my head against the wall for quite some t ...Show All
Gert Drapers - MSFT Auto Print a Crystal Reports Report
I have a WebForm with a CrystalReports Viewer and is working fine, when I click the print button it works fine as expected. The question is that I need to make this Click in an automatic way, something like all.form1.PrinButton.click(), aimed to fire the event that prints the document, or someway to fire this event from the vb code. I've alrady checked the documents explaining how to print from the server, and with window.print(), but they don't ...Show All
Ramcat Hints on implementing a custom control for histogram needed
I want to create a custom control that just displays a histogram and has events when I move the mouse over it in order to display the value in a tooltip or in a status bar. So I need some advise as what would be the best way to do this At the moment I have a class derived from Control (to use it in the main window xaml file and for easy databinding of the real histogram) that contains a child that is derived from FrameworkElement which then cont ...Show All
Shehnaz How to give a signature for a zip file?
I want to know it because I make a snippet or it will always show a messagebox which ask you click "yes or no" OK,Thanks very much! I am sorry to tell you that there is still the same problem And pls check your email,I have sended a mail with a problem-vsi-file made by the updates. I am misunderstood why the downloaded vsi files works well but mine doesn't work. Are you signing this file with a valid signature ...Show All
JimArgeropoulos Legal status of packages targeting VSIP
Hi! I would like to ask what are the restrictions for packages using VSIP 8.0. Especially if they can be open sourced I assume that after obtaining PLK the binary package can be distributed. When obtaining of PLKs for VSIP 8.0 wil be available Actually I didn't yet install the package, so I didn't have to agree on any VS2005 Beta2 SDK license (I signed one when I created VSIP account). And I'm aware that if I install and use it I hav ...Show All
Pete Brubaker Adding additional RenderingExtensions
Hello. Our company is a small ISV that is hoping to use the Windows Forms ReportViewer for a number of things, among them the archiving of billing invoices. This requires us to be able to export to a "carbon-copy" type of output format, such as PDF. Our application ships with MSDE, so we're unable to use the full version of Reporting Services. PDF is not a supported export format for ReportViewer, but we were able to get this ...Show All
Sebastian Paulussen Interop Between WPF and GDI+
I want to write a simple application which can capture the whole screen, and this is what I do: private void captureButton_Click(Object sender, RoutedEventArgs e) { Int32 height = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height; Int32 width = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width; System.Drawing.Bitmap captureBitmap = new System.Drawing.Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format ...Show All
Paulustrious RenderingHint? and 3D
I remember (I think...) that with this/next CTP release that we would get actual real anti-aliasing for 3D objects, but I can't remember any of the details, so if any have a link or a good handle on it, it would be appreciated. It's not turned on by default because a substantial number of mainstream video cards will render improperly or just simply crash when multisampling is enabled. This problem is comp ...Show All
