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

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

tcochran64

Member List

chuckcycles
baron5038
Ashok Kumar MVN
Darshak
Satya Priya
Compound_G
dovoto
HelenZHOU
Lion4ever
mansb2002
piaqt
Bill H123
Joakim Wingard
ibeanz
eligazit
tomeq10
arvestal
Joe Johnson
Looter
Jesse Arnold
Only Title

tcochran64's Q&A profile

  • SQL Server Cancelling Deployment

    I'm getting closer! I created a model and selected Deploy from the Build menu on the tool bar. I started getting info on the deployment process in the Deployment Progress window, but when it reached the "Processing Cube" part, it didn't make any more progress for about 20 minutes, so I selected "Cancel" from the Build menu. Then I tried deploying it again, and I got the message that the Movie db had changed since the last deployment and would I like to continue. I clicked Yes, but I only got the Command line in the Deployment Progress Window and no progress after an hour. Do I need to completely redo the project I' ...Show All

  • Visual C# Transform Word Doc in to xml?

    I searched in msdn abt how to Transfer word Documents into XML or XSL-FO From that I got this link Transforming Word Documents into the XSL-FO Format , here they given all the procedure how to do that.Its manual one. But i wanted these work to be done by program itself. Can u please help in this. So far i did something like Microsoft.Office.Interop.Word. Application word = new Microsoft.Office.Interop.Word. Application (); Microsoft.Office.Interop.Word. Document doc = new Microsoft.Office.Interop.Word. Document (); try { object filename = @"E:\Share\docgen\Word2003\TestResult\All_Classes.doc" ; obje ...Show All

  • Visual Studio project.ConfigurationManager.ActiveConfiguration.Properties is null

    Hi, I'm trying to access the properties from project.ConfigurationManager.ActiveConfiguration.Properties but it's currently returning null. I've created my own Package type by extending MSVSIP. Package and Project from ProjectNode. I'm using the September CTP and RC1 of Visual Studio 2005. Does anyone have any insight into this With regards to the properties, I'm trying to change this property: project.ConfigurationManager.Item( "Debug" , "Any CPU" ).Properties.Item( "StartProgram" ).Value and project.ConfigurationManager.Item( "Debug" , "Any CPU" ).Properties.Item( "StartArguments" ).Value (note that project.ConfigurationManager ...Show All

  • Visual Basic Yoda needs help sending Data to Hardware! ALL NERDS COME QUICK!!!

    I am trying to send ATAPI commands to a cdrom in VB.Net. While researching this it seems to me the VB is not the best at this. I am sure there is a way though. Can anyone steer me in the right direction I read something on calling the Windows API to do some hardware speaking, but it said that that is being Phased out with VB.Net. Is that true I am able to send these commands through another CDROM test program that we use. The program is a small program that tests cdrom drives. It was written by someone in my company from Korea. I cannot get in touch with him or get the source code. It has a small utility called ATAPI whi ...Show All

  • SQL Server How can I get or set a foreign key's 'on update cascade' or 'on insert cascade' by SQLDMO?

    Hello,everyone!   I have a problem with sqldmo's KEY object,please help me!   When creating a foreign key constraint with 'on update cascade ' or 'on delete no action ' by T-SQL,we can do like this:    ALTER TABLE [dbo].[myForeignTableName] with nocheck     ADD  CONSTRAINT [FK_mykeyname] FOREIGN KEY    ([myForeignColumn])    REFERENCES [dbo].[myPrimaryTableName]    ([myPrimaryKeyColumn])    on delete no action on update cascade But,how can I set or get ' on delete no action on update cascade ' by SQLDMO's KEY object Thank ...Show All

  • Visual C# How do I find the printable client width and height?

    I have the following code:     private void button1_Click(object sender, System.EventArgs e)     {       PrintDialog pd = new PrintDialog();       PrintDocument imageDoc = new  PrintDocument();       pd.Document = imageDoc ;       imageDoc.PrintPage += new PrintPageEventHandler(imageDoc_PrintPage);       pd.ShowDialog();     }     private void imageDoc_PrintPage(object sender, PrintPageEventArgs e)     {       using ...Show All

  • .NET Development SSL X509Store

    I have created a certificate with makecert.exe -sr LocalMachine -ss MY -a sha1 -n CN=test -sky exchange -pe cert.cer makecert.exe import the cert into the certification store. But i delete the cert in the certification store because i would add the cert to the store with my server app. Here is the code, all works fine but Server.AuthenticateAsServer(cert) don't work... Private cert As New X509Certificate2("C:\cert.cer") Dim stor As New X509Store(StoreName.My, StoreLocation.LocalMachine) stor.Open(OpenFlags.ReadWrite) stor.Add(cert) stor.Close() Server.AuthenticateAsServer(cert) ...Show All

  • Software Development for Windows Vista WebServiced published Workflows.

    Is there anyway to have multiple WebInput/Output activities where each Input/Output activity set will be accessed by a different user I have tried to implement correlation into the Workflow, but it does not seem to be supported for WebService workflows. Is this correct Correction, it does persist properly. Just doesn't work well when you forget to put back in the UnloadOnIdle tag. (D'OH!!!) ...Show All

  • Visual Studio 2008 (Pre-release) Could not find schema information for the element 'http://schemas.microsoft.com/.NetConfiguration/v2.0:system.serviceM

    using CTP bits i can rebuild the samples and all ok - building my own project i get the following error: "Could not find schema information for the element 'http://schemas.microsoft.com/.NetConfiguration/v2.0:system.serviceModel'. C:\Documents and Settings\jim\My Documents\Visual Studio 2005\Projects\msnsearchclient\MSNsearchIndigo\app.config 3 6 MSNsearchIndigo" all of this is using VS 2005 beta2. jim Hi Jim. Let's try something first: I often get this error when there's something wrong with my code, but the schema errors end up appearing first in the build window. When you have this, scroll through the entire li ...Show All

  • .NET Development How to Serialize a non Sertilizable object into Binary?

    Hi   ,   I have an object ObjXML of type XmlDocument (object may be of any non serializable class). I have to Serialize it into Binary. I know that XmlDocument does not implement ISerializeable.   That's why according to framework we cannot serialize it.  So is there anyway around to get this object (ObjXML) into Binary.   I will be   highly   obliged to your help.     Regards Muhammad Waqas Bashir The following uses a MemoryStream (just another way of doing it) [ Serializable ()] public class Custom ...Show All

  • SQL Server Package variables in case of an Exception

    Hi there, I may be blind, but I'm sure that I have seen a post about package variables 'ExceptionMessage' and 'ExceptionCode' or somehow which are only available when an Exception occurs. I cannot find it anywhere :( If there isn't any then the question is: Can I read out the message and the code of an occurring Exception e.g. from a Script Component/ Custom Task which is controlled by an error constraint Can someone help Fridtjof OMG, I've got it!!! You meant the Eventhandler of the package which is available at the Workbench!!! I tried to implement an EventHandler in C# in the Custom task. How stupid :( ...Show All

  • Visual C# How to find registered event handlers?

    Hi, I'm trying to determine if an object has any event handlers registered on it. The reason I need this, is to not let an object to register one single event twice. this .menu.BeforePopup += new CancelEventHandler(menu_BeforePopup); // OK this .menu.BeforePopup += new CancelEventHandler(menu_BeforePopup); // Don't let it happen twice   Any help would be great Hi Patrik, and what is here the "anEvent" Is it the event itself or the event handler I just can't call GetInvocationList() on any of events.. ...Show All

  • Smart Device Development .net CF v1.0 Development in VS2005

    Reading the required SDKS for developing in certain platforms, this page ( http://msdn2.microsoft.com/en-us/library/ms135100 ) states that VS2005 can compile for the compact framework 1.0 and 2.0. I know Smartphone 2003 has v1.0, I know vs2005 can develope for that, and that that application (written for the smartphone 2003) can likewise be executed on my Pocket PC 2002 device (with the CF 1.0 sp3 installed), but is there a way to develope specifically for PDA's (Including PocketPC 2002) using .Net CF v1.0 in VS 2005   Obviously the compact framework v1 is there in order to develope for smartphone 2003, but the desi ...Show All

  • Windows Forms Export/Import Data

    How do Export/import data from excel/word to SQL server 2000/or Access 2003 using VB.NET. HI Jebat, One way of transfering data from sql server to excel is to user the DTS. The following article explain it. http://support.microsoft.com/Default.aspx kbid=319951 Cheers, VJ ...Show All

  • .NET Development TCP Port monitoring in .Net

    Hi, Can anybody point me to articles/links describing best practices for monitoring a specific TCP port I'd like to alert the person running my C# .Net 1.1 windows app that another program is using a specific port (remote monitoring alert). Thanks for any help in this area. -Roy I have explained this earlier in a different post. Although it is hard to belive, a port can be in use by multiple applications. What matters is <Protocol, Source IP, Source Port, Dest IP, Dest Port> combination. Meaning that it is perfectly fine to use a local port like 3000 and same local IP address to connect to dif ...Show All

©2008 Software Development Network