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

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

PaulVSTO

Member List

prestorm
Inglewood_jack
Fei-tian
N B
ashmag
Yonglun Li
Aleniko29139
hye_heena
Timothy Carroll
jjillinoisgov
Christina Tabet
Hector de la Rosa M.
thulick
saeidX
Annihil8
curiousss
furmangg
a_martinez
TA123
Amarfi Rodriguez
Only Title

PaulVSTO's Q&A profile

  • Visual Studio Tools for Office the differents between Interop and Tools?

    Hi. wats the different between Microsoft.Office.Interop.word and Microsoft.Office.Tools.word which one is better Thanks Interop is the object model provided by the (Primary) Interop Assembly - the "translator" between an Office application's COM object model and .NET Framework managed code. What this provides can be used in a Shared Add-in, a Windows Form, a Console Application... Anything. Tools.Word are constructs provided by the VSTO tool that extend what Interop provides. It makes it easier to work with some aspects of the object model; for example: - you can write Bookmark.Text = "abc" and the bookmark will be around the text, instead of using Bookmark.Range.Text and needing to recrea ...Show All

  • Visual Studio Tools for Office Smart tag development not part of the vsto.

    Hello, I would like to develop a smart tag project which will deploy to all the office application as : word, excel and outlook, not just part of a specific word development. In version 1.1 smart tag were register in the registry and all the office document word, xl and outlook identify the smart tag automatically and behave as expected. Now when I develop a smart tag it must be part of word or excel application and its not what we need, Can you please solve this issue and send us a link or an example how to develop a smart tag and catch all the office documents bye regards Yaron karni. www.attunity.com - InFocus - Workplace application yaronkarni@attunity.com Hi, Is the deployment of smart tag rem ...Show All

  • Visual Studio Express Editions Slow screen redraw

    I am in inexperienced programmer who has an application that displays many (50-60) controls on a form. The application is a production planning system, that requires many controls displayed on screen (1 for each job qued on individual machines) Whenever the form is re-draw, it is painfully slow, I have set the doublebuffer ControlStyles etc, but are unable to fix the issue. This issue is running on a P4 2.8GHZ / 500MB PC. Can anyone assist I have attached an example of my problem (not my actual application, but the samle gives the same issue). The sample simply displays many controls onto a form. When you force a redraw ie ALT-TAB to another app and back again, the screen redraws very slowly. Aaron Private Sub Form ...Show All

  • Windows Live Developer Forums Pushpins in V4

    Pushpin script working in version 3.x is no longer working in V4 when in 3d mode (works fine in 2d)...quite a few of the parameters in the failing pushin are null and the javascript error is complaining about a problem with 'length' A little debugging revealed an interesting bug--the title field can't be "null", but can be an empty string. In other words, this works: map.AddPushpin(new VEPushpin('LayPP:13',new VELatLong(30.557437,-84.221834),' ','13',null,null,null,null)); I'll let the team know. ...Show All

  • Visual Studio 2008 (Pre-release) CreateBufferedCopy method and security in custom http binding

    I used a binding extention assembly in a custom http binding. In this assembly i copy the request message with CreateBufferedCopy method of Message object. After that, when i make a request with the copied message, i received this message: An error occurred when verifying security for the message When i used a Anonymous authentification, i can make the request without errors... Here my client configuration: ... < binding name = " binaire " > < security requireSecurityContextCancellation = " true " > </ security > < udpCommunication /> < binaryMessageEncoding /> < httpTransport maxReceivedMessageSize = " 1024000 " maxBufferSize = & ...Show All

  • Windows Live Developer Forums Map.getAddressFromClickedLocationOnMap()???

    Hi, Is there a method like the above I can get the latitude/longitude, but it would be nice to get the address somehow. Thanks, se I like it when i can answer several different questions with the same answer.... What your after is reverse geocoding, pass in a lat and long and get the address. VE doesn't support it currently, it would be really nice if it did. You can use the MapPoint web service to do it. As it is the same mapping data the results are really good. The only trick is as part of that service you have to pass in the correct region or else you will get something very basic as the default is Nth America. You can sign up for free account and test it out but be aware they curren ...Show All

  • Visual C++ CFileDialog : save button change to open

    Hi My class inherited from CFileDialog . When I open the dialog at Save mode and I select any item the button of the ‘Save’ become to ‘Open’ It’s reproduce on Win XP only . Does anyone know how to fix this issue Please have a look at the following articles. It will help you http://support.microsoft.com/default.aspx/kb/195034 http://www.codeproject.com/dialog/xfiledialog.asp ...Show All

  • Visual C++ How do I get a VC8 DLL to work with a VC7 application?

    How do I get a VC8 DLL to work with a VC7 application 'App.exe': Loaded 'T:\Debug\Module1.dll', Symbols loaded. 'App.exe': Loaded 'T:\Debug\Module2.dll', No symbols loaded. LDR: LdrpWalkImportDescriptor() failed to probe t:\Debug\Modlue2.dll for its manifest, ntstatus 0xc0150002 Debugger:: An unhandled non-continuable exception was thrown during process load I read about embedding manifests, toying with the /ALLOWISOLATION:NO, etc. Can someone tell me if and how it can be done Thanks ...Show All

  • SQL Server server groups

    is there a way to enumerate through existing server groups Im trying to create children server groups. Hi Allen, You'll need to use a recursive function for this as a group can have a sub-group, and those groups may have sub-groups etc. (not to mention servers at any level) So, say you wanted to populate a treeview with all servers/groups registered on the machine: private void PopulateServerListRCR(Microsoft.SqlServer.Management.Smo.RegisteredServers.ServerGroupCollection Grps, TreeNode ParentNode) { TreeNode node; TreeNode SrvNode; for (int i = 0; i < Grps.Count; i++) { node = new TreeNode(); node.Name = Grps .Name; node.Text = Grps .Name; if (ParentNode != null) { Pare ...Show All

  • Visual Basic Constants and the usage of them

    Hi there I'm trying to solve a simple task. I nead to create a library of constants that I will be using in all my Visual Basic 2005 projects. This constants wil contain all my default return values etc. etc. Her's one example of the usage: Select case MyObject.SomeFunction() CASE LEVEL_Benign ' Everything is OK CASE LEVEL_Cancel ' Nead to execute something for Cancel CASE LEVEL_Fatal ' Something terrible has happend! Shot down the application So, How do I create this constant library and how do I use them in my projects Regards, Ole Hi there Well, Its allmost what I ask for, I guess this is something that takes memory space. It looks to mee tha ...Show All

  • Visual Studio 2008 (Pre-release) Wotking through https

    At first, sorry for my English. We created service using WCF, which hosted on asp.net. When I connect to service through http, I have not any problems. When I connect through https it throws an exception with message: "There was no endpoint listening at https://www.domainname.com/services/Services.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details". Inner exception message: "The remote server returned an error: (404) Not Found" Proxy class generates with not problems. Service configuration: <service name="Services" behaviorConfiguration="Behavior_IServices"> <endpoint address= ...Show All

  • Windows Forms Windows Forms Role Authorization Framework

    Hi, I want to include role based authorization into my Windows Forms (.net2 C#) app and was wondering if anyone could point me towards a decent framework to achieve this. What I'm really after is a framework that will enable/disable/make invisible controls based on a users role without having to inject code all over the place. I guess the kind of thing I'm imagining is an XML file that sits behind each form and based on the contents of the xml file will enable/disable controls. More specifically probably a base class that all forms inherit from that performs the logic to manage the interface controls. Does anyone have any advice and/or links on an efficient way of doing this (or a much better way of doing ths). I'm sure something ...Show All

  • Software Development for Windows Vista Debug rules?

    Actually I would love to know how you can debug the rules. Can you see which rules are pending and which rules are fired Can you set break points on the condition or action part in the CodeDom You can use Tracing and Tracking to debug rules. You cannot set breakpoints on the actions / conditions in WF V1, but you can use System.Diagnostics tracing and WF Tracking to get better visibility into rules execution. Moustafa has a nice write up on his blog about this - http://blogs.msdn.com/moustafa/archive/2006/08/05/689776.aspx . Scott Allen's book on WF also has a chapter on rules that talks about tracing and tracking. ...Show All

  • Visual Studio 2008 (Pre-release) DLINQ & Remoting; LINQ over Active Directory

    1. Does DLINQ supports remoting What will happen if I'll pass DLINQ entity out of application domain via remoting 2. I'm interested in using of LINQ to perform queries over active directory database. Any suggestion Hi Jonathan, I have vista ultimate and tried installing DSML.When i tried to configure DSML services it says "Can't connect to IIS, please check to make sure IIS is installed".I checked for IIS and have also set IIS 6.0 compatibility. Any suggestions .Thanks for your help in advance. Regards Raj ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Drag and Drop

    Hi I just downloaded XNA the other day. It looks pretty straight forward. However I saw a screenshot from Gamespot that shows XNA having something like a drag and drop IDE. Is that part of XNA because I cant find it Are there any tools available that can help amnage the assets like Visual3d.NET Thanks. Maybe you're looking for Torque X from GarageGames, a partner of Microsoft XNA It's in open beta now, and has been featured in videos with a drag and drop interface. ...Show All

©2008 Software Development Network