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

Software Development Network >> Visual Studio

Visual Studio

New Question

CCF Download missing on MSDN Subscriber downloads
WCF & AzMan (Authorization Manager).
Can't change <RootNamespace> property in csproj file please help
AJAX-like Data update in Loose XAML
how to bind enumeration to radiobuttons
Separate buttons fire same event - HELP ME PLEASE
EffectiveValueEntry[] collection leaks
MRefBuilder Index Out of Range Error when documenting internals
What is the meaning of double "?"
Usename/Password sample, how can I set the username and password?

Top Answerers

KoryS
Lennie Oxyer
David Ghikas
esamsalah
DmitryMS
Ossie Bucko
Preston M. Price
adrshen
MaggieChan
monrealis
sitemap
Only Title

Answer Questions

  • StriderIRL History for bookmarks in MS Word

    Hi, As I can't find solution to my problem, I ask you here. Let me explain the context : I have a Web Service, who acces a XML file. A MS Word Template displays a Form by clicking on a button (created by myself). This Form lists datas from the Web Service, and updates the template with a bookmark, having a right-click event who displays a menu. This menu allows to update the bookmark's text with another data from the Form. My problem is that I want to keep history of these changes in the bookmark, but I haven't found how. Any suggestions ps : I'm a french guy, and I'm not sure that my english is quite good. so don't hesitate asking me questions :-P Would it work to use hidden smart ...Show All

  • liujj_xujj Access Controls in Word (VSTO 2005)

    Hi, I would like to access at a later state my controls (textboxes and a dateTimePicker), which I have previously generated dynamically. For an unknown reason, I can't access the Item property in the ControlCollection class ! I have also tried to pass through the GetEnumerator() method like this: System.Collections.IEnumerator en = Controls.GetEnumerator(); while (en.MoveNext()) {en.Current} But when I have the "en.Current" object, I don't know how to access the property of the control. Can anybody help me out Thanks a lot! Claudia I figuered out by myself how to make it work! I know, I have seen already some examples doing exactly what I have described in the ...Show All

  • Manuk Can't Remove VSTO project reference in VBA

    Hi, I have created a an Excel 2003 VSTO action pane project. The actionpane works internally and accesses webservices within the domain. The user can use the task pane to access secure data and manage non-excel calculations utilizing the networks resources.. Here is the problem. This works great internally, but if a user wants to email this spreadsheet to a client/customer that does not have VSTO installed VBA code does not work correctly. The intent will be to use VSTO to "prepare" the spreadsheet, then send the spreadsheet to the cutomer. VSTO itself will not work when the Excel document is received by the customer...which is fine, however the non-VSTO vba code will not work because of the missing VSTO reference. The use ...Show All

  • trillian74 XAML Namespace Mapping

    Hello *, I already read the wpf sdk, but there are still a few questions left... I wondered what is behind the xml Namespace Mappings xmlns= http://schemas.microsoft.com/winfx/2006/xaml/presentation xmlns:x=” http://schemas.microsoft.com/winfx/2006/xaml in the root tag of a xaml page. In the SDK: "Within the namespace declarations in the root tag of many Extensible Application Markup Language (XAML) files, you will see that there are two xmlns declarations. The first declaration maps the overall Windows Presentation Foundation namespace as the default: xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " The second declaration maps a separate Extensible Application Markup Langu ...Show All

  • Zath Breakpoint will not currently be hit. No symbols loaded for this document.

    I have been 'developing' with Visual Studio 2005 for about 3 weeks now - primarily .NET class libraries developed with VB. I am coming from VB6, although I did a lot of development with Visual C++ several years ago, so I am still trying to come to terms with the debugger. I have read many threads posted by people who are having a problem with breakpoints, specifically with the message in the subject line above. There have been many suggestions on how to fix this problem. Sometimes these suggestions work, sometimes they do not. Most of the suggestions involve deleting DLL and PDB files and rebuilding, or restarting Visual Studio. None of them suggest any problem with something the developer has done or any problem with the configuration of ...Show All

  • Wally9633 Word's MACROBUTTON Field Invoking VSTO Code?

    Hi, Is there a way to attach a VSTO handler to a MACROBUTTON field in Word, so that when the user double-clicks the macro field, I'd have my code in the customization assembly executed I'd hate to provide VBA macros in the document, beside the customization, because it entails macro security issues (which are assumed to be already solved in the VSTO solution) and also I need a connection to data inside my VSTO solution. Thanks! Hi Cindy, You are as helpful as always. Indeed I have overlooked the possibility to insert Windows Forms controls into the document. Probably it's because I've thrown that idea away long ago when the controls were ActiveX and required VBA code to be connected to them. Do I unders ...Show All

  • azzyford Generating shadows in WPF web-based apps

    Hi there, I've tried to use the DropShadowBitmapEffect to drop a shadow of UI element in my WPF web-based application. But I have the following error: ... Cannot create instance of 'DropShadowBitmapEffect' defined in assembly '...' due to security exception. ... Request for the permission of type 'System.Security.Permissions.UIPermission' failed. Is there another way to generate shadows of UI element in WPF web-based apps Regards, Eugene Yes, BitmapEffects don't work in web-based applications because of the security restrictions. You can try to create your own "shadow" - put the same shape under the object filled with a semitransparent gray brush and translated a couple of pixels. The onl ...Show All

  • redneon Bug: TabItem.MouseDown doesn't fire in June CTP

    It seems that TabItem.MouseDown doesn't fire anymore (Worked in May CTP) Here is how to reproduce: public Window4() { InitializeComponent(); } protected override void OnInitialized(EventArgs e) { base.OnInitialized(e); TabControl tabControl = new TabControl(); TabItem tabItem1 = new TabItem(); tabItem1.Header = "Tab 1"; tabControl.Items.Add(tabItem1); TabItem tabItem2 = new TabItem(); tabItem2.Header = "Tab 2"; tabItem2.MouseDown += new MouseButtonEventHandler(tabItem2_MouseDown); tabControl.Items.Add(tabItem2); this.Content = tabControl; } private void tabItem2_MouseDown(object sender, MouseButtonEventArgs e) { MessageBox.Show("Click"); } (Note: PreviewMouseDown works) ...Show All

  • Jayyde draw a graph with J#

    Hello I want to draw a temperature graph on aWindow form with J# but I don`t know how can I draw something with J# on a Window Form. So could you help me please. Thanks Mayer Thomas Try JFreeChart.NET. https://sourceforge.net/project/showfiles.php group_id=151482&package_id=207833 It can make various charts and the example codes for WinForms are included. Hi Thomas, Please give us more info about your project. private void button1_Click(Object sender, System.EventArgs e) { // Creates a new dialog called "Form2.jsl" Form2 newDialog = new Form2(); // Waits for the second dialog to close. newDialog.ShowDialog(); // Mov ...Show All

  • RajivB Dynamically Add A New Grid On a XAML Defined Grid Location

    Hi, I have several Grids on my page. One of them is a 3 x 3 cell Grid named "MyGrid" defined via XAML. How can I create a new grid programmitally in cell (2, 2) in C# I have only tried Grid.SetColumn and Grid.SetRow but seems not applicable for my scenario. Something like this should work Grid g =new Grid(); Grid.SetColumn(g,2); Grid.SetRow(g,2); MyGrid.Children.Add(g) Thanks :) ...Show All

  • X-Tatic WPF UI Sample

    i am looking for some pictures/video demos to show my boss how good a UI can look using WPF. anybody got any links. our app is not going to do mind boggling 3d stuff. ideally id like an example of a nice clean web style UI to show him. if anybody knows a resource i can show without him having to install .net3.0 please let me know Well, Lee ( http://thewpfblog.com/ p=76 ) recently blogged about the new version of Yahoo messenger that he and the company he works at is working on. a video of the software is available at http://messenger.yahoo.com/vista /Simon Which threads/questions are you referring to I was wondering if there is a ...Show All

  • John.Doe Trapping Ascii keypress events.

    Hi, I want to handle Ascii key press events in my .Net 2003 plug in. I am able to trap arrow key press events but could not trap the same for ascii keys. There is only one linechange event in text editor, but what if one insert data in the same line.This will not raise any event. Is there any other way to do this. Kindly help me out please. Thanks and regards, Ruhina Parveen. Hi jng, I am able to subclass the SaveAs dialog and now i am able to get the file name data field . Now my problem is its only giving me name not the full path. Is there any means so that i can have the full path. Kindly reply. Regards, Ruhina. Hi Jon, I read the article.You suggest to subc ...Show All

  • azcoyote extension name DB causes error

    i have an ms access database file "filename.mdb". whenever i change the extension name to DB, and try to load it in the ms access, i receive error. it seems that access defends on extension name somehow in order to identify the database why is this done this way no matter the version of my database or office application is, the problems persists. please give me reasonable information on why is it designed this way. extension names should not be the basis of identifyng the file at this high tech era. using any other string as extension name is ok. but if i use DB as extension name (filename.db), thats where problem comes in. its a valid access dabase file! how come Hi Rad I'm afraid this isn't the correct venue to ask question ...Show All

  • Clayton DuVall Complaints about Visual Sourcesafe outdated?

    Recently, a friend referred me to the article: Visual SourceSafe, Unsafe at any speed So I tried out some of the things the author mentioned, but they appear to be fixed. Is the article outdated I was under the impression that existing problems with Visual sourcesafe were: 1. Data corruption. 2. Lack of decent branching. 3. Lack of atomic commits. What version of VSS are you using if you are using VSS 2005 then probably the article is outdated. All the references in the article refer back to 1999 and the article was last revised back in 2003. VSS 2005 is the newest version which is improved over the VSS 6 versions. VSS 2005 shipped last year, so the author probably hasn't used VSS 2005 ...Show All

  • TI66 Passing information/data between two xaml using CAB

    Can anyone please tell how to pass data betwwen two xamls (two workspaces) using Composite UI Application Block for e.g i have treeview in two xaml (i create two workspaces) and i need to drag-drop a node from one workspace to another Thanks I'm not very familiar with the CAB model, but is there a reason you cannot use the property bag (Application.Properties) to pass data around pages ...Show All

242526272829303132333435363738394041

©2008 Software Development Network

powered by phorum