Software Development Network Logo
  • Visual Studio
  • VS Team System
  • Smart Devicet
  • IE Development
  • Game Technologies
  • Visual FoxPro
  • .NET Development
  • SQL Server
  • Visual C#
  • SharePoint Products
  • Audio and Video
  • Visual Basic
  • Windows Forms
  • Microsoft ISV
  • Windows Vista

Software Development Network >> Visual Studio

Visual Studio

New Question

NetTcpBinding -> UsernameAuthentication
Declarative security in WCF
Panel that can repeat items
MC++ Problems after installing VS2005 SP1
Bug with Can Grow and Line Tool
Debugging a web browser application that uses a web service
A4 paper size with winforms reportviewer
Submitting doc errors?
Bug? - .Net sensitive to the ordering of parameters in the HTTP Content-Type header
Service pack 1 vs vista SDK

Top Answerers

David_JS
epsilon_ro
customization
enric vives
tenchyz
Ofir Epstein
shido
Expressman
Computer Science Student
Seb.Net
sitemap
Only Title

Answer Questions

  • Superobotz WPF programs wont run!

    hello, i know this might seem like a trivial question but i'm having major problems running wpf applications. i have downloaded vs pro 2005, windows SDK, .NET 3.0, but it still wont work i am designing wpf applications at work but i didnt set the computer up and the guy who did is off, but i want to try them on my laptop, any help would be greatly appreciated and any links etc are more than welcome thanks, stu thanks, i downloaded all of those, but for some reason when i try and open VS it just says 'this type of project' is not supported ! ! any ideas thanks .NET framework http://www.microsoft.com/downloads/details.aspx FamilyID=62057a6f-185f-41db-abe5-678f6fc388f0&DisplayLang=en SDK http://www ...Show All

  • Robert.Altland Tcp/ Http Sessions and streaming == Cry...

    Hi all, I'm trying to implement a fairly service that, using a session, can a) provide information about a stream and b) upload it over Http or Tcp. The contract looks like this: [ ServiceContract ( SessionMode = SessionMode .Allowed)] public interface IStoreUpload { [ OperationContract ( IsInitiating = true , IsOneWay = false )] void Create ( Descriptor descriptor); [ OperationContract ( IsInitiating = false , IsTerminating = true , IsOneWay = false )] Descriptor Upload ( Stream data); } Server App.Config: < xml version = " 1.0 " encoding = &quo ...Show All

  • keith1000 Microsoft Office Projects Not Viewable

    Hi all I want to create project using C# that targets MS office Word. To accomplish this i have installed VSTO 2005 in my system. My system configuration is Windows XP SP 2 MS Office 2003 Professional SP 2 VS 2005 .Net Framework 2.0 I have also installed PIA redistributable package and office runtime. But the problem is that Microsoft Office 2005 Projects Folder aren't viewable in Project Types. I also tried VSTO 2005 client troubleshooter and the analysis report shows no warnings except that DisableDocumentAssemblies Policy Status Disabled  and Office Application Configuration Files No configuration files were found Please give some response as soon as possi ...Show All

  • SouLDragooN Need to order columns in a table embeded in Reportviewer.

    Hi, I have requirement to change the order of the columns displayed in the report viewer which could be done in crystal viewer. Can anyone please help Hi, I am using report viewer on the client side to generate local reports. I don't know if it is similar to crystal reports or viewer, but heres what I do...I have the column names set as parameters (to make columns dynamic), and then I set the values of those parameters from codebehind (necessarily field names, I give user dropdowns to choose the field names)...and then set the columns according to what the user has chosen... hope this helps, if you think this is what you want and you need more help with setting up everything, let me know... thanks, bullpit ...Show All

  • xuyca System.Windows.Data Error 2 Cannot find governing FrameworkElement

    Hello, I'm having a problem with using DataBinding on custom classes. I keep getting the error "Cannot find governing FrameworkElement or FrameworkContentElement for target element..." The XAML looks something like this.. <TextBox Text="{ Binding Path=FieldA }"> <TextBox.Tag> <myns:CustomClass PropertyB="{ Binding Path=FieldB }" /> </TextBox.Tag> </TextBox> The binding shown in green is working fine, (suggesting the DataContext is being found) but the binding in red is not, and i get the error above sent to the console. Please note CustomClass is a DependencyObject (but not a frameworkelement or usercontrol - just an object) and PropertyB is implemented as a Depen ...Show All

  • mcp76 Dependency Property's

    this is a follow up post about my problems with custom controls. essentially i am creating a graph custom control, however the graph must display any number of lines, consequently i cannot say (in generic.xaml) <Canvas> <Polyline.............../> <Polyline.............../> <Polyline.............../> ................... </Canvas> because i never know how many lines to create. this means that i need to change my CS code to allow for any number of lines. this will mean i have a situation whereby either the company who uses this software can say <lineChart......................> <linePoints................/> <linePoints................/> <linePoints................/> ....... ...Show All

  • Stoj Unable to install Visual Studio Team Suite 180 Days Trial

    I downloaded Visual Studio 2005 Team Suite 180 Days Trial, extracted it to d:\vsts\ (a folder on my local hard disk), tried to install it, and got the following error message: "Error 1311. Source File not found d:\vsts\vs\_16475_RTL_x86_enu_VS_Tools_for_Office.cab. Verify that the file exists and that you can access it." even though the file is certainly existed. Any help would be very appreciated. Thanks, Sang ...Show All

  • maxal Construct contextmenu for each item during databinding

    Hi there, I'm trying hard to find out the event that will be raised when data binding. Example, I'm binding to a DataTable in a Dataset, and displaying the result using ListView. All I wanted to do is to construct a custom ContextMenu for each item in the ListView during data binding. The context menu content will vary from item to item (atleast the enabled property will change). At the moment I got the ContextMenu element for the ListView in XAML using ListView.ContextMenu element. Its showing the ContextMenu on each line item as expected, but since its referencing to a single context menu, any property change in MenuItem is reflected on each row. Any thoughts Saravana http://www.digitaldeposit.net/blog ...Show All

  • NoEgo XPS document sequence and Application.GetContent/Resource/RemoteStream

    How to load XPS document sequence from application resources I use this: Stream stream = ApplicationStreamHelper .GetStream(source); if (stream != null ) { Package package = Package .Open(stream); XpsDocument xps = new XpsDocument (package ); document = xps.GetFixedDocumentSequence(); } public static class ApplicationStreamHelper { public static Stream GetStream( Uri uri) { if (uri == null ) throw new ArgumentNullException ( "uri" ); StreamResourceInfo streamInfo = null ; if (uri.Authority.StartsWith( "siteoforigin:" )) { streamInfo = Application .GetRemoteStream(uri); } else { streamInfo = Application .GetCont ...Show All

  • David N.4117 Round Buttons?

    I was wondering if anyone had some sample code to create round buttons, or if no code, thoughts on how to go about creating them It would be nice if the bounds of the button were also round, as opposed to a round images contained in a square button. thanks in advance jzf Just like Lester is saying, it's just a matter of replacing the template of a button. Like this VERY simple example, that for instance doesn't give feedback on MouseOver or Click events: (But the Click event is only fired when you click on the round area though, WPF does this automatically) And the round ellipse scales with the button size since it's inside a viewbox. < Window x:Class = " Test.Window1 " xmlns = & ...Show All

  • ian_3000gt 3D Reflection...

    Making a good 3d plane reflection is fairly easy. Howerver, it takes a "lot" of manual work. Take the following example... <GeometryModel3D Geometry="{StaticResource CubeMesh}"> <GeometryModel3D.Transform> <Transform3DGroup> <TranslateTransform3D OffsetY="1" /> </Transform3DGroup> </GeometryModel3D.Transform> <GeometryModel3D.Material> <DiffuseMaterial Brush="Red"> </GeometryModel3D.Material> </GeometryModel3D> <GeometryModel3D Geometry="{StaticResource CubeMesh}"> <GeometryModel3D.Transform> <Transform3DGroup> <TranslateTransform3D OffsetY="1" /> <ScaleTransform3D Scale ...Show All

  • vicarious Right Click Event on Email Item

    Right now i am trying to edit the right click menu of outlook 2003 using VSTO. also i want its events so that i can do some necessary work becore the right click menu. Any help regarding this would be appreciated. Can you be more specific about which mean you mean Do you mean the context menu in the main Outlook window when you right-click on a mail item in the view, or do you mean in the Inpsector window when the e-mail is open and you right-click in the body For the menu in the main Outlook window when clicking on an item, there is no way to do this in Outlook 2003. This functionality was added to Outlook 2007 however. With the body, you can add items to the context menu only if the user is using WordMail for their e-mail e ...Show All

  • Tridex The name <variablename>' does not exist in the current context

    I keep randonly getting the above when I am debugging C# code. One example is below protected override void OnRowPrePaint( DataGridViewRowPrePaintEventArgs e) { int newheight; int tstart,dstart; newheight = calculate_row_height(e.Graphics, e.RowIndex, Columns[ "Description" ].Width - 1, out tstart, out dstart); base .OnRowPrePaint(e); } The debugger gives the message on variable newheight. Why Thanks Steve ...Show All

  • puhonien33 Wierd Switch Expression Behaviour

    Hi, What am I doing wrong I'm trying to calulate a percentage using the following expression. =IIF(y > 0, x/y, 0 ) When y = 0 the cell report #Error If I replace the code with the following it works as expected ( not desired behavior, but evaluation appears to be working ) =IIF(y>0, 1, 0) I can work around this, but this should work Try =IIF(y>=1, x/y, 0) Is this really a bug Unfortunately y may be a value between 0 and 1; Also that didn't seem to work.  The problem appears to be that even if the condition is false it still attempts to evaluate the expression which causes an error. ...Show All

  • Chadrico sorry for those repeated messages

    The web told me that server had an error so i tried to publish again. I don't know why but i can not delete them. Sorry for any inconvenience. I think you last post made it to the forum. Thx. ...Show All

697071727374757677787980818283848586

©2008 Software Development Network

powered by phorum