Answer Questions
gavin_1724 DataGridView wrapper - additional property-combobox fill up
Hi All, I have made a datagridview wrapper, in wich I add properties to grid for the developer to see at the design time in properties window of the grid . The properties in which developer has to type in a value, those are easy to do. But now I have to make a property as such which appears as a combobox and has 2 values(same as autoscroll property of datagridview -where we have true and false as two default values, and false is default) which are strings and appear in dropdown. I have been able to make a property appear as combobox, but I am nto able to fill up the dropdown list. The code to make property as combobox is here below: ComboBox formManagerMode; public ComboBox FormManagerMode { get { ...Show All
Lejing .NET 1.1 project under VS.net 2005 IDE
I was wondering if there is a way (with or without an extension) to develop a .NET 1.1 project under VS.net 2005's IDE. Thanks ...Show All
Jeff Williams Project line counting
Hello We have a very big project in visual studio 2005 (vb.net and c#) containing code,sql database and start producer, resources string, dataset, control library, reports and .... how we can count number of lines in our project. I testing it by this (http://www.codeproject.com/useritems/LineCounterAddin.asp) line counter but I do not think this program counting all off my project source files. and not correct number of line in some of files. so this program counted my project line twice as much of old version of this counting program. Is it exist better program tho work this thanks. My MZ-Tools add-in has an Statistics feature: http://www.mztools.com/v5/features.htm#Statistics ...Show All
dzimmy need help in exporting a report using crystal reports in Visual studio 2005 (vb.net)
Hi all when i export a file having few records, it works fine. But if i attempt to export a dataset having thousands of records, it doesn't do anything. Even, its not giving any exception. I set a "DataSet" as a datasource of "ReportDocument" object. Then i use this method to export the dataset records into doc file crystalReport.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.WordForWindows, "D:\InventoryResults.doc") Can anyone help Put a break point and see if your report is still loading. It could be taking time to print all the records on the report. If nothing is printed then there's probably an error in your data. Either null fields on incorrect data are present ...Show All
Chiisana Writing about performance?
Hello! How is it now, we may not write about performance issues here, but should write about such things to the Microsoft Connect forum, or may we write about performance aspects here as well Best regards, Henrik Dahl Hello Atul! Don't you have some interesting news on the matter above to tell Best regards, Henrik Dahl Atul Adya - MSFT wrote: Actually, we looked at it yesterday and now understand the reason. Thanks a lot for this example. As you can probably figure out, our stack has not been optimized yet. This is a performance bug - we have a solution that reduces the time significantly. We are coding it up and in the next ref ...Show All
Howard Pinsley How to create AppBar without SHAppBarMessage?
Hi all, I am currently developing a "Windows Application" project. I need to create an Application Desktop ToolBar (AppBar) with WPF (using C#) without using the System API (to be more precise, without importing SHAppBarMessage API). Is It possible And, if so, how Thanks in advance, Null thank you OldDino, the AppBar in Genghis is created in managed code, but is written in .Net 2.0 and we want to use WPF Massimiliano Just because I want to get rid of System APIs, and to use managed code only. Why do you want not to use System APIs i have the same problem..could anyone help us ...Show All
xgene Cannot install GAT or any other guidance package
Trying to install GAT or any other guidance package gives me the following error on a dialog box - "Operation is not valid due to the current state of the object" - clicking on the OK button rolls back the installation. GAX Preview release (Dec 2005) installed - no problem GAT version: Preview release (Dec 2005) Visual Studio version: VSTS (2005) O/S: Windows XP service pack 2 .NET: Version 1.1 and 2.0 installed MSI: Version 3.1 EXCERPT OF THE VERBOSE MSI LOG: === Verbose logging started: 3/31/2006 14:47:19 Build type: SHIP UNICODE 3.01.4000.2435 Calling process: C:\WINDOWS\system32\msiexec.exe === MSI (c) (18:60) [14:47:19:849]: Resetting cached policy values MSI (c) (18:60) [14:47:19:849]: Machine policy ...Show All
Pedro Felix VSTO 2005 SE
I have installed VSTO 2005 on top of VSTO. From the main web page, I should now have, among many other things " Expanded application-level add-in support for these Office 2003 Standard and Professional applications: Word, Excel, Outlook, PowerPoint and Visio." Where can I find out how the application level add-in support has been expanded In other words, what can I do now what I couldn't do before Many thanks. Michel There is actually plenty of information available online on MSDN. You can start with the main VSTO 2005 SE portal at: http://msdn2.microsoft.com/en-us/office/aa905543.aspx Hope this helps. ...Show All
ssommerf Customizing the ribbon from a Word add-in using VSTO CTP
Hello all, I am working on an addin for word that involves both a custom task pane and a custom button on the ribbon. Naturally, I was excited to find that there are videos on channel9 for both of these scenarios. I watched the task pane video: http://channel9.msdn.com/Showpost.aspx postid=197654 and have come up with a task pane that looks good and does what I want it to do. Now, I want to add a button to the ribbon enabling me to hide or show the task pane. Unfortunately, it appears that to customize the ribbon, you need to start a "Shared add-in" project, rather than a "Word add-in" project, as the task pane video instructed me to do. My task pane project does not implement Extensibility.IDTExtensibility2, as htt ...Show All
israelsaba How to reference one xaml file from another?
Hi, I have a xaml file containing Viewport3D element with some Model3DGroup. <Viewport3D> <Viewport3D.Camera> <PerspectiveCamera .../> </Viewport3D.Camera> <ModelVisual3D> <ModelVisual3D.Content> <Model3DGroup> ... </Model3DGroup> </ModelVisual3D.Content> </ModelVisual3D> </Viewport3D> Is there a way to put the Model3DGroup into a separate file and make a reference to it from Viewport3D Thanks in advance. Igor, If you can't modify the file the suggestion above to use XamlReader sounds like the ideal solution, what is the problem with it As long as the file is XAML, XamlReader can read it, and ...Show All
h1 How to disable the Parameter prompt for Crystal Report using VB.Net
I'm having a problem whereby I can't disable the parameter prompting in VB.Net with the following codes:- Dim crPDV As ParameterDiscreteValue Dim crPFD As ParameterFieldDefinitions Dim crPFL As ParameterFieldDefinition Dim crPV As ParameterValues crPFD = CR.DataDefinition.ParameterFields crPFL = crPFD.Item("paramterName") crPV = crPFL.CurrentValues crPDV = New CrystalDecisions.Shared.ParameterDiscreteValue crPDV.Value = valueToPass crPV.Add(crPDV) crPFL.ApplyCurrentValues(crPV) CrystalReportViewer1.ReportSource = Application.StartupPath & "\TheReport.rpt" CrystalReportViewer1.Show() Any error with the above codes OR do i need to add any additional code(s) that able for me to pass the parameter value direc ...Show All
Danny Tuppeny Can't Install Interactive Designer: Wrong WPF Version?
So I've been trying to get started with WPF development, but I've had some trouble getting all the components installed and playing nicely together. In an effort to get all the right stuff installed (dotnet3, winfx, wpf, vs extensions, etc), I've downloaded at least a dozen different installers. So it's likely that I have several non-compatible versions installed right now. As far as I can tell, here's what I've got (most of this info was gathered from the Add/Remove Programs Control Panel): Microsoft .NET Framework 2.0 (already installed, long ago; I'd prefer not to uninstall this) Security Update for Microsoft .NET Framework 2.0 (KB917283) Microsoft .NET Framework 3.0 Microsoft Expression Graphic Designer June 2006 CTP ...Show All
briggins5 how to apply Animation to image on click of button?
Hi I am not able to apply animation to image on click of button in XAMl but i am able to do this in c#. Following is the code I am writting; <Button Name="myButton" Width="75" Height="25" /> <Image Source="c:\images\a.jpg" Height="400" Width="400" > <Image.RenderTransform> <TranslateTransform X="100" Y="100" x:Name="myImageTranslate" /> </Image.RenderTransform> <Image.Triggers> <EventTrigger RoutedEvent="Button.Click" SourceName="myButton" > <EventTrigger.Actions> <BeginStoryboard> <Storyboard> <DoubleAnimation To=&q ...Show All
jeff1024 MSMQ? How many clients queues can connect to one server queue at one exact moment
Whats the limitation. Client wants to know this to know how many MSMQ servers they need in a farm for any given scenario. I know of 2 existing limitations that you might take into consideration depend on the type of OS you will be using on the server farm, the type of binding and the number of clients you plan to support: 1. WinXP Pro OS has a 10 CAL (client access license) limit , both in MSMQ and in IIS. For native MSMQ transport, it's less likely to be an issue, since a lot of our licensing is counted per machine, not per TCP or RPC connection. HTTP is more problematic: IIS tracks the connections literally by each TCP connection. This will mean that any type of remote HTTP operation will like ...Show All
Geo725 How do you determine the size of your VSS database?
I am VERY new to VSS and have been named 'administrator' but given NO training! FUN! I cannot find any option w/in the tool to tell me the size of the database. The actual filesystem where the projects are located have other non-VSS related information. I am using VSS 6.0 Thanks in advance. Hi There is no mechanism within the SourceSafe tool that tells you the database size. The database itself consists of the srcsafe.ini and users.txt files along with the data,users, and temp deirectory. Normally the size of the database is considered to be the size of the data directory (this contains all files and history added to the database) hope this helps. ...Show All
