Answer Questions
Peregrine Falcon Cuctom excel Functions
> Hi, > > With the VS2005 for Office tools, is it possible to create custom > functions with tooltips This has been a limitation of VBA and I'm > wondering if I can/will be able to do this. > > Thanks, > Scott yes, those are the tooltips I was referring to. Thanks, Scott I'm not sure that I understand your question. When you refer to the tooltips ...Show All
Bill CC 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
Li.Ming.Net Specifying OperationRequirements declaratively
The ability to specify OperationRequirements declaratively seems quite useful and (as far as I can tell) isn't (yet ) provided. In case anyone else is looking for the same, here's my workaround - it seems to work OK for me... [ OperationRequirement ( typeof ( MyOperationRequirement1 ))] [ OperationRequirement ( typeof ( MyOperationRequirement2 ))] internal sealed class MyService : IMyContract {   ...Show All
RickBoogher How to create dataset which contain some image to add into Crystal Report of VS.Net 2005??????????
Hi Keith, I need to create a dataset which include some image. That image will be added into dataset from some phisical file then fill the dataset into crysal report. Can you help me I'm very hot to load a file at runtime in crystal report. I take forward your feedback as soon as possible. Thanks for your supports, Starfo Hello Starfo, I think that this is related to a previous post, text from that one: Samples for this can be found ...Show All
Alex G. Datasource ReportView
Hi! I want to set a DataSource for my LocalReport. There was no error shown after compling but the ReportViewControll: "The Source of the ReportView wasn't defined" objDataAdapter = New OleDb.OleDbDataAdapter(connstring, objConnection) ds = New DataSet objDataAdapter.Fill(ds) ds.DataSetName = "Aufenthalt_ds" Me.DataGridView1.DataSource = ds.Tables(0) 'The Dataset is accurate because the Grid have Data in it. Me.ReportVi ...Show All
Rahulkumar Patil Interactive Multi Column Sorting question
I know that you can do interactive multi column sorting, but in what sense That is, lets say I have a table with a State and a FullName column. I realize I can set things up so that the user can sort on the state column, or the user can sort on the Fullname column; But is it possible to fix it so the user can sort (interactively) first by State and second by FullName If so, how does it work Does the ...Show All
whodat [BUG] BitmapEffect clipped output
I reported this to the feedback center as well. THe following XAML shows clipped output for the element with a bitmap effect applied. The size of the element is smaller than it should be at higher scale factors. The problem does happen without animation as well. <Page xmlns=" http://schemas.microsoft.com/winfx/avalon/2005 " xmlns:x=" http://schemas.microsoft.com/winfx/xaml/2005 " > <Canvas> ...Show All
Galan textblock doesn't support ContentTemplate using Style
Hi, I am trying to design a style for TextBlock so that the text will be inside a round rectangle < Style x:Key = " roundTextBlock " TargetType = " {x:Type TextBlock} " > < Setter Property = " Background " Value = " Orange " /> < Setter Property = " Template " > < Setter.Value > < ControlTemplate > <Grid> < Rectangle Fill ...Show All
Yhack How to draw a mesh with a gradient brush?
I want to render something like a mountain which comes out of a plane. The plane should be green and the top of the mountain white. In between there should be a smooth transition from green to white. My code for this: Model3D DataModel() { double [,] m = CreateData(); MeshGeometry3D meshGeometry3D = CreateMesh(m); Material material = new DiffuseMaterial ( new LinearGradientBrush ( Colors .Green, Colors .White, ...Show All
zhou0620 Biding collection to shape
Hi, I have an XML with point's coordination. How do I bind that XML to a graphic polygon with minimum amount of code possible I guess it has to do with ItemsControl but documentation / examples are really poor. Thanks, Haggai You'll have to create a converter that con convert from an the IEnumerable of XMLElements that represent your points to a PointCollection. If you do that, you'll be able to specif ...Show All
DaveBrown1975 Using Visual Studio 2005 to edit / debug Transact SQL
Am wanting to utilize Visual Studio 2005 to edit / debug Transact SQL for MS SQL Server 2000 as a stepping board towards further programming challenges. Have created projects, attached to databases, but in running my SQL scripts I'm finding the debugging and tracking errors (especially with long scripts with several batches) to be difficult with VS 2005, compared to Query Analyzer. Examples so far: -no F5 to run a script -no parser t ...Show All
SanthoshGV Re installing - Cd Key Disappear
Problem!!!!! We downloaded VS 2005 professional version from MSDN last week then installed by two developer, the first developer had to reinstall again because his computer had one beta previously installed, now I am also had to reinstall it because my computer crash but he visual studio is asking the the product or Cd key that previously was greyed out. Alberto Acosta Any Idea anyone That quite we ...Show All
James Wu - MSFT Create instance of message class for (RPC) service
Hello, here comes a question that probably has an obvious answer I havent seen: In some scenarios I am finding myself wanting to create a message to be sent to a service defined at the "RPC layer", ie the standard example of using a ServiceContract with normal CLR types. The normal way to talk to such a service is using a proxy on the client side. If you have a service using messages you create them on the client side. Here I want to u ...Show All
X-Cubed Hiding the Toolbar
Sorry im very new! I have been using RS2000 and VS 2003 to create an asp.net page in C# to display a report from Reporting services in another application. I have this working but had a few questions: Firstly how do i hide the tool bar showing only report content Can i do the same to the Parameters bar and pass these in from the application Thanks Joe Yes, this is supported. Click on the ReportViewer co ...Show All
Lizzieaj help wih Viewport and Viewbox
Im having trouble with the Viewbox and Viewport properties of the various brushes. For example, in my 3D experiements, I have been creating a VisualBrush from a TextBlock succesfully, but because this seems to create many intermediate rendering targets, and because the actual text is infrequently changing, I thought I would render the text to a bitmap and use an ImageBrush instead. Unfortunately, I havent managed to come to grips with how ...Show All
