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

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

thkeeler

Member List

San-Chan
Demid
Dameon51
outtalimitz
Manoj K Srivastava
WoodyIS
Venugopal Talapallikotturi
Cosmin Paun
DORANGE
William Kirchhoff
swo1967
GunaChinna
uanmi
Andeezle
RvD
JeffSlapp
MartijnB
rabram
lololon
Cabreo
Only Title

thkeeler's Q&A profile

  • Visual C# Console commands

    hi ppl.. i have a prgram that needs to be able to emulate console (cmd) commands... i want to execute cmd commands but do not show cmd... for example... run the command dir.. and retreive the result without using the Run() method. .. cause it shows the cmd,, is there any way to do this thx mig16 I have tested it now, but i don't receive the full output iether. Check this example at GotDotNet: netstat in C# . ...Show All

  • Visual Studio Team System TFS RTM Project portal problem

    Hi all, I'm not able to add existing web parts to my team portal, which is based on the MSF Agile template. I get an .NET Framework 2.0 eventing error... Has anyone had the same problem Regards, Bjorn Bjorn, I too am getting the same error. " An unexpected error has occurred. Web Parts Maintenance Page: If you have permission, you can use this page to temporarily disable Web Parts or remove personal settings. For more information, contact your site administrator. " Its funny the maintenance page does not allow addition of existing webparts. Also existing parts, when d ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Device.VertexDeclaration returns always null (.Net 2.0)

    The VertexDeclaration property of the Device seems to return always null. Version 2.0.900.0 (from Reflector) public unsafe VertexDeclaration get_VertexDeclaration() {       Exception exception2 = null ;       DirectXException exception1 = null ;       IDirect3DVertexDeclaration9* declarationPtr1 = null ;       int num1 = **((( int *) this .pComPtr))[0x160]( this .pComPtr, &declarationPtr1);       if (num1 < 0)       {            ...Show All

  • SQL Server SP with SSIS and 2005 database

    I have issue with SSIS performance, when SSIS is used with SQL server 2005 database engine as backend, it takes long to execute procedure but when SSIS is used with SQL server 2000 database as backend, procedure execute in expected time frame. (No delays are faced.) Kindly suggest. Thanks Rohit Wason How are you executing the procedure When you say "procedure", do you mean a stored procedure What does it do Where is the bottleneck If the performance degredation is due to the differing database engine then why are you posting on a SSIS forum Why do you think this is a problem with SSIS ...Show All

  • Visual Studio Express Editions Can't Uninstall Necessary Programs! Help!

    Awhile ago, I had installed the Visual C++ 2005 Express Edition, and stopped using it for whatever reason. I must've uninstalled that awhile ago as well. When I try to uninstall any of the following programs from Add or Remove Programs, I get an error: Microsoft SQL Server 2005 Express Edition Microsoft SQL Server 2005 Tools Express Edition Microsoft SQL Native Client Microsoft .NET Framework 1.1 Microsoft .NET Framework 2.0 Beta 2 Microsoft MSDN Express Library 2005 Beta 2 - English The error screen looks like this: Windows Installer (Title) The feature you are trying to use is on a network resource that is ...Show All

  • Visual C# Typing in Visual Studio 2005 Text Editor is extremely slow

    Has anyone else noticed that typing in Visual Studio 2005 is extremely slow   Whey I type it seems that the screen is always 2 words behind where my hands are.  It makes it extremely frustrating to get anything done. I'm mainly referring to C# code.  It seems like Intellisense is going nuts trying to guess every word I'm going to type and never actually prints the characters to the screen. Has anyone else experienced this   Is there an option I can turn off to get my text editor back ! By the way, I have a very fast computer with Dual 3.0 GHz Zeons with 3GB memory and everything else that should make "typing" very fast. ...Show All

  • .NET Development Xmlschema compilation problem (.NET framework 1.1)

    Hi all, I am working on an application that needs to be able to read and lean on the XMLSchema information contained in the web service description(wsdl). After i got a wsdl from address : http://ws.cdyne.com/delayedstockquote/delayedstockquote.asmx wsdl , I attempt to get its schema and compile using XmlSchema object(iam using vs2003 with .net framework 1.1), but an error occured: "The 'http://www.w3.org/2001/XMLSchema:schema' element is not declared. An error occured at file:///c:\test.xsd(68,9 ) " Then I tried to open this schema by Xml Spy, the result shows that this schema is valid. I myselft think that it's ok ...Show All

  • Visual C# get Fibonacci sequence number base on user input

    hi all, in my application, i want to return the n-th number in a Fibonacci sequence to the interface by asking user input. e.g. user inputs 5, and click on a button, it returns the 5th number in , which is 3. please help. Here is one solution (maybe not optimal, but it works ): private int fibonacci(int userInput) { int sum=0, a=1, b=1; int i=2; if (userInput == 1) return 1; else { if (userInput == 2) return 1; else { while (i != userInput) { sum = a + b; a = b; b = sum; ++i; } r ...Show All

  • SQL Server Encrypted data size by original size, algorithm ?

    I want to know encrypted data's size for designing database field size. For example, cardnumber varchar(20) Encrypted by Triple_DES and PassPhrase, How match size does need to encrypted data store field. I think the size does not depend to PassPhrase char length. Regards, Yoshihiro Kawabata The simplest way is to just encrypt the largest piece of data that you will store using the encryption algorithm of your choice and take note of the size of the resulting blob. That will be the size of the field. There is also a formula that allows you to compute this, but it also includes the size of a header which might expand in future v ...Show All

  • Windows Forms locked property of visual basic v6.0 in visual basic.net

    Does anyone know how can I instruct a Combobox to NOT display the selection list I need to do this when my program is in some certain state... In visual basic v6.0 you were able to do this by setting the locked property of the control to false, but theres no locked property in visual basic.net, I found a page in which they say to  ...Show All

  • Software Development for Windows Vista Problem with Lab11 Exercise 2

    Hi! I'm a newbie and this is my first post! and here come's the question: I try to run the Lab11 Exercise 2 (Dynamic Update in Workflow). Workflow changes itself dynamicly, but code1 activity in Workflow2 never executes. If i graphical debug the workflow, in the workflow2 activity comes a validate message up that says "property Workflow 2 not set", but in the property toolbox you can see there is "DynamicUpdateInWorkflow.Workflow2" as Target set Any idea of how can i fix that Albin Hi Albin, We are aware of the behavior you are seeing in the debugger with the InvokeWorkflow activity having a v ...Show All

  • Visual Studio Why isn't there a "no filter" option in dexplore?

    Dexplore Express beta 2. For Visual C#/C++/WebDev (and probably SQL/J#/VB) Express. I can't seem to find the "no filter" option for Document Explorer. This means I must browse the indexes and contents using a filter. In VS 2003, you had the option of not having a filter so you could see all the topics in the help collection. However, for VS2005, there is no way to see all the topics. To workaround this, I have to use FAR to add my own filters, because the edit filters option seems to be missing too. The Beta 2 Visual Studio 2005 Express Editions shipped with an issue that prevented the .NET Framework API reference ...Show All

  • .NET Development howto let the user select a directory

    Hi, i am wondering,how can i let a user select a directory trough a dialog,and search that directory and subdirectories for images with an extension i want Also,how can i then change the filenames of those images like pic0001 0002 0003 etc etc and copy those to a directory thx Use the FolderBrowserDialog for the first question. Use the Directory.GetDirectories (passing SearchOption.AllDirectories) method to get the folders under that directory and then use Directory.GetFiles on each one of those folders to get all the files. You can then make use of the File.Copy method to copy those files to a new f ...Show All

  • Visual Studio Team System Is it possible to limit the scope of a Field?

    While working with multiple process definition templates we have noticed that all fields are visible accross all projects regardless of which template was used to create the project. For example: We would like to customize the Priority field in the Bug work item definition and change it from an Integer to a String. Original : < FIELD name = " Priority " refname = " Microsoft.VSTS.Common.Priority " type = " Integer " reportable = " dimension " > < HELPTEXT > Priority to the business </ HELPTEXT > < ALLOWEDVALUES > < LISTITEM value = " 1 " /> < LISTITEM value = " 2 " /> < LISTITEM va ...Show All

  • SQL Server Transactions in NS API (Found a way to do it)

    As the topic says I found a way to give notification services API the ability to do transactions. This is accomplished by using DTC transactions. Given that the API just boils down to some SQL call and SQL is DTC aware it will take advantage of the current transaction. Thanks Wayne Sepega ...Show All

©2008 Software Development Network