Software Development Network Logo
  • Visual C#
  • Visual FoxPro
  • Windows Live
  • Microsoft ISV
  • Smart Device
  • Game Technologies
  • Visual Basic
  • VS Team System
  • Visual C++
  • Visual Studio
  • Architecture
  • Windows Vista
  • .NET Development
  • VS Express Editions
  • SQL Server

Software Development Network >> Deano05's Q&A profile

Deano05

Member List

Fab5
Anonymice
Esther Fan MSFT
Natebone
B. Ariston Darmayuda
Rob G
Arier
wangx0
Terry Hardie
zc1984
Watson How
buckeye72
BryanM-NZ
Mike Driest
JesseP7
pmd2524
Raj74
Coolerbob
skylar119506
Clark Snowden
Only Title

Deano05's Q&A profile

  • .NET Development Advanced COM-Interop for mshtml in .NET 2.0 Beta

    Hello, I'm trying to use mshtml as a robust ui-less html->dom parser (like in Microsoft's walkall example). I'm trying to do it using C# and VS2005 beta, with the .NET Framework 2.0. The problem I'm having is in telling mshtml not to run any active content and not to download images. I've tried to define a IDispatch invoke handler, but it is bever being called! My code is attached bellow (comsupport is a file I found on the web which ...Show All

  • Visual Studio Tools for Office VSTO 2005 Outlook Add-In reply event not consistent

    I'm developing an Outlook Add-In with VSTO 2005 and I'm running into a problem with the Reply event on an inspector not always firing.  I'm using an active Inspectors collection and I'm registering the reply event in the constructor of the Inspector. I also tried registering the event on the Activate event to see if that would solve the problem but it didn't. There is no consistent way to repro the reply event not firing - it just happens r ...Show All

  • Microsoft ISV Community Center Forums Excel: Treeview handle events for dynamically added control

    How do I handle events for a TreeView control dynamically added to an Excel 2000 worksheet I am trying the following approach, but get a 'Type Mismatch' error because my wrapper class, clsTreeView, is expecting an MSComctlLib.TreeView; while the object is created from the MSComctlLib.TreeView class type Dim oOLE As OLEObject Set oOLE = Sheet1.OLEObjects.Add(ClassType:="MSComctlLib.TreeCtrl.2", _ Left:=250, Top:=500, Width:=132 ...Show All

  • Visual C# Saving A MDI Child Form From Its MDI Parent's Toolstrip

    I have searched the web and I cannot seem to find out how to call a public save function in an mdi child from its mdi parent’s toolstrip. I’m basically after the same functionality as you get in something like Word. You can have several documents open, but when you click on save from the toolstrip it only saves the active document. How do I get this to work   Either: a) create a save event on you ...Show All

  • Visual Basic Adding a new column to an opened database.

    Hello, I would like to know if it is possible to add a collumn to an already opened access data base using vb in the datagridview without changing the initial database. I am trying work out a functionality in my final year project which enables teachers to analyse student test scores without having prior knowledge of using Access. I am using vb.net to desing and code this enabler/tool. With my limited skill in vb programming I have managed ...Show All

  • Visual Studio Team System Any way to find all check-ins with policy failures?

    Is there any way to search for all check-ins where the programmer has overridden a check-in policy failure It's effectively impossible to manually trawl through the entire history! Also, how do you turn on emails for policy overrides (That is, according to the documentation it should be possible to get TFS to send you an email every time someone checks in with an overridden policy, but I can't find the documentation that tells you how to turn o ...Show All

  • Visual C++ difference between SDI and MDI

    Plz tell me the diff between SDI and MDI   Diff between Modal and Modeless Dialogs The full answer is available in MSDN , but in a nutshell SDI or a single document interface is a window that can only handle one document at a time per window. An example of an SDI is Notepad (you can only edit one text file per Notepad window. If you want to edit two files, you need two Notepad windows). An M ...Show All

  • Visual Basic Problem with using .net forms from vb6

    I have an wierd problem with the tab key in .net forms: If i create a standard form and then instantiate it in the usual way from a .net application then everything works perfectly.  However, if i create a com interop wrapper that instantiates the form on behalf of a vb6 client, then the tab key refuses to work. I have also discovered that this behaviour only occurs if the form is displayed non-modally (f.show()).  If it's shown as a d ...Show All

  • Windows Live Developer Forums Can you point me to an MSN Messenger forum (non-developer)?

    I have an MSN Messenger question that appears to be outside of the scope of this particular forum (non-development question).  However, I can't seem to find an MSN Msgr-specific, non-development forum.   Can anyone point me in the direction of a proper forum to post my question.  Any assistance would be appreciated.  THANKS! I have found the newsgroup microsoft.public.msn.messenger ...Show All

  • Visual Studio 2008 (Pre-release) Transitive aspects for a graph of objects

    Hello! Let's assume we have a graph of objects which are instances of various classes. All these instances hold references to other instances of the graph either via EntityRef<T> or via EntitySet<T> as generated by the new designer (I have not made any of the DLinq entity classes by hand) so it's hereby possible to navigate between all instances, perhaps traversing via intermediate instances of the graph. Let's assume we start ...Show All

  • Visual C++ problem with assignment

    Hi there, i have a question regarding overloading operators: for example i have one class Class1 and I want to assign one object of Class1 to another object of Class1: Class1 *object1 = new Class1(); now the problem is, that the second object is not defined. *object2 = *object1 is there a way how i can 'create' object2 within the operator=-method Many thanks in advance felix You could ju ...Show All

  • Windows Forms Modal Window in Another Thread

    I have a requirement to open a modal window in another thread which will overlay on top of a panel created in the main UI thread. The application gives an appearance of as though there is only one window to the user. We have an application framework where different pages plug-in like a tabbed dialog mode. One of the page which is actually auto generated code from some rules will open many successive modal windows. When a modal window is ope ...Show All

  • Smart Device Development Get Camera Data without showing on the screen?

    Hello... I want to write an application for a pda which uses the camera. I need the current camera data, i.e. video stream or only images. The problem is that I don't want to see the current video on the screen! Is this possible with the new Camera Capture API for Windows Mobile 5.0   Can I capture the video data without showing the video --Jacqueline. You can't use the SHCameraCapture API.  You'll ...Show All

  • Visual C# how can i get a substring in a string and then change its color?

    for example if I type /* in the textfield all preceding characters should change to color green and when I type */ the change should stop. You have two options. 1 - use a rich text box, and parse the text so that you change the color 2- write your own control derived from the textbox to do this. ...Show All

  • Visual Studio Team System check if a particular class implements interface IDisposable

    In my fxCop project, I am required to check if a particular class implements interface IDisposable I wrote this code but it 's not good if (node.BaseType.IsAssignableTo(SystemTypes.IDisposable)) { ... } Thanks for any assistance that you can provide. Regards In that code sample, you are checking to see if the base type implements IDisposable, instead try this: if (node.IsAssignableTo(Sys ...Show All

©2008 Software Development Network

powered by phorum