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

Software Development Network >> J. Nail's Q&A profile

J. Nail

Member List

saju
Francis Tracey
Simmy7
karthik G
Michael McBryde
MarcoVsto
Jakein2006
robinjam
Uggywuggy
xird
macthefork
Arkette
Jacco Mintjes
simdoc
Ravikumar KPV
Sachini
Kennon2005
Paul Nystrom
Lawrence Parker
SgtDuty
Only Title

J. Nail's Q&A profile

  • Visual Studio Tools for Office How to display task pane ion Word 2007?

    Hoi all, I have two basic questions with regards to Custom Actions page for Word 2007. When I open word 2007 (not in VSTO debug mode), how can I open the task pane Which button/option do i need to pick for Word to display the Task Pane In Office 2003, I could go to Tools -> Shared Workspace and see the Task pane. How do I do the same in Word 2007 How do I deploy the custom task pane to all my users What is the recommended way Do I include all the runtime assemblies in my setup project My task pane uses a app config file which actually gets bundled in the setup.exe. The app config has some settings which the users can change. How can I get the user to tweak the settings in the app config file during installation of the task p ...Show All

  • Software Development for Windows Vista RecipePropertyHandler SDK sample - no index integration ?

    Hi all, After installing the latest Vista SDK and building the RecipePropertyHandler sample I have the following problem : The information in the sampe .recipe file will now show up in explorer - as extra preview fields and as property fields etc., but this information is not searchable by index, which I had assumed it to be. Is there something I must do in order to make the indexer pick up my .recipe file and index the defined properties I have added the file extension to the indexer from control panel, but it made no difference.... The propertyhandler dll is NOT locked by any processes (as I would have thought it would be), so I have the feeling that the indexing service never picks it up..... Thanx in advance Ole ...Show All

  • Visual Studio Express Editions What is the equivalent of the ProjectInstaller.cs class?

    I am working on a windows service and I am not sure what the equivalent of the ProjectInstaller.cs class is for the 2.0 framework. Is there any example code out there for creating a windows service using the 2.0 framework. Thanks I don't think the C# Express edition has the Windows Service option - another limitation of the express editions :-) you could create one from scratch using notepad and compiling it using the VC# compiler in the .NET Framework directory in Windows, compiler names csc.exe ...Show All

  • Software Development for Windows Vista Importing cards from an old backup (RC1)

    Is it any way to import cards from a backup made using RC1 It seems that the RC1 .crds files are not recognized by Card Space. Thank you Nope. There are breaking changes between RC1 and RTM. Sorry. :D g Garrett Serack | Program Manager |Federated Identity Team | Microsoft Corporation blog: http://blogs.msdn.com/garretts ...Show All

  • Visual Studio Team System Build Fails from Jan 01 2007. Versioning issue!! :-(

    Is it just me, or isn't the notion of versioning defaulted to by the AssemblyInfoTask http://www.gotdotnet.com/codegallery/releases/viewuploads.aspx id=93d23e13-c653-4815-9e79-16107919f93e  fundamentally flawed. Assuming major.max.build.revision. Everyone using this task, including Microsoft, seems to be using the strategy that the build number is specified to be DateString with a format of yymmdd, you get something like 061117 on the day of this post or the following if we accept the defaults: 1.0.061117.00 First of all, the actual number (since it gets converted to an integer) becomes 1.0.61117.0 when it gets compiled.  Most importantly, if this was next year (2007) at this time, you get assemblyinfo files u ...Show All

  • Visual Studio Express Editions casting arraylist to double[]

    I have a arraylist and the values in it are numbers, how do I cast it to a double[] arraylist arraynumbers = new arraylist(); arraynumbers.add(2.3); arraynumbers.add(7); For example double[] numbers = arraynumbers; is there a way if doing it ...Show All

  • Visual C# Newbie question - How to run a command line application using C#

    Hi, A couple of questions; 1) I need to open WordPad using C#. How do I go about doing this 2) I would like to populate the WordPad application with text. Is there a way of doing this using the command line or otherwise Thanks. Thanks for your responses. Just to complicate things; The reason why I need to use wordpad as a display and not, say, a textbox is because the data source (which is a file originally sourced from a mainframe) contains special characters. The application can handle these characters in a char array or a byte array. However, whenever the character is encountered in a string variable, the application seems to treat it as an escape character. The characters have a H ...Show All

  • SQL Server SSIS Logging

    Hi, I have migrated DTS package into SSIS. One of the ActiveX Script contains the following code. I have a question regarding changing this code. What is the equilaent object of reading LogFileName in SSIS I setup the Logging in SSIS, but didn't fidn any option using which i can refer to logfile as it is done in the following DTS code. It'll be a great help if somebody can assist me in this. Thanks in advance. Neetu Code: Function Main() Const ForReading = 1, ForWriting = 2, ForAppending = 8 dim fso dim pkg dim filename dim srcfile, logfile dim inchar set fso = CreateObject("Scripting.FileSystemObject") set pkg = DTSGlobalVariables.parent set logfile = fso.OpenTextFile(DTSGl ...Show All

  • .NET Development Determine Caller name

    Hi, is it possible via reflection to determine the calling class/form that called the present method This may help ... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=566842&SiteID=1 It doesn't use reflection but does access the debugger stack frame. ...Show All

  • Visual C# XML to jabber Server and how to recieve?

    Hello, I want to communicate with a Jabber Server. Therefore I have to send XML Files to the Server and I will get Answers from the Server also in XML. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Net; using System.Net.Sockets; using System.Xml; using System.IO; namespace OwnJabber { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { TcpClient client = new TcpClient(); client.Connect("jabber.org", 5 ...Show All

  • SQL Server server timeout

    In SQL server management studio: When doing ex count(*) for a big table or create index or like, I get timeout error. The timeout setting = 0 Even timeout = 888888 gives timeout Does not the query execution timeout parameter work Or are there other parameters needed to be ajusted Could you apply SQL Server 2005 Service Pack 1 Paul A. Mestemaker II Program Manager Microsoft SQL Server Manageability http://blogs.msdn.com/sqlrem/ ...Show All

  • SQL Server Full-text Index Question

    Hello all, I just created a new Full-text index on a column, and I set Change Tracking to Auto. When I do this, do I still need to have an Incremental Population schedule, or does SQL Server handle the population in the background on a continuous basis when Change Tracking is set to Auto Thanks for your help, Jason I'm using SQL Server 2005 Management Studio to do everything; although, the database server that I'm doing the work against is SQL Server 2000 SP4. Jason ...Show All

  • Visual Basic Creating an Email Client

    How would I go about creating a MDI email client with Visual Studio 2005 using Visual Basic GriffinSmith, Please take a look at this following link that shows an article titled Building a .NET E-Mail Application and hope that can help you :-) http://www.15seconds.com/issue/021220.htm ...Show All

  • SharePoint Products and Technologies V3 namespace is not recognized when programatically adding web part?

    Problem: Adding custom web parts programmatically to site in WSS 3.0. The same exception occurs when tried to add the custom web part through the onet.xml, i.e. site definition. Microsoft.SharePoint.WebPartPages.WebPartPageUserException was unhandled Message="Cannot recognize the XML namespace of this Web Part." Source="Microsoft.SharePoint" StackTrace: at Microsoft.SharePoint.WebPartPages.WebPartImporter..ctor(SPWebPartManager manager, XmlReader reader, Uri webPartPageUri, SPWeb spWeb) at Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, Uri webPartPageUri, SPWeb spWeb) at Microsoft.SharePoint.WebPartPages.WebPartImporter.Imp ...Show All

  • Visual Studio 2008 (Pre-release) WPF presentation for managers

    Hello to everybody, I would like to ask you if you know where I can find a power point presentation of Windows Presentation Foundation technology dedicated to business manger (not technical) thanks in advance this is what you might be wanting - spread the word http://wpf.netfx3.com/content/Spreadtheword.aspx ...Show All

©2008 Software Development Network